]> sigrok.org Git - libsigrokdecode.git/blobdiff - decoders/rtc8564/pd.py
Do some more I2C to I²C changes.
[libsigrokdecode.git] / decoders / rtc8564 / pd.py
index 16bbd65a0827084e9c980b9047cbb72872b11a0d..6f23e07e83c06706b2905cff1925b3649eb3d88f 100644 (file)
@@ -144,12 +144,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'