diff options
Diffstat (limited to 'decoders/transitioncounter.py')
-rw-r--r-- | decoders/transitioncounter.py | 6 |
1 files 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)]]) |