Difference between revisions of "Nucleo Boards"
From RobolaboWiki
Line 32: | Line 32: | ||
sudo make install | sudo make install | ||
</pre> | </pre> | ||
+ | |||
+ | <h3> Installing STM32CubeIDE </h3> | ||
+ | Last releas of STM32CubeIDE can be obtained here: https://www.st.com/en/development-tools/stm32cubeide.html?ecmp=tt11319_gl_link_may2019&2 <br> | ||
+ | However a June 2019 version is located here. | ||
Revision as of 08:21, 29 July 2019
Contents
[hide]Configuring environment
Linux
Installing dependencies
Dependencies for compilling
In a command line, execute:
sudo apt-get install build-essential gcc-arm-none-eabi libnewlib-arm-none-eabi libstdc++-arm-none-eabi-newlib
Dependencies for flashing the microcontroller
In a command line, execute:
sudo apt-get install git cmake libusb-1.0-0-dev dfu-util
Dependencies for debugging the microcontroller
In a command line, execute:
sudo apt-get install gdb
Moreover, stlink utility is mandatory to debug in a nucleo board. In a command line, execute:
git clone https://github.com/texane/stlink.git cd stlink make cd build/Release sudo make install
Installing STM32CubeIDE
Last releas of STM32CubeIDE can be obtained here: https://www.st.com/en/development-tools/stm32cubeide.html?ecmp=tt11319_gl_link_may2019&2
However a June 2019 version is located here.
References
https://nebkelectronics.wordpress.com/2016/12/19/the-stm32cube-library-part-1-toolchain/
https://nebkelectronics.wordpress.com/2016/12/24/stm32cube-library-part-2-hello-world/
https://nebkelectronics.wordpress.com/2017/10/08/stm32cube-library-part-3-compiling/