You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
There are currently two main issues with the channel API.
Naming types that use DMA is more verbose/tedious than it should be, see can't declare type for esp_hal::lcd_cam::lcd::i8080::I8080 #1699. This applies to drivers that only use one half of the channel, i.e. LCD_CAM. (At the moment PARL_IO take the whole channel)
On hardware that uses GDMA (and not PDMA) you have to configure both channels at the same time. The APIs should let you separately configure the RX half and TX half of the peripheral. Also see this comment.
The text was updated successfully, but these errors were encountered:
This should include adding the Async/Blocking notation on the TX and RX portions - currently at least the LCD_CAM I8080 driver takes this in its constructor but there is no way for the compiler to know if its async or blocking. #1834 (comment)
There are currently two main issues with the channel API.
The text was updated successfully, but these errors were encountered: