diff options
author | Bert Vermeulen <bert@biot.com> | 2013-11-14 21:56:21 +0100 |
---|---|---|
committer | Bert Vermeulen <bert@biot.com> | 2013-11-15 22:05:55 +0100 |
commit | 0169f19c53e195df2f96c4df731ad3214c59e20a (patch) | |
tree | d192b3d1f9d817764e96232863d221f7f91dd91e /decoders/uart | |
parent | 0309c15a6990f57fbbb27d6a77957b1282163f06 (diff) | |
download | libsigrokdecode-0169f19c53e195df2f96c4df731ad3214c59e20a.tar.gz libsigrokdecode-0169f19c53e195df2f96c4df731ad3214c59e20a.zip |
Drop obsolete report() method.
Diffstat (limited to 'decoders/uart')
-rw-r--r-- | decoders/uart/pd.py | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/decoders/uart/pd.py b/decoders/uart/pd.py index 8902780..f010480 100644 --- a/decoders/uart/pd.py +++ b/decoders/uart/pd.py @@ -141,9 +141,6 @@ class Decoder(srd.Decoder): # The width of one UART bit in number of samples. self.bit_width = float(self.samplerate) / float(self.options['baudrate']) - def report(self): - pass - # Return true if we reached the middle of the desired bit, false otherwise. def reached_bit(self, rxtx, bitnum): # bitpos is the samplenumber which is in the middle of the |