From dbbee4bf6c71d7b3403e465a9dd481962fe7c77b Mon Sep 17 00:00:00 2001 From: Uwe Hermann Date: Sat, 14 Jan 2012 01:48:20 +0100 Subject: [PATCH] srd: Fix transitioncounter protocol decoder. --- decoders/transitioncounter.py | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/decoders/transitioncounter.py b/decoders/transitioncounter.py index 2247248..ded3a3d 100644 --- a/decoders/transitioncounter.py +++ b/decoders/transitioncounter.py @@ -33,7 +33,9 @@ class Decoder(srd.Decoder): outputs = ['transitioncounts'] probes = [] options = {} - annotations = [] + annotations = [ + ['TODO', 'TODO'], + ] def __init__(self, **kwargs): self.channels = -1 @@ -96,5 +98,5 @@ class Decoder(srd.Decoder): if outdata != []: # self.put(0, 0, self.out_proto, out_proto) - self.put(0, 0, self.out_ann, outdata) + self.put(0, 0, self.out_ann, [0, [str(outdata)]]) -- 2.30.2