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/mxc6225xu/pd.py | 3 +++ 1 file changed, 3 insertions(+) (limited to 'decoders/mxc6225xu') diff --git a/decoders/mxc6225xu/pd.py b/decoders/mxc6225xu/pd.py index 34482cd..1e90455 100644 --- a/decoders/mxc6225xu/pd.py +++ b/decoders/mxc6225xu/pd.py @@ -72,6 +72,9 @@ class Decoder(srd.Decoder): ) def __init__(self): + self.reset() + + def reset(self): self.state = 'IDLE' def start(self): -- cgit v1.2.3-70-g09d2