]> sigrok.org Git - libsigrokdecode.git/commitdiff
am230x: Use slightly more liberal timing values.
authorUwe Hermann <redacted>
Sun, 12 Oct 2014 13:13:50 +0000 (15:13 +0200)
committerUwe Hermann <redacted>
Sun, 12 Oct 2014 13:13:50 +0000 (15:13 +0200)
This seems to be required at least for some AM2301 and DHT11 sensors.

decoders/am230x/pd.py

index 02f8af294059b63466e8ed0c312439f9217627cd..5375ab2bf5b1fb299518a69cf0c7856d38fcf870 100644 (file)
@@ -24,8 +24,8 @@ import sigrokdecode as srd
 timing = {
     'START LOW'     : {'min': 750, 'max': 25000},
     'START HIGH'    : {'min': 10, 'max': 10000},
-    'RESPONSE LOW'  : {'min': 70, 'max': 90},
-    'RESPONSE HIGH' : {'min': 70, 'max': 90},
+    'RESPONSE LOW'  : {'min': 50, 'max': 90},
+    'RESPONSE HIGH' : {'min': 50, 'max': 90},
     'BIT LOW'       : {'min': 45, 'max': 90},
     'BIT 0 HIGH'    : {'min': 20, 'max': 35},
     'BIT 1 HIGH'    : {'min': 65, 'max': 80},