rt-thread-official/bsp/stm32/stm32f401-st-nucleo
latercomer fe3c4d456e bsp中option env语句替换为新语句,并同步更新了source "$xxx"语句 2024-06-20 14:40:42 +08:00
..
.ci/attachconfig [ci][bsp] add strict mode 2024-01-10 18:08:09 +08:00
.settings [bsp/stm32/stm32f401-st-nucleo] Add eclipse project. 2019-06-19 09:12:11 +08:00
applications [RTduino] change the pinout group name 2024-03-29 21:49:13 +08:00
board bsp中option env语句替换为新语句,并同步更新了source "$xxx"语句 2024-06-20 14:40:42 +08:00
figures [bsp]添加 stm32f401-st-nucleo 开发板 BSP 2019-03-07 15:43:08 +08:00
.config [bsp] update projects 2024-03-21 11:23:29 +08:00
.cproject delete swm320-lq100 bsp 2022-02-14 13:53:04 +08:00
.gitignore [bsp]添加 stm32f401-st-nucleo 开发板 BSP 2019-03-07 15:43:08 +08:00
.project [bsp/stm32] Update the eclipse project. 2019-08-03 15:56:18 +08:00
Kconfig bsp中option env语句替换为新语句,并同步更新了source "$xxx"语句 2024-06-20 14:40:42 +08:00
README.md update 401 2021-01-08 11:18:47 +08:00
README_zh.md Update BSP README with EN Version. 2020-09-09 18:22:26 +08:00
SConscript [bsp]添加 stm32f401-st-nucleo 开发板 BSP 2019-03-07 15:43:08 +08:00
SConstruct [bsp]stm32工程生成路径在源码目录 2023-07-03 15:20:57 +08:00
makefile.targets [bsp/stm32/stm32f401-st-nucleo] Add eclipse project. 2019-06-19 09:12:11 +08:00
project.ewd [bsp]添加 stm32f401-st-nucleo 开发板 BSP 2019-03-07 15:43:08 +08:00
project.ewp [bsp] update projects 2024-03-21 11:23:29 +08:00
project.eww [bsp]添加 stm32f401-st-nucleo 开发板 BSP 2019-03-07 15:43:08 +08:00
project.uvoptx [bsp] update project configure file for finsh component change 2019-09-26 15:40:13 +08:00
project.uvprojx [bsp] update projects 2024-03-21 11:23:29 +08:00
rtconfig.h [bsp] update projects 2024-03-21 11:23:29 +08:00
rtconfig.py [scons][iar] 将IAR的PLATFORM字段由iar调整为iccarm 2022-06-09 07:01:59 +08:00
template.ewp 调整iar工程配置 2019-03-12 16:45:02 +08:00
template.eww [bsp]添加 stm32f401-st-nucleo 开发板 BSP 2019-03-07 15:43:08 +08:00
template.uvopt [bsp]添加 stm32f401-st-nucleo 开发板 BSP 2019-03-07 15:43:08 +08:00
template.uvoptx [bsp]添加 stm32f401-st-nucleo 开发板 BSP 2019-03-07 15:43:08 +08:00
template.uvprojx [bsp]添加 stm32f401-st-nucleo 开发板 BSP 2019-03-07 15:43:08 +08:00

README.md

STM32F401 Nucleo-64 BSP Introduction

中文页 |

Introduction

This document records the execution instruction of the BSP (board support package) provided by the RT-Thread development team for the STM32F401 Nucleo-64 development board.

The document is covered in three parts:

  • STM32F401 Nucleo-64 Board Resources Introduction
  • Quickly Get Started
  • Advanced Features

By reading the Quickly Get Started section developers can quickly get their hands on this BSP and run RT-Thread on the board. More advanced features will be introduced in the Advanced Features section to help developers take advantage of RT-Thread to drive more on-board resources.

Board Resources Introduction

The STM32 Nucleo-64 is a development board based on STM32F401RE, which contains a Cortex-M4 core. The maximum main frequency is 84 MHz, and it has a wealth of on-board resources that can take full advantage of the STM32F401RE's chip performance.

board

The mainly-used on-board resources are shown as follows:

  • MCU: STM32F401RET6
  • Main Frequency: 84MHz
  • Memory: 512KB FLASH , 96KB RAM
  • Common-used peripherals:
    • 3 LEDs: USB communication (LD1), user LED (LD2), power LED (LD3)
    • 2 Buttons: USER and RESET
  • Common-used interface: USB, Arduino Uno, and ST morpho
  • Debug interface: ST-LINK/V2-1

For more details about this board, please refer to the ST official documentation

Peripheral Condition

Each peripheral supporting condition for this BSP is as follows:

On-chip Peripheral Drivers Support Remark
GPIO Support PA0, PA1... PH1 ---> PIN: 0, 1...63
UART Support UART2
SPI Support SPI1

Quickly Get Started

This BSP provides MDK5 and IAR projects for developers. Also support GCC development environment. Here's an example of the MDK5 development environment, to introduce how to run the system.

Hardware Connection

Use a Type-A to Mini-B cable to connect the development board to the PC and turn on the power switch. The red LED LD3 (PWR) and LD1 (COM) will lit.

Compile And Download

Double-click the project.uvprojx file, to open the MDK5 project, compile and download the program to the board.

By default, the project uses ST_LINK simulator to download the program, when the ST_LINK connects the board, clicking the download button can download the program to the board.

Running Results

After the program is successfully downloaded, the system runs automatically. Observe the running results of the LED on the development board, the red LD3 and LD1 will lit all the time, green LD2 will flash periodically.

The USB virtual COM port connects to serial port 2 by default, and when the corresponding serial port (115200-8-1-N) is opened in the terminal tool, the output information of RT-Thread can be seen when the device is reset:

 \ | /
- RT -     Thread Operating System
 / | \     4.0.1 build Mar  7 2019
 2006 - 2019 Copyright by rt-thread team
msh >

Advanced Features

This BSP only enables GPIO and serial port 2 by default. If need more advanced features, you need to configure the BSP with RT-Thread Env tools, as follows:

  • Open the Env tool under this BSP;

  • Enter the menuconfig command to configure the project, then save and exit;

  • Enter the pkgs --update command to update the packages;

  • Enter the scons --target=mdk4/mdk5/iar command to regenerate the project.

Notes

According to the pin number specification, in the new stm32 bsp framework, the GPIO driver is managed in a sequential numbering manner.

The pin serial number corresponds to the pin name as shown in the following table:

STM32 Pin Name Pin Sequence Number
PA0 - PA15 0 - 15
PB0 - PB15 16 - 31
PC0 - PC15 32 - 47
PD0 - ... 48 - ...

Maintained By

shaoguoji 752147916@qq.com