- Notifications
You must be signed in to change notification settings - Fork1k
How to debug
Below, some ways to debug:
- Arduino IDE 2 (Supported and recommended way)
- Eclipse and Sloeber
- PlatformIO
- Visual Studio and VisualGDB
- Visual Studio Code and Arduino extension
- Command line GDB
Warning
Only the Arduino IDE 2 is officially supported.
Note
Requires aST-Link/V2 orST-Link/V3 device connected to the PC over USB and to the board via the SWD interface.
If not already done,Getting-Started#Install-Arduino.cc-IDE
Configure the IDE to the desired board. Here theNucleo L476RG which already includes a ST-Link.
SeeGetting-Started#configuring-ide
Open the Blink sketch from the "File> Examples > 01.Basics > Blink".
Select the "Optimize for debugging" in the "Sketch" menu:
- Click the upload button
SeeGetting-Started#upload-method to change the upload method.
- Click the start debugging button:
Tip
Refer to official documentation to see howUsing the Debugger.
If you do not have any Eclipse package installed
Download Eclipse installer fromEclipse website , chooseEclipse IDE for C/C++ Developers and follow the installer instructions .If you already have an Eclipse packages (Java, Java EE, …) on your system
You can install the CDT (C/C++ Development Tooling ) plugin as follow :
- Launch"Eclipse > Help > Install New Software".
- In the“Work with” section, choose: Oxygen -http://download.eclipse.org/releases/oxygen (depending on your Eclipse packages version).
- In the“Name” box, expand“Programming Language” and choose“C/C+ Development Tools > Next > Finish”.
1.1.1.Install OpenOCD from the GNU MCU Eclipse plug-ins
The GNU MCU Eclipse plug-ins provide multiple tools based on the GNU toolchains to ease project development. To use Eclipse debugging features, it is necessary to download OpenOCD, an open source software that provides debugging and in-system programming for embedded device.
Launch Eclipse, go to“Help > Eclipse Marketplace” and search for the"GNU MCU plug-in".
In the tree view, expand“GNU MCU Eclipse {version}” and uncheck all items. In previous versions, you had to choose the OpenOCD entry. Since there is no such entry, you cannot select it. OpenOCD will automatically be installed. Confirm and follow the recommended instructions. Then restart Eclipse.
To finish the OpenOCD plug-in configuration, and for a simpler integration, install OpenOCD binaries by following the“How to install the OpenOCD binaries” tutorial. This Guide will tell you to extract the openocd binaries to a specific path (Windows).
From the Eclipse main tab, go to“Help > Eclipse Marketplace” and search forSloeber.
Download the"Sloeber plugin" , follow the recommended instructions and restart Eclipse.
By now, the main tab should look like the following:
Open“Arduino > Preferences”.
In the tree view that pops up, go to“Arduino > Third party index url’s” and add the STM32 support package URL:
Hit“Apply and Close” then re-open the“Arduino > Preferences” menu. The STM32 Core is now available in the“Platforms and Boards” menu.
Select the latest core version and hit“Apply and Close”.
Tip
Make sure your board is correctly connected before go any further.
There is multiple options to start a new project.
-->Option A: From the“Arduino“ menu, click on“New Sketch”.
-->Option B: Click on the new sketch icon directly from the toolbar.
-->Option C: From the“File > New > Project…” click on“Arduino New Sketch”.
Regardless of the chosen method, set your“Project name” and the“Location” of your project. Then, push the“Next” button.Complete the Arduino required information (board type, port number …) form and click“Next”.
Do not forget to select the“Platform folder” that corresponding to the STM32 Core version previously installed.
Note
If you plan to debug, select "Debug (-g)" from the "Optimize" list else you will not have debugging symbols.
From there, you can create your own sketch or use pre-configured examples.
In this case, we will try the“Blink” example.
From the“select code” bar, apply“Sample sketch” and then choose“Examples > 01.Basics > Blink” and“Finish”.
Note
As the GCC ARM Toolchain is provided by the STM32 core, you do not have to download it in order to program your board.
Use the“Arduino” menu or the upload button on the toolbar to upload your sketch. If the setup is correct, the LED should blink on your board.
First, make sure your board can work with STLink. The debugger support is currently fully tested with the board supported by the STM32Core (Full list onSupported boards section).
Two standard tools are required in order to debug the code:
- GDB, the GNU Debugger. The STM32 core provides a GDB executable. This executable is located in the arm-none-eabi-gcc binaires folder in your STM32 core package. The path should look like this one:
<Eclipse installation path>\eclipse\arduinoPlugin\packages\STM32\tools\arm-none-eabi-gcc\6-2017-q2-update\bin\arm-none-eabi-gdb.exe
- OpenOCD, installed in 1.1.1 section.
Important
Make sure these tools are correctly installed on your platform before proceeding any further.
Important
Do not forget to select "Debug (-g)" to the "Optimize" list in the "Arduino Board Selection" of your project else you will not have debugging symbols.
If you are using sloeber directly, not CDT with the plugin. The you probably will not find the below mentioned menu "Debug Configurations" under "Run". This is, because you are in the arduino view. In this view, all "unnecessary" menus are hidden. To overcome this, you can change the view:
You can choose the regular C/C++ view.Alternatively you can also reach the debug configurations menu by right-click on your project under the arduino view.
From the“Run” menu, select“Debug Configurations”.Double-click on“GDB OpenOCD Debugging” to create a new configuration and set the configuration name.
Move to the“Debugger” tab in order to configure OpenOCD and GDB.
- First, set the OpenOCD executable path. If OpenOCD was installed following the recommended instructions from the GNU MCU plug-in installation guide(see section 1.1.1), Eclipse should auto detect the latest version of OpenOCD and you should be able to use global variable to define your path. Your executable path should look like this one :
${openocd_path}/${openocd_executable}
The“Actual executable” field show the full executable path.
Set the“GDB port” to 3333 , the“Telnet port” to 4444 and the“Tcl port” to 6666.
Finally, set the debugger configuration in the“Config options” field; specify the script path folder and configuration files (.cfg) related to your MCU. In this case, we use a Nucleo F030R8, so the configuration arguments are :
-s "${openocd_path}/../scripts" -f interface/stlink-v2-1.cfg -f target/stm32f0x.cfg
Important
Do not forget to replace the config files with the version of the board you are using.
In the“Debugger” tab, scroll to the GDB Client setup field.
- Set the“Executable name” field to the path of the arm-none-eabi-gdb executable by adding:
${A.COMPILER.PATH}/arm-none-eabi-gdb
By now, the“Debugger” tab should look like the following:
Move to the“Startup” tab, scroll until the“Run/Restart Commands” fields and add:
monitor reset halt monitor reset init
Then go to the“Common” tab and check“Debug” and“Run” in the“Display in favorites menu”.Finally, click on“Apply” and“Close”.
Launch the debug session from the“Debug” or“Run” button in the toolbar.
If the configuration process runs correctly, you will be able to see the debug capabilities of the chip in the Debug console (number of breakpoints, watchpoints, …).
If you are facing problems with messages like "binary not found" you should try to click on the drop down menu and then on your configuration instead of just click on the debug icon.
Now, you can easily debug your code by using the Eclipse debug features including running step-by-step mode, live breakpoint, inspecting memory access, live view of variable contents and many more.
PlatformIO is an open source ecosystem for IoT development. Cross-platform IDE and unified debugger. Remote unit testing and firmware updates.
It's built on top of GitHub'sAtom and Microsoft'sVisual Studio Code – free, open source, and MIT licensed editors
It now supports theSTM32Duino core:
https://docs.platformio.org/en/latest/platforms/ststm32.html#configuration
Thistutorial shows how to develop Arduino-based projects for the STM32 boards using theArduino_Core_STM32,Visual Studio andVisualGDB.
See the Visual Studio Code extension for ArduinoREADME.md.
These settings were extracted by using thenew STM32 VS Code extension's generated launch configuration. That extension currently only supportsCMake
projects, so using it for development isn't yet appropriate for all use cases (i.e.STM32duino).
Download and install the latest STM32CubeCLT installer fromhttps://www.st.com/en/development-tools/stm32cubeclt.html
Restart Windows in order to reload your system environment variables.
On Linux, you might need to manually define the appropriate environment variable yourself, something like this, but making sure you have the correct installation path:
echo"export STM32CLT_PATH=/opt/st/stm32cubeclt_1.16.0">>~/.bashrc
See the embedded comments below for pointers to places you might need or want to modify for yourapplication.
"launch": {"version":"0.2.0","configurations": [ {"name":"Debug w/ ST-Link","cwd":"${workspaceFolder}","type":"cortex-debug","executable":"myproject.elf",// Change to your .elf executable"request":"launch","servertype":"stlink","device":"STM32H563ZITx",// Change to your MCU used"interface":"swd","serialNumber":"",// Set ST-Link ID if you use multiple at the same time"runToEntryPoint":"main","svdFile":"${env:STM32CLT_PATH}/STMicroelectronics_CMSIS_SVD/STM32H563.svd",// Change based your MCU used"v1":false,// Change it depending on ST Link version"serverpath":"${env:STM32CLT_PATH}/STLink-gdb-server/bin/ST-LINK_gdbserver","stm32cubeprogrammer":"${env:STM32CLT_PATH}/STM32CubeProgrammer/bin","stlinkPath":"${env:STM32CLT_PATH}/STLink-gdb-server/bin/ST-LINK_gdbserver","armToolchainPath":"${env:STM32CLT_PATH}/GNU-tools-for-STM32/bin","gdbPath":"${env:STM32CLT_PATH}/GNU-tools-for-STM32/bin/arm-none-eabi-gdb","serverArgs": ["-m","1", ],//"preLaunchTask": "Build + Flash" }, {"name":"Attach w/ ST-Link","cwd":"${workspaceFolder}","type":"cortex-debug","executable":"myproject.elf",// Change to your .elf executable// Let CMake extension decide executable: "${command:cmake.launchTargetPath}"// Or fixed file path: "${workspaceFolder}/path/to/filename.elf""request":"attach","servertype":"stlink","device":"STM32H563ZITx",// Change to your MCU used"interface":"swd","serialNumber":"",// Set ST-Link ID if you use multiple at the same time"runToEntryPoint":"main","svdFile":"${env:STM32CLT_PATH}/STMicroelectronics_CMSIS_SVD/STM32H563.svd",// Change based your MCU used"v1":false,// Change it depending on ST Link version"serverpath":"${env:STM32CLT_PATH}/STLink-gdb-server/bin/ST-LINK_gdbserver","stm32cubeprogrammer":"${env:STM32CLT_PATH}/STM32CubeProgrammer/bin","stlinkPath":"${env:STM32CLT_PATH}/STLink-gdb-server/bin/ST-LINK_gdbserver","armToolchainPath":"${env:STM32CLT_PATH}/GNU-tools-for-STM32/bin","gdbPath":"${env:STM32CLT_PATH}/GNU-tools-for-STM32/bin/arm-none-eabi-gdb","serverArgs": ["-m","1", ], } ]}
- Linux, tested in Ubuntu 18.04
- Requires Arduino IDE with stm32duino installed
- STLink compatible dongle
- assuming Blue Pill board, but it probably work with any other STM32 board
- In the Arduino IDE, go to menu File->Preferences and check compilation verbose
- Open your code, for example, the blink code
- In the Arduino IDE, go to Tools->Optimize->Debug. This will include -g in the compilation process, including debug symbols
- Connect the stlink probe to the board and the computer. I am assumingstlink driver is already installed. If it is the first time you are using the Stlink dongle, it might be necessary toupdate the dongle's firmware.
- Compile and upload in the Arduino IDE. If the compilation is successful, you will see something like this in the Arduino IDE console window.
/home/lsa/.arduino15/packages/STM32/tools/xpack-arm-none-eabi-gcc/9.2.1-1.1/bin/arm-none-eabi-size -A /tmp/arduino_build_742171/Blink-stm32.ino.elfSketch uses 9816 bytes (14%) of program storage space. Maximum is 65536 bytes.Global variables use 588 bytes (2%) of dynamic memory, leaving 19892 bytes for local variables. Maximum is 20480 bytes. ------------------------------------------------------------------- STM32CubeProgrammer v2.2.1 -------------------------------------------------------------------ST-LINK SN : 3B1108013212374D434B4E00ST-LINK FW : V2J35S7Voltage : 3,18VSWD freq : 4000 KHzConnect mode: Under ResetReset mode : Hardware resetDevice ID : 0x410Device name : STM32F101/F102/F103 Medium-densityFlash size : 64 KBytesDevice type : MCUDevice CPU : Cortex-M3Memory Programming ...Opening and parsing file: Blink-stm32.ino.bin File : Blink-stm32.ino.bin Size : 10104 Bytes Address : 0x08000000 Erasing memory corresponding to segment 0:Erasing internal memory sectors [0 9]Download in Progress:File download completeTime elapsed during download operation: 00:00:00.614RUNNING Program ... Address: : 0x8000000Application is runningStart operation achieved successfully
- Open a terminal and run
st-info
to start gdbserver - Open another terminal and run
~/.arduino15/packages/STM32/tools/xpack-arm-none-eabi-gcc/9.2.1-1.1/bin/arm-none-eabi-gdb /tmp/arduino_build_742171/Blink-stm32.ino.elf
to run the gdb used by stm32duino. Note that the path to the ELF file was figure out in the compilation messages in the Arduino IDE, shown in the previous section. - Now in the GDB console, run the following commands:
target remote localhost:4242# it adds breakpoint to the setup and loop functionsb setupb loop# it runs until it reaches the setup and show the code cl# it runs until it reaches the loop and show the code cl# sets break point to line 37, in the middle of the toggle loopb 37# see the led blinking every time you continueccccc
- It is also possible to debug with GUI, such as
ddd
. It requires software installation with the commandsudo apt-get install -y ddd
. - To run
ddd
, open a terminal and typeddd --debugger ~/.arduino15/packages/STM32/tools/xpack-arm-none-eabi-gcc/9.2.1-1.1/bin/arm-none-eabi-gdb /tmp/arduino_build_742171/Blink-stm32.ino.elf
.
Note
Check to point to the appropriate gdb and ELF file.