]> sigrok.org Git - libsigrokdecode.git/blobdiff - decoders/tlc5620/pd.py
All PDs: Drop unneeded comments.
[libsigrokdecode.git] / decoders / tlc5620 / pd.py
index 395267dedb883797ec58f13e97fab4511f4d759a..7a514e291331dbcfc6e6828f415417d46e13cd6e 100644 (file)
@@ -18,8 +18,6 @@
 ## Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301 USA
 ##
 
-# Texas Instruments TLC5620 protocol decoder
-
 import sigrokdecode as srd
 
 dacs = {
@@ -68,9 +66,6 @@ class Decoder(srd.Decoder):
         # self.out_proto = self.register(srd.OUTPUT_PYTHON)
         self.out_ann = self.register(srd.OUTPUT_ANN)
 
-    def report(self):
-        pass
-
     def handle_11bits(self):
         s = "".join(str(i) for i in self.bits[:2])
         self.dac_select = s = dacs[int(s, 2)]