From 10aeb8ea8b183394cebc0033f048f49f4262b57d Mon Sep 17 00:00:00 2001 From: Gerhard Sittig Date: Mon, 20 Feb 2017 21:37:05 +0100 Subject: all decoders: introduce a reset() method Move initialization code of protocol decoders from the constructor to a new reset() helper method. The libsigrokdecode backend could run this method several times to clear the decoder's internal state, before new data from another acquisition gets fed to decode() calls. --- decoders/morse/pd.py | 3 +++ 1 file changed, 3 insertions(+) (limited to 'decoders/morse') diff --git a/decoders/morse/pd.py b/decoders/morse/pd.py index 588394d..a1e3c23 100644 --- a/decoders/morse/pd.py +++ b/decoders/morse/pd.py @@ -137,6 +137,9 @@ class Decoder(srd.Decoder): annotation_rows = tuple((u, v, (i,)) for i, (u, v) in enumerate(annotations)) def __init__(self): + self.reset() + + def reset(self): self.samplerate = None def metadata(self, key, value): -- cgit v1.2.3-70-g09d2