diff options
Diffstat (limited to 'decoders/usb')
-rw-r--r-- | decoders/usb/usb.py | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/decoders/usb/usb.py b/decoders/usb/usb.py index 529868e..c5b6a2e 100644 --- a/decoders/usb/usb.py +++ b/decoders/usb/usb.py @@ -166,12 +166,12 @@ class Decoder(srd.Decoder): if sym == self.sym: continue - if self.scount == 1: - # We ignore single sample width "pulses", i.e., symbol changes - # (D+/D- line changes). I sometimes get these with the OLS. - self.sym = sym - self.scount = 0 - continue + # if self.scount == 1: + # # We ignore single sample width "pulses", i.e., symbol changes + # # (D+/D- line changes). I sometimes get these with the OLS. + # self.sym = sym + # self.scount = 0 + # continue # How many bits since the last transition? if self.packet != '' or self.sym != 'J': |