Browse Source

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

Addresses issue #1466.
pull/1468/head
Damien George 9 years ago
parent
commit
b0c08c8c17
  1. 2
      drivers/nrf24l01/nrf24l01.py

2
drivers/nrf24l01/nrf24l01.py

@ -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)

Loading…
Cancel
Save