drivers/nrf24l01: Fix SPI phase setting to match specs of nRF chip.

Addresses issue #1466.
axtls-deplib
Damien George 2015-09-18 13:00:12 +00:00
parent 011c7f5718
commit b0c08c8c17
1 changed files with 1 additions and 1 deletions

View File

@ -53,7 +53,7 @@ class NRF24L01:
assert payload_size <= 32
# init the SPI bus and pins
spi.init(spi.MASTER, baudrate=4000000, polarity=0, phase=1, firstbit=spi.MSB)
spi.init(spi.MASTER, baudrate=4000000, polarity=0, phase=0, firstbit=spi.MSB)
cs.init(cs.OUT_PP, cs.PULL_NONE)
ce.init(ce.OUT_PP, ce.PULL_NONE)