summaryrefslogtreecommitdiff
path: root/decoders/ddc.py
diff options
context:
space:
mode:
Diffstat (limited to 'decoders/ddc.py')
-rw-r--r--decoders/ddc.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/decoders/ddc.py b/decoders/ddc.py
index 09f6844..c4978c9 100644
--- a/decoders/ddc.py
+++ b/decoders/ddc.py
@@ -45,7 +45,7 @@ class Decoder(sigrokdecode.Decoder):
self.state = None
def start(self, metadata):
- self.output_annotation = self.add(sigrokdecode.SRD_OUTPUT_ANNOTATION, 'ddc')
+ self.out_ann = self.add(sigrokdecode.SRD_OUTPUT_ANNOTATION, 'ddc')
def decode(self, start_sample, end_sample, i2c_data):
try:
@@ -69,6 +69,6 @@ class Decoder(sigrokdecode.Decoder):
if cmd == 'DATA_READ':
# there shouldn't be anything but data reads on this
# address, so ignore everything else
- self.put(start_sample, end_sample, self.output_annotation,
+ self.put(start_sample, end_sample, self.out_ann,
[0, ["0x%.2x" % data]])