This thread has been locked.
If you have a related question, please click the "Ask a related question" button in the top right corner. The newly created question will be automatically linked to this question.
Hi Team,
Is there a way to add the Build > Release option to the SDK examples? Every SDK example I have checked, even empty, only has an option for debug. If none of the examples have the option is there a recommended way to start a new project?
SDK version 1.10.01.05
Thanks!
Hi Jack,
Currently the examples only have the Debug Configuration, but we are working on creating a Release configuration. The main difference in the binary output would be the level of optimization used the optimization level can be changed in project properties under the Build -> Arm Compiler -> Optimization. Hovering over the drop down will give an explanation of the different optimization levels.
The recommended way to start a new project would be to import the empty project or select an example that best fits your application as a starting point.
Regards,
Luke
Hi Luke,
I'm having a similar issue - trying to build the software as a "Release" build but the examples only have "Debug" option. If I flash it with the Debug build, the software doesn't run without the XDS110 debug probe connected. I tried changing the optimization level to 2 like in your screenshot but I'm still having the same issue.
Hi Randy,
Do you have any software breakpoints, like __BKPT(); ?
I would recommend programming the gpio_toggle_output example that is in driverlib. Then you can disconnect the board and apply power, you should see the LEDs blink which shows that the application code is running.
Regards,
Luke
The GPIO toggle output example only has a debug configuration, which doesn't work without the debugger connected. I don't have any breakpoints.