]> sigrok.org Git - libsigrokdecode.git/blobdiff - decoders/can/pd.py
All PDs: Drop unneeded comments.
[libsigrokdecode.git] / decoders / can / pd.py
index 1495e5e7eaf26805f3c752aedc768605365746e5..13a4b24ea38ef24f826a5a324a432804fb75a1bb 100644 (file)
@@ -18,8 +18,6 @@
 ## Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301 USA
 ##
 
-# CAN protocol decoder
-
 import sigrokdecode as srd
 
 class Decoder(srd.Decoder):
@@ -73,9 +71,6 @@ class Decoder(srd.Decoder):
             self.bit_width = float(self.samplerate) / float(self.options['bitrate'])
             self.bitpos = (self.bit_width / 100.0) * self.options['sample_point']
 
-    def report(self):
-        pass
-
     # Generic helper for CAN bit annotations.
     def putg(self, ss, es, data):
         left, right = int(self.bitpos), int(self.bit_width - self.bitpos)