diff options
author | Uwe Hermann <uwe@hermann-uwe.de> | 2019-11-29 22:49:04 +0100 |
---|---|---|
committer | Uwe Hermann <uwe@hermann-uwe.de> | 2019-11-29 22:49:04 +0100 |
commit | 9d09d6eddd838dc7720118a13772b980107c7399 (patch) | |
tree | fde30127cfd60657882f2cfbccc0aedf03028df2 /decoders/sda2506 | |
parent | 1865f48de72cebc0c8031bce8e5aaa2a3e1c5092 (diff) | |
download | libsigrokdecode-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.py | 2 |
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,)), ) |