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
I was testing using the SPI to drive a smart LED where I only needed the MOSI pin, so I set the sck pin to None.
However if one does this the SPI gets stuck in nrf_hal_common::spim::Spim<T>::do_spi_dma_transfer.
Adding back a clock pin does make it work again.
I'm not sure why this happens, and I can't find a reference in the datasheet to this behavior.
Does anyone know how to get this to work without having to have an SCK pin defined?
The text was updated successfully, but these errors were encountered:
Hi,
I was testing using the SPI to drive a smart LED where I only needed the MOSI pin, so I set the
sck
pin toNone
.However if one does this the SPI gets stuck in
nrf_hal_common::spim::Spim<T>::do_spi_dma_transfer
.Adding back a clock pin does make it work again.
I'm not sure why this happens, and I can't find a reference in the datasheet to this behavior.
Does anyone know how to get this to work without having to have an SCK pin defined?
The text was updated successfully, but these errors were encountered: