micropython/ports/mimxrt
Philipp Ebensberger 62cb2069bb mimxrt/machine_pin: Change pin drive constants to DRIVE_x naming.
Updated DRIVE_x constants representing pin drive strength.

Signed-off-by: Philipp Ebensberger
2022-03-08 22:30:33 +11:00
..
boards mimxrt: Add support for the Olimex RT1010 board. 2022-01-27 17:05:45 +11:00
hal mimxrt: Allow for board-specific flash driver files. 2022-01-27 16:53:30 +11:00
lwip_inc mimxrt: Re-Enable eth checksum creation by HW. 2021-12-14 08:07:52 +01:00
mbedtls
modules
Makefile mimxrt: Simplify Makefile in selection of flash type. 2022-01-27 17:05:45 +11:00
README.md
board_init.c
dma_channel.c
dma_channel.h
eth.c mimxrt/machine_pin: Change pin drive constants to DRIVE_x naming. 2022-03-08 22:30:33 +11:00
eth.h mimxrt: Add a driver for the DP83848 PHY device. 2021-12-14 08:07:52 +01:00
fatfs_port.c
led.c
led.h
machine_adc.c
machine_bitstream.c
machine_i2c.c mimxrt: Replace Pin-config constants by a function call. 2022-01-27 16:53:30 +11:00
machine_led.c
machine_pin.c mimxrt/machine_pin: Change pin drive constants to DRIVE_x naming. 2022-03-08 22:30:33 +11:00
machine_pwm.c mimxrt/machine_pin: Change pin drive constants to DRIVE_x naming. 2022-03-08 22:30:33 +11:00
machine_rtc.c
machine_sdcard.c
machine_spi.c mimxrt: Allow to select cs0 or cs1 for SPI. 2022-01-27 16:53:30 +11:00
machine_timer.c
machine_uart.c mimxrt/machine_pin: Change pin drive constants to DRIVE_x naming. 2022-03-08 22:30:33 +11:00
machine_wdt.c
main.c py/runtime: Allow initialising sys.path/argv with defaults. 2021-12-18 00:08:07 +11:00
mimxrt_flash.c mimxrt: Use -Og instead of -O0 for DEBUG builds. 2021-12-14 08:07:52 +01:00
mimxrt_sdram.c
modmachine.c mimxrt: Refactor the reading of the machine id. 2021-12-14 08:07:52 +01:00
modmachine.h mimxrt: Support PWM using the FLEXPWM and QTMR modules. 2021-11-24 13:48:27 +11:00
modmimxrt.c
modmimxrt.h
moduos.c
modutime.c
mpconfigport.h ports: Consolidate inclusion of umachine module in built-ins. 2022-02-03 10:08:54 +11:00
mphalport.c mimxrt: Refactor the reading of the machine id. 2021-12-14 08:07:52 +01:00
mphalport.h mimxrt: Refactor the reading of the machine id. 2021-12-14 08:07:52 +01:00
mpnetworkport.c
network_lan.c mimxrt: Add a driver for the DP83848 PHY device. 2021-12-14 08:07:52 +01:00
pendsv.c
pendsv.h
pin.c mimxrt/machine_pin: Change pin drive constants to DRIVE_x naming. 2022-03-08 22:30:33 +11:00
pin.h mimxrt/machine_pin: Change pin drive constants to DRIVE_x naming. 2022-03-08 22:30:33 +11:00
qstrdefsport.h
sdcard.c mimxrt/machine_pin: Change pin drive constants to DRIVE_x naming. 2022-03-08 22:30:33 +11:00
sdcard.h
systick.c
systick.h
ticks.c mimxrt: Enable ticks_cpu at boot time for NDEBUG builds only. 2021-12-14 08:07:52 +01:00
ticks.h
tusb_config.h
tusb_port.c mimxrt: Add USB ID elements. 2022-01-27 17:05:34 +11:00

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