STM32F4 – In-circuit Debugging [Revisited]

In this tutorial I update my previous post on configuring in-circuit debugger for STM32F4 using the following open source tools:

  • Eclipse Luna (4.4.1);
  • GNU ARM Eclipse Plug-ins;
  • GCC ARM Embedded Toolchain;
  • My project wizard.

Eclipse-GNUARM-Project9

1. Prerequisites

cd ~
# Remove the official package
sudo apt-get purge binutils-arm-none-eabi \
                   gcc-arm-none-eabi \
                   gdb-arm-none-eabi \
                   libnewlib-arm-none-eabi

# Add 3rd party repository
sudo add-apt-repository ppa:terry.guo/gcc-arm-embedded
sudo apt-get update
# Check the GCC package version in the PPA repository
sudo apt-cache policy gcc-arm-none-eabi

# Install
sudo apt-get install build-essential git openocd \
             gcc-arm-none-eabi

# Clone my git repository and init submodules
git clone https://github.com/istarc/stm32.git
cd ~/stm32
git submodule update --init

 2. Install Software Dependencies

2.1 Install Eclipse

Install Eclipse Luna (4.4.1) release for Linux 64-bit for C/C++ developers. Assuming you downloaded the file to the Download folder, execute the following commands to install Eclipse.

cd ~/Downloads
# Untar and move to home folder
sudo tar xzf eclipse-cpp-luna-SR1-linux-gtk-x86_64.tar.gz
mv eclipse ../
# Start the Eclipse from the command-line
~/eclipse/eclipse &

Be sure to start the Eclipse from the command-line, import the old workspace and install GNU ARM Eclipse plug-ins as follows.

  1. Help → Install New Software… → Add…
  2. Add the GNU ARM Eclipse plug-ins repository.Eclipse-GNUARMPlugins1
  3. Install the plug-ins.Eclipse-GNUARMPlugins2

2.2 Check the OpenOCD version

Check the OpenOCD version and build from scratch, if necessary.

openocd --version

If it is less than 0.9.0, then I recommend you to build the program the from the source in 7 very simple steps as follows (due to some issues with STM32F4). You may find the OpenOCD at /opt/openocd.

# Install build dependencies
sudo apt-get install eclipse-cdt libtool libftdi-dev \
                     libusb-1.0-0-dev \
                     automake pkg-config texinfo
# Clone OpenOCD project
git clone \
 git://openocd.git.sourceforge.net/gitroot/openocd/openocd

# Configure OpenOCD
cd ~/openocd
./bootstrap
./configure --enable-maintainer-mode \
 --disable-option-checking \
 --disable-werror \
 --prefix=/opt/openocd \
 --enable-dummy \
 --enable-usb_blaster_libftdi \
 --enable-ep93xx \
 --enable-at91rm9200 \
 --enable-presto_libftdi \
 --enable-usbprog \
 --enable-jlink \
 --enable-vsllink \
 --enable-rlink \
 --enable-stlink \
 --enable-arm-jtag-ew

# Build and Deploy the OpenOCD project (/opt/openocd)
make # Build
sudo make install # Install

3.  Create a New Project

Create a new project using my project wizard with the mbed-none argument that creates a bare-metal project with mbed SDK support.

mkdir -p ~/stm32/examples/icd-test
cd ~/stm32/examples/icd-test
../../mbed-project-wizard/gen-stm32f407-GCC-project.sh \
                                                    mbed-none

4. Import the Project

Switch back to Eclipse and import the newly created project.

  1. File → Import… → C/C++ → Existing Code as Makefile Project
  2. Browse… → Navigate to ~/stm32/examples/icd-test and select Cross ARM GCC toolchain.Eclipse-GNUARM-Project1
  3. Manually import make targets.
    1. Navigate to Window → Show View → Make Targets.
    2. Expand the project directory.
    3. Right click on the project directory and add a new target by filling in the target name.Eclipse-GNUARM-Project2
    4. Repeat the previous step for the remaining targets: release, release-memopt, release-memopt-blame, debug, clean, deploy.
      1. You may check the project’s Makefile for additional targets.Eclipse-GNUARM-Project3
  4. Import the GNU ARM toolchain environment settings.
    1. Navigate to File → Properties → C/C++ Build → Settings.
    2. Deselect “Use global toolchain path” option.
    3. Then reselect it again! This is a hotfix for GNU ARM Eclipse Plug-ins to import environmental variables correctly.Eclipse-GNUARM-Project4
    4. Verify the hotfix (optionally).
      1. Navigate to File → Properties → C/C++ Build → Build Variables.
      2. Enable show system variables.
      3. Check cross_make value.Eclipse-GNUARM-Project5

