summaryrefslogtreecommitdiff
path: root/decoders
diff options
context:
space:
mode:
authorUwe Hermann <uwe@hermann-uwe.de>2014-10-12 15:13:50 +0200
committerUwe Hermann <uwe@hermann-uwe.de>2014-10-12 15:13:50 +0200
commited758f091ebb31380868041da87812d3e4ea4a94 (patch)
treeee3bab6ef906da61cfc843f812392f53e92e5e69 /decoders
parentcda1352a7ce0248e6db1996d9ddb9dbee2f91e8b (diff)
downloadlibsigrokdecode-ed758f091ebb31380868041da87812d3e4ea4a94.tar.gz
libsigrokdecode-ed758f091ebb31380868041da87812d3e4ea4a94.zip
am230x: Use slightly more liberal timing values.
This seems to be required at least for some AM2301 and DHT11 sensors.
Diffstat (limited to 'decoders')
-rw-r--r--decoders/am230x/pd.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/decoders/am230x/pd.py b/decoders/am230x/pd.py
index 02f8af2..5375ab2 100644
--- a/decoders/am230x/pd.py
+++ b/decoders/am230x/pd.py
@@ -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},