I noticed in the release notes for version 4.4.3 of the firmware, it says ‘Add DMA utils’. What features can utilize DMA at the Python level? The only ones I know of are DAC and I2C. DMA transmissions for UART and SPI would also be very useful, but it seems that even MicroPython doesn’t support them. You have DMA support for SPI in your LCD library; will that be exposed at the Python level for us to use?
The UART and I2C and SPI driver automatically use DMA if you send the data from a DMA valid memory. E.g. the frame buffer, not the MicroPython heap which can’t be accessed by the DMA controllers.
This changes depending on what MCU you are on, but, in general, DMA support is automatic if it can work.