rt-thread-official/bsp/imxrt/imxrt1060-nxp-evk
liuxianliang a4eb64b873 update the project for RT-Thread_V4.1.1 2022-08-16 19:38:48 +08:00
..
applications 增加双网口配置选项,增加phy8211F 驱动 (#6278) 2022-08-14 23:21:27 -04:00
board 增加双网口配置选项,增加phy8211F 驱动 (#6278) 2022-08-14 23:21:27 -04:00
figures 添加 imxrt1060-evk BSP (#5657) 2022-03-11 12:13:56 +08:00
xip 增加双网口配置选项,增加phy8211F 驱动 (#6278) 2022-08-14 23:21:27 -04:00
.config update the project for RT-Thread_V4.1.1 2022-08-16 19:38:48 +08:00
.ignore_format.yml 添加 imxrt1060-evk BSP (#5657) 2022-03-11 12:13:56 +08:00
Kconfig 添加 imxrt1060-evk BSP (#5657) 2022-03-11 12:13:56 +08:00
README.md add README_zh.md、led blink (#5666) 2022-03-11 18:26:56 +08:00
README_zh.md add README_zh.md、led blink (#5666) 2022-03-11 18:26:56 +08:00
SConscript 添加 imxrt1060-evk BSP (#5657) 2022-03-11 12:13:56 +08:00
SConstruct 增加双网口配置选项,增加phy8211F 驱动 (#6278) 2022-08-14 23:21:27 -04:00
project.uvoptx [bsp] Update all projects. 2022-03-29 19:28:06 +08:00
project.uvprojx update the project for RT-Thread_V4.1.1 2022-08-16 19:38:48 +08:00
rtconfig.h update the project for RT-Thread_V4.1.1 2022-08-16 19:38:48 +08:00
rtconfig.py [scons][iar] 将IAR的PLATFORM字段由iar调整为iccarm 2022-06-09 07:01:59 +08:00
template.uvoptx 添加 imxrt1060-evk BSP (#5657) 2022-03-11 12:13:56 +08:00
template.uvprojx 添加 imxrt1060-evk BSP (#5657) 2022-03-11 12:13:56 +08:00

README.md

NXP MIMXRT1060-EVK BSP Introduction

中文页 |

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:

  • 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.

Resources Introduction

board

Features:

  • MCU: MIMXRT1062DVL6A, 600MHz, 4096KB FLASH, 1024KB RAM
  • External RAM: IS42S16160J-6BLI, 32MB
  • External FLASH: S26KS512SDPBHI02, 64MB
  • Common-used Peripherals:
    • LED: One, D18(Green)
    • Button: One
  • Common-used Interfaces: USB 、SD Card、Ethernet、LCD, etc
  • Debugging interface, standard JTAG/SWD

For more details about these boards, please refer to NXP Official Website

Peripherals Condition

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

Quickly Get Started

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.

Hardware Connection

Use a 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 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

Running Results

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 >

Advanced Features

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:

  1. Open the ENV tool under the specific BSP folder;
  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.

More details about NXP MIMXRT1060-EVK , check out Here.