I've searched around, but i couldn't find anything about how to use DMA with SPI master on a nRF5340 (and zephyr doesn't support DMA on nRF5340 right?). Can someone point me to some examples?
I've searched around, but i couldn't find anything about how to use DMA with SPI master on a nRF5340 (and zephyr doesn't support DMA on nRF5340 right?). Can someone point me to some examples?
I do believe all examples that use spi will by default use spi with easydma (SPIM) when used with the nRF5340, since you can find the dts files all use nrf-spim by default, ref:
https://github.com/nrfconnect/sdk-zephyr/blob/main/boards/arm/nrf5340dk_nrf5340/nrf5340dk_nrf5340_cpuapp.dts#L25
Kenneth
I do believe all examples that use spi will by default use spi with easydma (SPIM) when used with the nRF5340, since you can find the dts files all use nrf-spim by default, ref:
https://github.com/nrfconnect/sdk-zephyr/blob/main/boards/arm/nrf5340dk_nrf5340/nrf5340dk_nrf5340_cpuapp.dts#L25
Kenneth
I do believe all examples that use spi will by default use spi with easydma
Thats nice, i wonder if its the case with other peripherals as well.