summaryrefslogtreecommitdiff
path: root/decoders/dali
diff options
context:
space:
mode:
authorUwe Hermann <uwe@hermann-uwe.de>2017-03-18 23:03:17 +0100
committerUwe Hermann <uwe@hermann-uwe.de>2017-03-18 23:03:17 +0100
commita8933728e3bad0e34d743d9d38baba98f443b018 (patch)
tree0ed3f7eeba837c1776c5dac9ca6e40729d9cddd5 /decoders/dali
parent41b3732153c082f5a493514542e8963e6743b4e2 (diff)
downloadlibsigrokdecode-a8933728e3bad0e34d743d9d38baba98f443b018.tar.gz
libsigrokdecode-a8933728e3bad0e34d743d9d38baba98f443b018.zip
dali: Use a slightly better variable name.
Diffstat (limited to 'decoders/dali')
-rw-r--r--decoders/dali/pd.py22
1 files changed, 11 insertions, 11 deletions
diff --git a/decoders/dali/pd.py b/decoders/dali/pd.py
index eb76f73..5b801a1 100644
--- a/decoders/dali/pd.py
+++ b/decoders/dali/pd.py
@@ -66,7 +66,7 @@ class Decoder(srd.Decoder):
def start(self):
self.out_ann = self.register(srd.OUTPUT_ANN)
- self.old_ir = 1 if self.options['polarity'] == 'active-low' else 0
+ self.old_dali = 1 if self.options['polarity'] == 'active-low' else 0
def metadata(self, key, value):
if key == srd.SRD_CONF_SAMPLERATE:
@@ -205,44 +205,44 @@ class Decoder(srd.Decoder):
raise SamplerateError('Cannot decode without samplerate.')
bit = 0;
for (self.samplenum, pins) in data:
- self.ir = pins[0]
+ self.dali = pins[0]
# data.itercnt += 1
# data.logic_mask = 1
# data.cur_pos = self.samplenum
# data.edge_index = -1
if self.options['polarity'] == 'active-high':
- self.ir ^= 1 # Invert.
+ self.dali ^= 1 # Invert.
# State machine.
if self.state == 'IDLE':
# Wait for any edge (rising or falling).
- if self.old_ir == self.ir:
+ if self.old_dali == self.dali:
# data.exp_logic = self.exp_logic
# data.logic_mask = 1
# logic.cur_pos = self.samplenum
continue
self.edges.append(self.samplenum)
self.state = 'PHASE0'
- self.old_ir = self.ir
+ self.old_dali = self.dali
# Get the next sample point.
# self.nextSamplePoint = self.samplenum + int(self.halfbit / 2)
- self.old_ir = self.ir
- # bit = self.ir
+ self.old_dali = self.dali
+ # bit = self.dali
# data.itercnt += int((self.halfbit - 1) * 0.5)
continue
# if(self.samplenum == self.nextSamplePoint):
- # bit = self.ir
+ # bit = self.dali
# continue
- if (self.old_ir != self.ir):
+ if (self.old_dali != self.dali):
self.edges.append(self.samplenum)
elif (self.samplenum == (self.edges[-1] + int(self.halfbit * 1.5))):
self.edges.append(self.samplenum - int(self.halfbit * 0.5))
else:
continue
- bit = self.old_ir
+ bit = self.old_dali
if self.state == 'PHASE0':
self.phase0 = bit
self.state = 'PHASE1'
@@ -259,4 +259,4 @@ class Decoder(srd.Decoder):
# self.nextSamplePoint = self.edges[-1] + int(self.halfbit / 2)
- self.old_ir = self.ir
+ self.old_dali = self.dali