]> sigrok.org Git - libsigrokdecode.git/blobdiff - decoders/mxc6225xu/pd.py
mxc6225xu: Replace I2C with I²C
[libsigrokdecode.git] / decoders / mxc6225xu / pd.py
index 8b119e8bb8670c104024680326bdb65e46070bfb..4a7e666f38ad673bd04c24957f022be43f2168c7 100644 (file)
@@ -164,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'