]> sigrok.org Git - libsigrokdecode.git/commitdiff
spi: Fix annotation row ordering.
authorUwe Hermann <redacted>
Wed, 24 Apr 2019 20:00:02 +0000 (22:00 +0200)
committerUwe Hermann <redacted>
Wed, 24 Apr 2019 20:02:16 +0000 (22:02 +0200)
Use the same (more logical) order of having the "bits" annotation row
being the first one, which is also what pretty much all other PDs do.

decoders/spi/pd.py

index 8d0d6ae3a39a3d53b1851432984f20a23edf4b63..952b0666bb4c09826715f458fe8a286a3d866e7f 100644 (file)
@@ -112,11 +112,11 @@ class Decoder(srd.Decoder):
         ('mosi-transfer', 'MOSI transfer'),
     )
     annotation_rows = (
-        ('miso-data', 'MISO data', (0,)),
         ('miso-bits', 'MISO bits', (2,)),
+        ('miso-data', 'MISO data', (0,)),
         ('miso-transfer', 'MISO transfer', (5,)),
-        ('mosi-data', 'MOSI data', (1,)),
         ('mosi-bits', 'MOSI bits', (3,)),
+        ('mosi-data', 'MOSI data', (1,)),
         ('mosi-transfer', 'MOSI transfer', (6,)),
         ('other', 'Other', (4,)),
     )