4. Configure In-Circuit Debugger

  1. Build the debug target.
    1. Navigate to Project → Make Target → Build… → clean (or [Shift + F9] → clean).
    2. [Shift + F9] → debug.
  2. Create a new debug configuration by navigating to Run → Debug Configurations… → Right click on the GDB OpenOCD Debugging option.Eclipse-GNUARM-Project6
  3. Configure the debug configuration
    1. Provide the path to the binary file and select the “Disable auto-build” option — you can optimize that later. 😉Eclipse-GNUARM-Project7
    2. Provide the path to the OpenOCD executable and to the STM32F4-Discovery script.Eclipse-GNUARM-Project8

5. Start Debugging

  1.  Edit the main.cpp file in the src folder.
    1. Add a counter variable (see the figure below, line 19).
    2. Increment it before turning on/off LED (see the figure below, line 22 and 26).
  2. Build the debug target.
    1. [Shift + F9] → clean.
    2. [Shift + F9] → debug.
  3. Run → Debug Configurations… → Double click on the new debug configuration.
  4. Wait a few seconds and then step through the code (F5).

Eclipse-GNUARM-Project9

About istarc

Embedded Systems Developer.
This entry was posted in Embedded Systems, STM32F4 and tagged , , , , . Bookmark the permalink.

7 Responses to STM32F4 – In-circuit Debugging [Revisited]

  1. Maxi says:

    Hello Iztok,
    thanks for your very good tutorials.
    I’m a beginner in LINUX, ARM and eclipse. I come from Arduino and want to go the next step further in programming. My goal is to run and understand Benjamin Vedders VESC which I allready build. As it is not running I like to go through his software with the help of the debugging tools but when I follow your tutorial I’m faced with the following problem at the point :
    ” File → Import… → C/C++ → Existing Code as Makefile Project
    Browse… → Navigate to ~/stm32/examples/icd-test and select Cross ARM GCC toolchain. …”
    I only have the choise etween “Cross GCC” and “Linux GCC” !?
    Maybe I missed one of your tutorials, or what went wrong?
    Thanks for your help

    Max

    • istarc says:

      Hi Max,

      Perhaps you forgot to install GNU ARM C/C++ Cross Development Tools plugin. Check the section 2.1. I hope this helps you further.

      Best regards and good luck with your project,

      Iztok

  2. Dennis says:

    Thanks again for another great tutorial!
    Because I struggle with debugging in QTCreator since I had to re-instal my development laptop I tried to debug with eclipse following this tutorial.

    I used nwer eclipse moon 4.4 but SR2 instead of SR1 and encountered some differences:
    diff 1:
    At point
    4. Import the Project
    4.4 Import the GNU ARM toolchain environment settings.
    There was no checkbox to unselect and re-select ‘Use global toolchain path’
    so I did nothing there.
    I continued 4.4D to verify the hotfix and it already looked like the screenshot for the entry cross_make. (Type:String, Value:make)

    diff 2:
    At ‘Run’ and ‘Debug configuration’ I had to change the debugger in the tab ‘Debugger’ which is next to ‘Main’ and ‘Startup’.
    Default was sth like ${gdb_prefix}gdb${gdb_suffix} (I don’t remember) but because these variables were not set my eclipse was trying to use /usr/bin/gdb instead of /usr/bin/arm-none-eabi-gdb.
    I saw this because I remembered seeing that arm-none-eabi-gdb is 7.8 when using QTCreator but the console printed 7.7.1 which is the same as /usr/bin/gdb –version.
    So I set manually ‘arm-none-eabi-gdb’ in the field GDB Client Setup => Executable
    If arm-none-eabi-gdb is not in your PATH we need to use /usr/bin/arm-none-eabi-gdb of course.

    I’m not sure if these problems are relates (I would expect 2 to work without the adjustments if all variables are set correctly which I wasn’t able in diff 1) or it this is because of 4.4 SR2 instead of the tutorial-recommended 4.4 SR1 (which I doubt) but anyway – I just wanted to share my experience to help other people.

    • istarc says:

      Hi Dennis, thx for your feedback. Of course, some things change over time, so the tutorial is not up to date anymore, but still can be used as a rough guide to setup in-circuit debugging environment. Thx and best regards, Iztok.

  3. Hi, Iztok. Thank you so much for what you do on this site. I’ve spent way too many hours trying to get an ARM development toolchain running. I’ve evaluated Keil, CooCox, IAR, CrossWorks, Atollic, Eclipse, and several command line options. Your tutorials, scripts, and code are the only things that have given me meaningful progress.

    Eclipse has been the worst part of the whole journey of moving from AVR to ARM. Every week or so I Give Eclipse another shot with another tutorial and always walk away thinking the same thing: Eclipse is a heap of crap. It’s 4:35 AM after more fruitless hours wasted following instructions on http://gnuarmeclipse.github.io. Finally, I run into your tutorial. I will be trying this promptly when I wake up early tomorrow afternoon. Thank you 🙂

    My end goal is to Run FreeRTOS and debug using Eclipse. Have you been able to debug in this scenario?

Leave a reply to Charles Edward Pax Cancel reply