micropython/ports/mimxrt
robert-hh 7d7d29dbe2 mimxrt: Fix mp_hal_quiet_timing_enter()/exit() so timer still runs.
The initial code disabled IRQs, which caused the us-ticks timer to stop.
The change here changes the priotity level, such that the timer still runs.
2021-11-16 23:20:06 +11:00
..
boards mimxrt/boards: Update the board.json files and add deploy_xx.md files. 2021-11-16 23:17:42 +11:00
hal mimxrt/hal: Remove duplicate definitions from flexspi_hyper_flash.h. 2021-10-25 15:50:44 +11:00
lwip_inc mimxrt/eth: Add LAN support and integrate the network module. 2021-10-25 15:14:26 +11:00
mbedtls mimxrt/eth: Add LAN support and integrate the network module. 2021-10-25 15:14:26 +11:00
modules
Makefile mimxrt: Add dht_readinto() to the mimxrt module, and freeze dht.py. 2021-10-25 23:49:28 +11:00
README.md mimxrt: Extend the help() message and README.md. 2021-10-25 23:52:08 +11:00
board_init.c mimxrt/eth: Add LAN support and integrate the network module. 2021-10-25 15:14:26 +11:00
dma_channel.c mimxrt/dma_channel: Fix the DMA channel management. 2021-10-25 15:50:44 +11:00
dma_channel.h
eth.c mimxrt/eth: Add LAN support and integrate the network module. 2021-10-25 15:14:26 +11:00
eth.h mimxrt/eth: Add LAN support and integrate the network module. 2021-10-25 15:14:26 +11:00
fatfs_port.c
led.c
led.h
machine_adc.c
machine_bitstream.c mimxrt: Fix cycle counter for time.ticks_cpu() and machine.bitstream(). 2021-10-25 15:50:44 +11:00
machine_i2c.c
machine_led.c
machine_pin.c
machine_rtc.c
machine_sdcard.c
machine_spi.c
machine_timer.c
machine_uart.c
machine_wdt.c mimxrt/modmachine: Implement machine.WDT() and machine.reset_cause(). 2021-10-25 15:43:56 +11:00
main.c mimxrt: Extend the help() message and README.md. 2021-10-25 23:52:08 +11:00
mimxrt_flash.c
mimxrt_sdram.c
modmachine.c mimxrt/modmachine: Implement soft_reset() and unique_id() functions. 2021-10-25 23:53:48 +11:00
modmachine.h mimxrt/modmachine: Implement machine.WDT() and machine.reset_cause(). 2021-10-25 15:43:56 +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 mimxrt/eth: Add LAN support and integrate the network module. 2021-10-25 15:14:26 +11:00
modutime.c
mpconfigport.h mimxrt: Fix mp_hal_quiet_timing_enter()/exit() so timer still runs. 2021-11-16 23:20:06 +11:00
mphalport.c mimxrt/eth: Add LAN support and integrate the network module. 2021-10-25 15:14:26 +11:00
mphalport.h mimxrt: Fix mp_hal_quiet_timing_enter()/exit() so timer still runs. 2021-11-16 23:20:06 +11:00
mpnetworkport.c mimxrt/eth: Add LAN support and integrate the network module. 2021-10-25 15:14:26 +11:00
network_lan.c mimxrt/eth: Add LAN support and integrate the network module. 2021-10-25 15:14:26 +11:00
pendsv.c mimxrt/eth: Add LAN support and integrate the network module. 2021-10-25 15:14:26 +11:00
pendsv.h mimxrt/eth: Add LAN support and integrate the network module. 2021-10-25 15:14:26 +11:00
pin.c mimxrt/eth: Add LAN support and integrate the network module. 2021-10-25 15:14:26 +11:00
pin.h
qstrdefsport.h
sdcard.c
sdcard.h
systick.c mimxrt/eth: Add LAN support and integrate the network module. 2021-10-25 15:14:26 +11:00
systick.h mimxrt/eth: Add LAN support and integrate the network module. 2021-10-25 15:14:26 +11:00
ticks.c mimxrt: Fix cycle counter for time.ticks_cpu() and machine.bitstream(). 2021-10-25 15:50:44 +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