Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

mimxrt: A set of small bug fixes, additions and enhancements. #16876

Merged
merged 9 commits into from
Mar 25, 2025

Conversation

robert-hh
Copy link
Contributor

@robert-hh robert-hh commented Mar 7, 2025

Summary

  • Add the method adc.read_uv(). Tested with a MIMXRT1020_EVK and a MIMXRT1176_EVK board.
  • Enable exFAT support. Tested with MIMXRT1176_EVK, MIMXRT1061 (Teensy 4.1) and MIMXRT1011 (Olimex RT1010).
  • Enable PPP support for all boards with LWIP. Currently all boards with Ethernet support. PPP can be enabled for other boards without Ethernet like the Teensy 4.0 and sufficient RAM as well in a second step. Enabling for MIMXRT101x boards is hardly possible due to the large RAM demand of LWIP. Tested with a Teensy 4.1 and a MIMXRT1020_EVK board and a SimCom A7608 GPRS/LTE modem.
  • Remove duplicate UART init and make UART IRQ optional.
  • Use a safe common flash CS timing. The flash devices used by the MIMXRT board are specified either with 3ns or 5 ns CS setup and hold time. Since a single configuration file is used for all boards, use 5ns instead of 3ns to be safe, even if there were no problems so far.
  • Fix a bug in UART buffer allocation.The buffer would be reset on every call to uart.init(). If no sizes were given, the buffer would be set to the default size 256. That made problems e.g. with PPP. Also, the RX buffer was not stored to the UART object and not visible to GC as being in use. Then a gc.collect() would eventually free the buffer. The fix was tested with the PPP support test, allowing incoming messages larger than 256 bytes to be handled reliably.
  • Add the timeout=xxx keyword argument to the I2C constructor. It will check for bus stuck low conditions. The default value is 100ms. Tested with a Teensy 4.1 board and by building the firmware for all boards.
  • Support default device IDs for I2C, SPI and UART. Since all boards are configured to have a I2C(0), SPI(0) and UART(1), these can be taken as default devices, allowing the instantiation of I2C(), SPI(), UART(). Tested with a Teensy 4.1 board and by building the firmware for all boards.
  • Update the deploy instructions when using the .uf2 bootloader. They were fine, but maybe a little bit too concise.

Testing

See above.

Copy link

github-actions bot commented Mar 7, 2025

Code size report:

   bare-arm:    +0 +0.000% 
minimal x86:    +0 +0.000% 
   unix x64:    +0 +0.000% standard
      stm32:    +0 +0.000% PYBV10
     mimxrt: +5460 +1.487% TEENSY40
        rp2:    +0 +0.000% RPI_PICO_W
       samd:    +0 +0.000% ADAFRUIT_ITSYBITSY_M4_EXPRESS
  qemu rv32:    +0 +0.000% VIRT_RV32

@robert-hh robert-hh changed the title mimxrt: A set of small additions and enhancements. mimxrt: A set of small bug fixies, additions and enhancements. Mar 9, 2025
@robert-hh robert-hh force-pushed the mimxrt_sp18 branch 2 times, most recently from 1e443f5 to b74a55d Compare March 17, 2025 17:50
@robert-hh robert-hh changed the title mimxrt: A set of small bug fixies, additions and enhancements. mimxrt: A set of small bug fixes, additions and enhancements. Mar 24, 2025
Matching the generic documentation.

Signed-off-by: robert-hh <[email protected]>
There is plenty of room in the MIMXRT board flash, so it can be enabled.

Tested with:
- MIMXRT1176_EVK
- MIMXRT1061 (Teensy 4.1)
- MIMXRT1010 (Olimex RT1010)

Signed-off-by: robert-hh <[email protected]>
PPP is now enabled on all boards with Ethernet support.  PPP could be
enabled for other boards without Ethernet like the Teensy 4.0 as well in a
second step.  Enabling for MIMXRT101x boards is hardly possible due to the
large RAM demand of lwIP.

Tested with a Teensy 4.1 board and a SimCom A7608 GPRS/LTE modem.

Signed-off-by: robert-hh <[email protected]>
Changes:
- The duplicate LPUART_Init call was not needed, just an edit fail.
- Allow a port to disable UART.irq().  Some code for configuration stays,
  but the respective UART IRQ is not enabled.  Calling uart.irq() will
  cause an exception by extmod/machine_uart.c.

Signed-off-by: robert-hh <[email protected]>
The flash devices used by the MIMXRT board are specified either with 3ns or
5 ns CS setup and hold time.  Since a single configuration file is used for
all boards, use 5ns instead of 3ns to be safe, even if there were no
problems so far.

Signed-off-by: robert-hh <[email protected]>
The buffer would be reset on every call to `uart.init()`.  If no sizes were
given, the buffer would be set to the default size 256.  That made problems
e.g. with PPP.  Also, the RX buffer was not stored at the UART object and
not visible to GC as being in use.  Then a `gc.collect()` would eventually
free the buffer.

This commit fixes those issues, keeping the buffer size if not deliberately
changed and allocating new buffers only if the size was changed.

Signed-off-by: robert-hh <[email protected]>
Set the default timeout to 50000 us.  The default used to be 0, causing the
NXP I2C driver to silently stop working in case of a non-responding device.

Signed-off-by: robert-hh <[email protected]>
Since all boards are configured to have a I2C(0), SPI(0) and UART(1), these
can be set as default devices, allowing the instantiation of I2C(), SPI(),
UART() without an id argument.

Signed-off-by: robert-hh <[email protected]>
Make the final step of the deploy more detailed.

Signed-off-by: robert-hh <[email protected]>
@dpgeorge dpgeorge merged commit 274c8c4 into micropython:master Mar 25, 2025
9 checks passed
@robert-hh
Copy link
Contributor Author

Thank you.

@robert-hh robert-hh deleted the mimxrt_sp18 branch March 25, 2025 11:50
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants