|
3 years ago | |
---|---|---|
.. | ||
applications | 3 years ago | |
board | 3 years ago | |
figures | 3 years ago | |
xip | 3 years ago | |
.config | 3 years ago | |
.ignore_format.yml | 3 years ago | |
Kconfig | 3 years ago | |
README.md | 3 years ago | |
README_zh.md | 3 years ago | |
SConscript | 3 years ago | |
SConstruct | 3 years ago | |
project.uvoptx | 3 years ago | |
project.uvprojx | 3 years ago | |
rtconfig.h | 3 years ago | |
rtconfig.py | 3 years ago | |
template.uvoptx | 3 years ago | |
template.uvprojx | 3 years ago |
中文页 |
This document records the instruction of the BSP (board support package) that provided by the RT-Thread development team for the MIMXRT1060-EVK development board.
The document is covered in three parts:
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.
Features:
Each peripheral supporting condition for this BSP is as follows:
On-board Peripherals | Support | Remark |
---|---|---|
USB | √ | |
SPI Flash | √ | |
Ethernet | √ | |
On-chip Peripherals | Support | Remark |
GPIO | √ | PA0, PA1... PK15 ---> PIN: 0, 1...176 |
UART | √ | UART1 |
SPI | Coming Soon | |
I2C | Coming Soon | |
SDIO | Coming Soon | |
RTC | Coming Soon | |
PWM | Coming Soon | |
USB Device | Coming Soon | |
USB Host | Coming Soon | |
IWG | Coming Soon | |
Expansion Module | Support | Remark |
LVGL | √ |
This BSP provides MDK4, MDK5, 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.
Use a cable to connect the development board to the PC and turn on the power switch.
Double-click the project.uvprojx
file to open the MDK5 project, compile and download the program to the development board.
The project defaults to use the CMSIS-DAP emulator to download the program, and as we're connecting the development board via USB, click the Download button can directly download the program to the development board
After the program is successfully downloaded, the system runs automatically. Observe the running results of the LED on the development board, the LED will light in 1Hz.
Connect the corresponding serial port of the development board to the PC, 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.1.0 build Mar 10 2022 18:07:41
2006 - 2022 Copyright by RT-Thread team
msh >
This BSP only enables GPIO and UART1 by default. If you need more advanced features such as SD Card, Flash, or you need to configure the BSP with RT-Thread homegrown ENV tool, as follows:
menuconfig
command to configure the project, then save and exit;pkgs --update
command to update the package;scons --target=mdk4/mdk5/iar
command to regenerate the project.More details about NXP MIMXRT1060-EVK , check out Here.