summaryrefslogtreecommitdiff
path: root/decoders/sda2506
diff options
context:
space:
mode:
authorUwe Hermann <uwe@hermann-uwe.de>2019-11-29 22:49:04 +0100
committerUwe Hermann <uwe@hermann-uwe.de>2019-11-29 22:49:04 +0100
commit9d09d6eddd838dc7720118a13772b980107c7399 (patch)
treefde30127cfd60657882f2cfbccc0aedf03028df2 /decoders/sda2506
parent1865f48de72cebc0c8031bce8e5aaa2a3e1c5092 (diff)
downloadlibsigrokdecode-9d09d6eddd838dc7720118a13772b980107c7399.tar.gz
libsigrokdecode-9d09d6eddd838dc7720118a13772b980107c7399.zip
decoders: Use a slightly more consistent/logical annotation row setup.
Generally show "bits" and other smaller annotations in rows that come before "larger" annotations (in later rows).
Diffstat (limited to 'decoders/sda2506')
-rw-r--r--decoders/sda2506/pd.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/decoders/sda2506/pd.py b/decoders/sda2506/pd.py
index 782fd83..9ae5c01 100644
--- a/decoders/sda2506/pd.py
+++ b/decoders/sda2506/pd.py
@@ -46,8 +46,8 @@ class Decoder(srd.Decoder):
)
annotation_rows = (
('bits', 'Bits', (ann_cmdbit, ann_databit)),
- ('commands', 'Commands', (ann_cmd,)),
('data', 'Data', (ann_data,)),
+ ('commands', 'Commands', (ann_cmd,)),
('warnings', 'Warnings', (ann_warning,)),
)