diff options
Diffstat (limited to 'decoders/uart/pd.py')
-rw-r--r-- | decoders/uart/pd.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/decoders/uart/pd.py b/decoders/uart/pd.py index 16729cc..8993271 100644 --- a/decoders/uart/pd.py +++ b/decoders/uart/pd.py @@ -160,6 +160,9 @@ class Decoder(srd.Decoder): self.put(s - floor(halfbit), self.samplenum + ceil(halfbit), self.out_binary, data) def __init__(self): + self.reset() + + def reset(self): self.samplerate = None self.samplenum = 0 self.frame_start = [-1, -1] |