- Notifications
You must be signed in to change notification settings - Fork1k
Getting Started
Warning
Since core release 2.8.0, only Arduino IDE 2 is supported.To use Legacy IDE (1.8.X), see theGetting Started_V1
Download and installArduino IDE 2 for the required OS.(Windows,Linux ormacOS instructions)
Arduino.cc IDE allows to add easily new board thanks the "Boards Managers".More information about "Boards Managers" is available on Arduino.cc official website:
Installing a Board Package in the IDE 2
The corresponding STM32 cores packages are provided thanks to:
https://github.com/stm32duino/BoardManagerFiles
Follow the below steps to get STM32 boards installed to your Arduino IDE.
This is the needed step to get STM32 targets added to Arduino.So carefully follow the following steps.
1- Launch Arduino.cc IDE. Click on "File" menu and then "Preferences".
The "Preferences" dialog will open, then add the following link to the "Additional Boards Managers URLs" field:
https://github.com/stm32duino/BoardManagerFiles/raw/main/package_stmicroelectronics_index.json
Click "Ok"
2- Click on "Tools" menu and then "Boards > Boards Manager" or use the underlined icon on the left side bar:
The board manager will open and you will see a list of installed and available boards.
Select "Contributed" type.
Select the "STM32 MCU based boards" and click on install.
After installation is complete a "<version> installed" tag appears below the core name.
You can close the Board Manager.
Now you can find the STM32 boards package in the "Board" menu.
Select the desired boards series:Nucleo-64 / Nucleo-144 / Discovery / ...
Then you can find the Nucleo-64 boards available in a sub-menu of the "Tools" menu.
To upload through SWD (STLink), Serial or DFU,STM32CubeProgrammer needs to be installed. SeeUpload methods.
If you have any issue to download/use a package, you couldfile an issue on Github.
If you have any issue to download a package, ensure to not be behind a proxy.
Else configure the proxy in the Arduino.cc IDE (open the "Preferences" dialog and select "Network" tab).
Connect a board to the computer USB port. For this example:Nucleo L476RG
Launch the Arduino software
Select theNucleo L476RG board in two steps:
a. From the "Tools > Board" menu, select the STM32 boards groups:Nucleo-64
b. Then from the "Tools > Board part number" menu, select theNucleo L476RG
Select the serial port from the "Tools > Port" menu
- On Mac, it's something like/dev/tty.usbmodem-1511.
- On Windows, it's often the highest-numbered COM port. In this example, it'sCOM40
- On Linux, it's something like/dev/ttyACM0.
(Or unplug the board, check the menu, and then plug the board and check what new port appears)
Depending of the board, several upload methods could be proposed, thanks the "Tools > Upload Method" menu.
SeeUpload methods for more details.