We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b0500d9 commit 2ca694aCopy full SHA for 2ca694a
1 file changed
tests/test_spi.py
@@ -12,7 +12,7 @@ def test_spi_library_available():
12
def test_spi_open():
13
14
spi = spidev.SpiDev()
15
- spi.open(0,1) #SPI bus 0, device 0
+ spi.open(0,1) #SPI bus 0, device 1
16
17
spi.max_speed_hz = 500000
18
@@ -25,7 +25,7 @@ def test_spi_open():
25
def test_spi_transfer():
26
27
28
- spi.open(0,0)
+ spi.open(0,1)
29
30
31
0 commit comments