]> sigrok.org Git - libsigrokdecode.git/blobdiff - decoders/mxc6225xu/pd.py
mxc6225xu: Replace I2C with I²C
[libsigrokdecode.git] / decoders / mxc6225xu / pd.py
index de7efafc9bdab7f83eb46fadda50d592267c9e3e..4a7e666f38ad673bd04c24957f022be43f2168c7 100644 (file)
@@ -86,9 +86,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 putx(self, data):
         self.put(self.ss, self.es, self.out_ann, data)
 
@@ -167,12 +164,12 @@ class Decoder(srd.Decoder):
     def decode(self, ss, es, data):
         cmd, databyte = data
 
-        # Store the start/end samples of this I2C packet.
+        # Store the start/end samples of this I²C packet.
         self.ss, self.es = ss, es
 
         # State machine.
         if self.state == 'IDLE':
-            # Wait for an I2C START condition.
+            # Wait for an I²C START condition.
             if cmd != 'START':
                 return
             self.state = 'GET SLAVE ADDR'