diff options
author | Uwe Hermann <uwe@hermann-uwe.de> | 2012-01-14 16:19:46 +0100 |
---|---|---|
committer | Uwe Hermann <uwe@hermann-uwe.de> | 2012-01-14 16:19:46 +0100 |
commit | 0c3089c1c49e51e588dd264abafb05efdd44d0c8 (patch) | |
tree | c4c0b2f6ee53991ee3cb32bfafaa81c2bbd32edc /decoders | |
parent | 238b4080f5de6e12f36d66c93e0fa8afb9688233 (diff) | |
download | libsigrokdecode-0c3089c1c49e51e588dd264abafb05efdd44d0c8.tar.gz libsigrokdecode-0c3089c1c49e51e588dd264abafb05efdd44d0c8.zip |
srd: SPI: Fix typo.
Diffstat (limited to 'decoders')
-rw-r--r-- | decoders/spi.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/decoders/spi.py b/decoders/spi.py index 2f692f0..7e64fcf 100644 --- a/decoders/spi.py +++ b/decoders/spi.py @@ -35,7 +35,7 @@ CPHA_1 = 1 # Data is valid on the falling clock edge # Bit order options MSB_FIRST = 0 -LSB_FIRST = 0 +LSB_FIRST = 1 # Annotation formats ANN_HEX = 0 |