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 have ported my avr code for NRF24L01 to ch32v003 with harware SPI. It's working nice. But I want to ask whether any one has used software SPI (bit banging) for NRF24L01. I tried to to do so but it's not working. Especially the transmit function is not working.
The text was updated successfully, but these errors were encountered:
I don't see why a software SPI would not be possible on a ch32v003. All it needs for that are functioning GPIO pins. There are lots of example codes like SoftSPI.cpp that you could port over, all it needs is pinMode, digitalWrite, digitalRead, and maybe a delay. Can you share the exact code with us? Have you tried scoping out the SPI signals this writes and reads?
Soft spi is working perfectly in other devices like memory card reader, shift registers etc. But specially in NRF24L01 it's not working and that too in transmitter mode. I will certainly share the code.
I have ported my avr code for NRF24L01 to ch32v003 with harware SPI. It's working nice. But I want to ask whether any one has used software SPI (bit banging) for NRF24L01. I tried to to do so but it's not working. Especially the transmit function is not working.
The text was updated successfully, but these errors were encountered: