diff options
Diffstat (limited to 'decoders/modbus')
-rw-r--r-- | decoders/modbus/pd.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/decoders/modbus/pd.py b/decoders/modbus/pd.py index 2404312..d2307b9 100644 --- a/decoders/modbus/pd.py +++ b/decoders/modbus/pd.py @@ -847,6 +847,9 @@ class Decoder(srd.Decoder): ) def __init__(self): + self.reset() + + def reset(self): self.ADUSc = None # Start off with empty slave -> client ADU. self.ADUCs = None # Start off with empty client -> slave ADU. |