Search found 1 match
- Mon Oct 27, 2025 10:17 pm
- Forum: ESP-IDF
- Topic: SPI half duplex migration issues from ESP-IDF v4 to v5
- Replies: 7
- Views: 4224
Re: SPI half duplex migration issues from ESP-IDF v4 to v5
From reading the documentation spi_transaction_t::length should be the length of bytes that will be transmitted by the SPI driver (and spi_transaction_t::rxlength how many bytes will be received).
In the code which implements SPI reading ( cmt_spi3_read ) the (tx) length is set to 8 but nothing ...