A RetroSearch Logo

Home - News ( United States | United Kingdom | Italy | Germany ) - Football scores

Search Query:

Showing content from https://github.com/stm32duino/Arduino_Core_STM32/wiki/How-to-debug below:

How to debug · stm32duino/Arduino_Core_STM32 Wiki · GitHub

Below, some ways to debug:

Warning

Only the Arduino IDE 2 is officially supported.

Arduino IDE 2 (Supported and recommended way)

Note

Requires a ST-Link/V2 or ST-Link/V3 device connected to the PC over USB and to the board via the SWD interface.

  1. If not already done, Getting-Started#Install-Arduino.cc-IDE

  2. Configure the IDE to the desired board. Here the Nucleo L476RG which already includes a ST-Link.

See Getting-Started#configuring-ide

  1. Open the Blink sketch from the "File> Examples > 01.Basics > Blink".

  2. Select the "Optimize for debugging" in the "Sketch" menu:

  1. Click the upload button

See Getting-Started#upload-method to change the upload method.

  1. Click the start debugging button:

1 - Software requirements 1.1 - Install Eclipse C/C++ IDE
  1. Launch "Eclipse > Help > Install New Software".
  2. In the Work with section, choose: Oxygen - http://download.eclipse.org/releases/oxygen (depending on your Eclipse packages version).
  3. 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).

1.2 - Install Sloeber (The Arduino Eclipse Plugin)

From the Eclipse main tab, go to “Help > Eclipse Marketplace” and search for Sloeber.
Download the "Sloeber plugin" , follow the recommended instructions and restart Eclipse.
By now, the main tab should look like the following:

1.3 - Install STM32 Cores

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:

https://raw.githubusercontent.com/stm32duino/BoardManagerFiles/main/package_stmicroelectronics_index.json

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”.

2 - Programming the boards

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.

3 - Debugging Arduino Code

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 on Supported boards section).

3.1 Software requirements

Two standard tools are required in order to debug the code:

<Eclipse installation path>\eclipse\arduinoPlugin\packages\STM32\tools\arm-none-eabi-gcc\6-2017-q2-update\bin\arm-none-eabi-gdb.exe

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.

3.2 Setting up debug configuration

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.

  1. 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.

  1. Set the “GDB port” to 3333 , the “Telnet port” to 4444 and the “Tcl port” to 6666.

  2. 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.

         ${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”.

3.3 Launching a debug session

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's Atom and Microsoft's Visual Studio Code – free, open source, and MIT licensed editors

It now supports the STM32Duino core:

https://docs.platformio.org/en/latest/platforms/ststm32.html#configuration

Visual Studio and VisualGDB

This tutorial shows how to develop Arduino-based projects for the STM32 boards using the Arduino_Core_STM32, Visual Studio and VisualGDB.

Visual Studio Code and Arduino extension

See the Visual Studio Code extension for Arduino README.md.

Visual Studio Code + STM32CubeCLT + cortex-debug extension

These settings were extracted by using the new STM32 VS Code extension's generated launch configuration. That extension currently only supports CMake projects, so using it for development isn't yet appropriate for all use cases (i.e. STM32duino).

  1. Download and install the latest STM32CubeCLT installer from https://www.st.com/en/development-tools/stm32cubeclt.html

  2. 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 your application.

/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.elf
Sketch 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  : 3B1108013212374D434B4E00
ST-LINK FW  : V2J35S7
Voltage     : 3,18V
SWD freq    : 4000 KHz
Connect mode: Under Reset
Reset mode  : Hardware reset
Device ID   : 0x410
Device name : STM32F101/F102/F103 Medium-density
Flash size  : 64 KBytes
Device type : MCU
Device CPU  : Cortex-M3



Memory 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 complete
Time elapsed during download operation: 00:00:00.614

RUNNING Program ... 
  Address:      : 0x8000000
Application is running
Start operation achieved successfully
1.3 Debugging with Command Line GDB
target remote localhost:4242

# it adds breakpoint to the setup and loop functions
b setup
b loop
# it runs until it reaches the setup and show the code 
c
l
# it runs until it reaches the loop and show the code 
c
l
# sets break point to line 37, in the middle of the toggle loop
b 37
# see the led blinking every time you continue
c
c
c
c
c
1.4 Debugging with GUI GDB

Note

Check to point to the appropriate gdb and ELF file.


RetroSearch is an open source project built by @garambo | Open a GitHub Issue

Search and Browse the WWW like it's 1997 | Search results from DuckDuckGo

HTML: 3.2 | Encoding: UTF-8 | Version: 0.7.4