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/mdio/pd.py | 3 +++ 1 file changed, 3 insertions(+) (limited to 'decoders/mdio/pd.py') diff --git a/decoders/mdio/pd.py b/decoders/mdio/pd.py index 7c2fc5f..3580acc 100644 --- a/decoders/mdio/pd.py +++ b/decoders/mdio/pd.py @@ -62,6 +62,9 @@ class Decoder(srd.Decoder): ) def __init__(self): + self.reset() + + def reset(self): self.illegal_bus = 0 self.samplenum = -1 self.clause45_addr = -1 # Clause 45 is context sensitive. -- cgit v1.2.3-70-g09d2