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
//! Look at the following table to determine which driver best suits your requirements:
//!
//! | | | SpiDeviceDriver::new | SpiDeviceDriver::new (no CS) | SpiSoftCsDeviceDriver::new | SpiBusDriver::new |
//! |---|------------------|----------------------|------------------------------|----------------------------|-------------------|
//! | | Managed CS | Hardware | N | Software triggered | N |
//! | | 1 device | Y | Y | Y | Y |
//! | | 1-3 devices | Y | N | Y | N |
//! | | 4-6 devices | Only on esp32CX | N | Y | N |
//! | | More than 6 | N | N | Y | N |
//! | | DMA | N | N | N | N |
//! | | Polling transmit | Y | Y | Y | Y |
//! | | ISR transmit | Y | Y | Y | Y |
//! | | Async support* | Y | Y | Y | Y |
//!
//! * True non-blocking async possible only when all devices attached to the SPI bus are used in async mode (i.e. calling methods `xxx_async()`
The text was updated successfully, but these errors were encountered:
DMA 'N' need change to 'Y'?
The text was updated successfully, but these errors were encountered: