]> sigrok.org Git - libsigrokdecode.git/commitdiff
ieee488: support optional parity for ATN commands (for HP gear)
authorGerhard Sittig <redacted>
Thu, 18 Mar 2021 18:14:54 +0000 (19:14 +0100)
committerGerhard Sittig <redacted>
Mon, 21 Jun 2021 07:40:50 +0000 (09:40 +0200)
HP gear is said to sometimes send commands (ATN asserted) with a parity.
Introduce an option to check and strip the MSB before interpretation.

Reported-By: Anders Gustafsson <redacted>
decoders/ieee488/pd.py

index 4531cb306bef6de710ebc17a4b15ab2a64135e4e..0451c14f4f0edb494e66a258278dd060cbd76b42 100644 (file)
@@ -288,6 +288,8 @@ class Decoder(srd.Decoder):
             'default': 'no', 'values': ('no', 'yes')},
         {'id': 'delim', 'desc': 'Payload data delimiter',
             'default': 'eol', 'values': ('none', 'eol')},
+        {'id': 'atn_parity', 'desc': 'ATN commands use parity',
+            'default': 'no', 'values': ('no', 'yes')},
     )
     annotations = (
         ('bit', 'IEC bit'),
@@ -486,6 +488,13 @@ class Decoder(srd.Decoder):
             upd_iec = False,
             py_type = None
             py_peers = False
+            if self.options['atn_parity'] == 'yes':
+                par = 1 if b & 0x80 else 0
+                b &= ~0x80
+                ones = bin(b).count('1') + par
+                if ones % 2:
+                    warn_texts = ['Command parity error', 'parity', 'PAR']
+                    self.emit_warn_ann(self.ss_raw, self.es_raw, warn_texts)
             is_cmd, is_unl, is_unt = _is_command(b)
             laddr = _is_listen_addr(b)
             taddr = _is_talk_addr(b)