Difference between revisions of "Nucleo Boards"

From RobolaboWiki
Jump to: navigation, search
Line 33: Line 33:
 
sudo make install
 
sudo make install
 
</pre>
 
</pre>
 +
 +
<h3> References </h3>
 +
https://nebkelectronics.wordpress.com/2016/12/19/the-stm32cube-library-part-1-toolchain/ <br>
 +
https://nebkelectronics.wordpress.com/2016/12/24/stm32cube-library-part-2-hello-world/ <br>
 +
https://nebkelectronics.wordpress.com/2017/10/08/stm32cube-library-part-3-compiling/
 +
 +
 
-->
 
-->
  
<h1> IDE Environment </h1>
+
<h1> STM32CubeIDE </h1>
<h2> Linux </h2>
+
<h2> Installation </h2>
 +
 
 +
<h3> Linux </h3>
  
 
<h3> Installing STM32CubeIDE </h3>
 
<h3> Installing STM32CubeIDE </h3>
Line 62: Line 71:
 
You must accept all license agreements.  
 
You must accept all license agreements.  
  
<h3> References </h3>
 
https://nebkelectronics.wordpress.com/2016/12/19/the-stm32cube-library-part-1-toolchain/ <br>
 
https://nebkelectronics.wordpress.com/2016/12/24/stm32cube-library-part-2-hello-world/ <br>
 
https://nebkelectronics.wordpress.com/2017/10/08/stm32cube-library-part-3-compiling/
 
  
<h2> Windows </h2>
+
<h3> Windows </h3>
<h3> Installing STM32CubeIDE </h3>
+
 
 
Last release of STM32CubeIDE can be obtained here: https://www.st.com/en/development-tools/stm32cubeide.html. . <br>
 
Last release of STM32CubeIDE can be obtained here: https://www.st.com/en/development-tools/stm32cubeide.html. . <br>
 
For Windows like distributions, download the STM32CubeIDE-Win file. To download it, you will need to provide name and a valid email address.
 
For Windows like distributions, download the STM32CubeIDE-Win file. To download it, you will need to provide name and a valid email address.
Line 74: Line 79:
 
Unzip the file and execute the binary. Follow all steps and accept all conditions.
 
Unzip the file and execute the binary. Follow all steps and accept all conditions.
  
<h2> MAC </h2>
+
<h3> MAC </h3>
 +
 
 +
<h2> Hello World </h2>

Revision as of 13:13, 29 July 2019


STM32CubeIDE

Installation

Linux

Installing STM32CubeIDE

Last release of STM32CubeIDE can be obtained here: https://www.st.com/en/development-tools/stm32cubeide.html.
For Debian like distributions (e.g. ubuntu), download the STM32CubeIDE-DEB file. To download it, you will need to provide name and a valid email address.

Unzip the file (e.g. <FILE> = en.st-stm32cubeide_1.0.1_3139_20190612_1256_amd64.deb_bundle)

unzip <FILE>.sh.zip

It will generate a .sh file. Give it permits for execution.

chmod 777 <FILE>.sh

Finally, execute the installation

sudo ./<FILE>.sh

You must accept all license agreements.


Windows

Last release of STM32CubeIDE can be obtained here: https://www.st.com/en/development-tools/stm32cubeide.html. .
For Windows like distributions, download the STM32CubeIDE-Win file. To download it, you will need to provide name and a valid email address.

Unzip the file and execute the binary. Follow all steps and accept all conditions.

MAC

Hello World