micropython/ports/mimxrt
robert-hh 61b7c098b9 mimxrt/machine_bitstream: Add bitstream function to machine module.
Following the code example for ESP32 of Jim Mussard.

As a side effect:
- mp_hal_ticks_cpu() was implemented,
- mp_hal_get_cpu_freq() and mp_hal_ticks_cpu_init() were added and used.
- mp_hal_pin_high() and mp_hal_pin_low() were changed for symmetry
2021-09-10 13:32:53 +10:00
..
boards mimxrt/sdcard: Implement SDCard driver. 2021-09-07 20:45:33 +02:00
hal mimxrt: Add support for Hyperflash chips. 2021-07-31 16:25:40 +10:00
modules mimxrt/sdcard: Implement SDCard driver. 2021-09-07 20:45:33 +02:00
Makefile mimxrt/machine_bitstream: Add bitstream function to machine module. 2021-09-10 13:32:53 +10:00
README.md
board_init.c mimxrt/sdcard: Implement SDCard driver. 2021-09-07 20:45:33 +02:00
dma_channel.c
dma_channel.h
fatfs_port.c mimxrt/sdcard: Implement SDCard driver. 2021-09-07 20:45:33 +02:00
led.c
led.h
machine_adc.c
machine_bitstream.c mimxrt/machine_bitstream: Add bitstream function to machine module. 2021-09-10 13:32:53 +10:00
machine_i2c.c mimxrt/machine_i2c: Add hardware-based machine.I2C to machine module. 2021-07-15 00:36:31 +10:00
machine_led.c
machine_pin.c mimxrt/machine_pin: Implement ioctl for Pin. 2021-08-16 15:03:50 +10:00
machine_rtc.c
machine_sdcard.c mimxrt/sdcard: Implement SDCard driver. 2021-09-07 20:45:33 +02:00
machine_spi.c
machine_timer.c
machine_uart.c
main.c
mimxrt_flash.c mimxrt: Add support for Hyperflash chips. 2021-07-31 16:25:40 +10:00
modmachine.c mimxrt/machine_bitstream: Add bitstream function to machine module. 2021-09-10 13:32:53 +10:00
modmachine.h mimxrt/sdcard: Implement SDCard driver. 2021-09-07 20:45:33 +02:00
modmimxrt.c
modmimxrt.h
moduos.c mimxrt/sdcard: Implement SDCard driver. 2021-09-07 20:45:33 +02:00
modutime.c
mpconfigport.h mimxrt/machine_bitstream: Add bitstream function to machine module. 2021-09-10 13:32:53 +10:00
mphalport.c
mphalport.h mimxrt/machine_bitstream: Add bitstream function to machine module. 2021-09-10 13:32:53 +10:00
pin.c
pin.h mimxrt/sdcard: Implement SDCard driver. 2021-09-07 20:45:33 +02:00
qstrdefsport.h
sdcard.c mimxrt/sdcard: Implement SDCard driver. 2021-09-07 20:45:33 +02:00
sdcard.h mimxrt/sdcard: Implement SDCard driver. 2021-09-07 20:45:33 +02:00
ticks.c
ticks.h
tusb_config.h
tusb_port.c ports: Rename USBD_VID/PID config macros to MICROPY_HW_USB_VID/PID. 2021-08-07 23:13:55 +10:00

README.md

Port of MicroPython to NXP iMX RT 10xx

Currently supports Teensy 4.0 and the i.MX RT1010 EVK board.

Features:

  • REPL over USB VCP
  • machine.Pin

Known issues:

  • pyboard.py doesn't work with files larger than 64 bytes
  • machine.Pin class currently does not support GPIOMUX option of i.MX RT101x variants

TODO:

  • Enable TCM
  • Peripherals (LED, Timers, etc)