rt-thread/bsp/stm32/stm32h747-st-discovery
Tangyuxin d724eed9fc
分离内存分配接口与内存分配算法 (#5175)
* [kernel][mem] Multiple instances of small memory allocation algorithm

* [kernel][mem] Change small memory management algorithm memory header flag

* [kernel][mem] Fix assertion problem

* [kernel][slab] Multiple instances of slab memory management algorithm

* [kernel][memheap] Remove rt_malloc/rt_free/rt_realloc and other related memory interfaces

* [kernel][mem] Clean up memory space of small memory management objects

* [kernel][kservice] Add memory application interface and thread protection interface

* [kernel][kservice] Fix function return value problem

* [kernel][memheap] Optimize memheaptrace print

* [kernel][memheap] Support best mode

* [kernel][memory] Remove semaphore lock

* [kernel][memheap] Add locked flag

* [kernel][memory] Support malloc memory in interrupt

* [kernel][memheap] Add 'memheapcheck' cmd

* [kernel][mem] Fix failure to request full memory

* [kernel][memheap] Fix compilation warning

* [kernel][mem] Fix mem realloc ASSERT

* [examples][testcases] Add small mem testcase

* [examples][mem_tc] Modify test memory size

* [examples][testcases] Add slab memory management algorithm test case

* [examples][testcases] fix small memory management algorithm test case

* [kernel][memory] Adjusting memory allocation algorithm object definition and interface

* [kernel][memory] Fix compilation warning

* [examples][utest] Fix mem test case

* [examples][utest] fix slab test case

* [utest][testcases] Shorten test time

* [kernel][memory] Formatting code

* [examples][utest] Adjust test run time

* [examples][utest] Formatting code

* [bsp] update all rtconfig.h
2021-12-16 16:23:58 +08:00
..
applications remove return 2021-03-28 22:42:37 +08:00
board [stm32] add ignore_format.yml 2021-12-13 00:49:48 -05:00
figures [add] bsp/stm32/stm32h747-st-discovery/figures/board.png 2020-02-24 14:26:04 +08:00
.config 分离内存分配接口与内存分配算法 (#5175) 2021-12-16 16:23:58 +08:00
.gitignore [add] stm32/stm32h747-st-discovery bsp 2020-02-24 12:17:53 +08:00
Kconfig [add] stm32/stm32h747-st-discovery bsp 2020-02-24 12:17:53 +08:00
README.md Update BSP README with EN Version. 2020-09-09 18:22:26 +08:00
README_zh.md Update BSP README with EN Version. 2020-09-09 18:22:26 +08:00
SConscript [add] stm32/stm32h747-st-discovery bsp 2020-02-24 12:17:53 +08:00
SConstruct Revert "Fix compiler flags issue" 2021-10-14 14:36:18 +08:00
project.ewp 分离内存分配接口与内存分配算法 (#5175) 2021-12-16 16:23:58 +08:00
project.eww [add] stm32/stm32h747-st-discovery bsp 2020-02-24 12:17:53 +08:00
project.uvoptx 更新 stm32 工程,nxp 工程 2020-12-28 15:02:17 +08:00
project.uvprojx 分离内存分配接口与内存分配算法 (#5175) 2021-12-16 16:23:58 +08:00
rtconfig.h 分离内存分配接口与内存分配算法 (#5175) 2021-12-16 16:23:58 +08:00
rtconfig.py [update] support armclang 2021-09-26 10:46:21 +08:00
template.ewp [add] stm32/stm32h747-st-discovery bsp 2020-02-24 12:17:53 +08:00
template.eww [add] stm32/stm32h747-st-discovery bsp 2020-02-24 12:17:53 +08:00
template.uvoptx [add] stm32/stm32h747-st-discovery bsp 2020-02-24 12:17:53 +08:00
template.uvprojx [add] stm32/stm32h747-st-discovery bsp 2020-02-24 12:17:53 +08:00

README.md

STM32H747-ST-DISCOVERY BSP (Board Support Package) Execution Instruction

中文页 |

Introduction

This document records the execution instruction of the BSP (board support package) provided by the RT-Thread development team for the STM32H747-ST-DISCOVERY development board.

The document is covered in three parts:

  • STM32H747-ST-DISCOVERY 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 STM32H747-ST-DISCOVERY is a development board that contains a ARM Cortex-M7. The maximum main frequency is 480 MHz, and it has a wealth of on-board resources that can take full advantage of the STM32H747's chip performance.

board

The mainly-used resources of this board are shown as follows:

  • MCU: STM32H747
  • Main Frequency 480MHz
  • Memory: 2MB FLASH, 1MB RAM
  • Common-used peripherals: USB、Ethernet、arduino API etc.
  • Debug interface: Standard JTAG/SWD.

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

Peripheral Condition

Each peripheral supporting condition for this BSP is as follows:

On-board Peripheral Support Remark
USB Support
On-chip Peripheral Support Remark
GPIO Support
UART Support UART1

Execution Instruction

Quickly Get Started

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

Hardware Connection

Use a USB cable to connect the development board to the PC and turn on the power switch.

Compile and Download

Double-click the project.uvprojx file, to open the MDK 5 project (MDK requires to download V 5.29 and above to support ST-LINK V3), compile and download the project to the board.

By default, the project uses the 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

Once the project is successfully downloaded, the system runs automatically, and LED will flash.

Connect the serial port of the board to PC, communicate with it via a serial terminal tool (115200-8-1-N). Restart the board and the startup information of RT-Thread will be observed:

 \ | /
- RT -     Thread Operating System
 / | \     4.0.3 build Feb 24 2020
 2006 - 2020 Copyright by rt-thread team
msh >

Advanced Features

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

  1. Open the env tool under BSP.
  2. Enter menuconfig command to configure the project, then save and exit.
  3. Enter pkgs --update command to update the package.
  4. Enter scons --target=mdk4/mdk5/iar command to regenerate the project.

Learn how to use RT-Thread Env, click Here.

Notes

  • Debug serial port has the mapping description for serial port 1.

    PA9 ------> USART1_TX

    PA10 ------> USART1_RX