]> sigrok.org Git - libsigrokdecode.git/commitdiff
uart: Remove an obsolete unused routine
authorGerhard Sittig <redacted>
Tue, 14 Mar 2017 14:33:07 +0000 (15:33 +0100)
committerGerhard Sittig <redacted>
Tue, 14 Mar 2017 18:26:09 +0000 (19:26 +0100)
decoders/uart/pd.py

index e767699250ce0ff70a8b5ce495816542ae1c15b8..070a2f419c3f108b63c7748b08e30e62f142f378 100644 (file)
@@ -199,12 +199,6 @@ class Decoder(srd.Decoder):
             return True
         return False
 
-    def reached_bit_last(self, rxtx, bitnum):
-        bitpos = self.frame_start[rxtx] + ((bitnum + 1) * self.bit_width)
-        if self.samplenum >= bitpos:
-            return True
-        return False
-
     def wait_for_start_bit(self, rxtx, old_signal, signal):
         # The start bit is always 0 (low). As the idle UART (and the stop bit)
         # level is 1 (high), the beginning of a start bit is a falling edge.