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/i2cfilter/pd.py | 3 +++ 1 file changed, 3 insertions(+) (limited to 'decoders/i2cfilter') diff --git a/decoders/i2cfilter/pd.py b/decoders/i2cfilter/pd.py index af09c49..1dc7fd1 100644 --- a/decoders/i2cfilter/pd.py +++ b/decoders/i2cfilter/pd.py @@ -39,6 +39,9 @@ class Decoder(srd.Decoder): ) def __init__(self): + self.reset() + + def reset(self): self.curslave = -1 self.curdirection = None self.packets = [] # Local cache of I²C packets -- cgit v1.2.3-70-g09d2