]> sigrok.org Git - libsigrokdecode.git/commitdiff
ir_nec: fix typo in STOP bit width
authorGerhard Sittig <redacted>
Sat, 1 Aug 2020 07:35:40 +0000 (09:35 +0200)
committerGerhard Sittig <redacted>
Sun, 30 Aug 2020 08:25:13 +0000 (10:25 +0200)
The 0.652ms STOP bit width must have been a typo (though consistent in
the previous implementation), it's not half of the 1.125ms ZERO symbol.

Notice that this is an incompatible change to the decoder implementation.
It affects the annotations for STOP bits and overall REMOTE button codes.

decoders/ir_nec/pd.py

index f5c479913c0258dcdba26dd6ef3391e2974e546c..dffe23eedbe5d48687c03d1230bd7ce5d715370d 100644 (file)
@@ -32,7 +32,7 @@ _TIME_LC   = 13.5   # leader code, in ms
 _TIME_RC   = 11.25  # repeat code, in ms
 _TIME_ONE  =  2.25  # one data bit, in ms
 _TIME_ZERO =  1.125 # zero data bit, in ms
-_TIME_STOP =  0.652 # stop bit, in ms
+_TIME_STOP =  0.562 # stop bit, in ms
 
 class SamplerateError(Exception):
     pass