micropython/ports/mimxrt
robert-hh bc1b0fd2c1 mimxrt: Define UART 0 on MIMXRT boards.
UART 0 is attached to the Debug USB port. The settings are
115200 Baud, 8N1.
For MIMXRT1010_EVK this is identical to UART1. For the other boards,
this is an additional UART.
2021-12-14 08:07:52 +01:00
..
boards mimxrt: Define UART 0 on MIMXRT boards. 2021-12-14 08:07:52 +01:00
hal mimxrt: Support PWM using the FLEXPWM and QTMR modules. 2021-11-24 13:48:27 +11:00
lwip_inc
mbedtls
modules
Makefile mimxrt: Support PWM using the FLEXPWM and QTMR modules. 2021-11-24 13:48:27 +11:00
README.md mimxrt: Extend the help() message and README.md. 2021-10-25 23:52:08 +11:00
board_init.c
dma_channel.c
dma_channel.h
eth.c
eth.h
fatfs_port.c
led.c
led.h
machine_adc.c
machine_bitstream.c
machine_i2c.c
machine_led.c
machine_pin.c
machine_pwm.c mimxrt: Support PWM using the FLEXPWM and QTMR modules. 2021-11-24 13:48:27 +11:00
machine_rtc.c
machine_sdcard.c
machine_spi.c
machine_timer.c
machine_uart.c mimxrt: Define UART 0 on MIMXRT boards. 2021-12-14 08:07:52 +01:00
machine_wdt.c
main.c mimxrt: Support PWM using the FLEXPWM and QTMR modules. 2021-11-24 13:48:27 +11:00
mimxrt_flash.c
mimxrt_sdram.c
modmachine.c mimxrt: Support PWM using the FLEXPWM and QTMR modules. 2021-11-24 13:48:27 +11:00
modmachine.h mimxrt: Support PWM using the FLEXPWM and QTMR modules. 2021-11-24 13:48:27 +11:00
modmimxrt.c mimxrt: Add dht_readinto() to the mimxrt module, and freeze dht.py. 2021-10-25 23:49:28 +11:00
modmimxrt.h
moduos.c
modutime.c
mpconfigport.h mimxrt: Support PWM using the FLEXPWM and QTMR modules. 2021-11-24 13:48:27 +11:00
mphalport.c
mphalport.h mimxrt: Fix mp_hal_quiet_timing_enter()/exit() so timer still runs. 2021-11-16 23:20:06 +11:00
mpnetworkport.c
network_lan.c
pendsv.c
pendsv.h
pin.c
pin.h
qstrdefsport.h
sdcard.c
sdcard.h
systick.c
systick.h
ticks.c mimxrt: Support PWM using the FLEXPWM and QTMR modules. 2021-11-24 13:48:27 +11:00
ticks.h
tusb_config.h
tusb_port.c

README.md

Port of MicroPython to NXP iMX RT 10xx

Currently supports Teensy 4.0, Teensy 4.1, and the MIMXRT1010_EVK, MIMXRT1020_EVK, MIMXRT1050_EVK, MIMXRT1060_EVK and MIMXRT1064_EVK boards.

Features:

  • REPL over USB VCP
  • machine.ADC
  • machine.I2C
  • machine.LED
  • machine.Pin
  • machine.PWM
  • machine.RTC
  • machine.SDCard
  • machine.SPI
  • machine.Signal
  • machine.SoftI2C
  • machine.SoftSPI
  • machine.Timer
  • machine.UART
  • LFS2 file system at the internal Flash
  • SDCard support (not on MIMXRT1010_EVK)
  • Ethernet (not on Teensy 4.0 and MIMXRT1010_EVK)

Known issues:

TODO:

  • More peripherals (Counter, I2S, CAN, etc)
  • More Python options