]> sigrok.org Git - libsigrokdecode.git/commitdiff
Do some more I2C to I²C changes.
authorUwe Hermann <redacted>
Sat, 28 Dec 2013 14:15:06 +0000 (15:15 +0100)
committerUwe Hermann <redacted>
Sat, 28 Dec 2013 14:15:06 +0000 (15:15 +0100)
decoders/ds1307/pd.py
decoders/nunchuk/pd.py
decoders/rtc8564/pd.py
decoders/xfp/__init__.py

index bb904e7e4d17d0f9cddd91c744bca2a02d016039..01aaf6bc46a371e601d11f059978e6dd2e6f673f 100644 (file)
@@ -103,12 +103,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'
index 5c719cbd79ccdd18bb827eabbe31ef02889a7516..a34b68fcebee2f461202191bec5c9a91cd9d71b0 100644 (file)
@@ -52,11 +52,11 @@ class Decoder(srd.Decoder):
         self.out_ann = self.register(srd.OUTPUT_ANN)
 
     def putx(self, data):
-        # Helper for annotations which span exactly one I2C packet.
+        # Helper for annotations which span exactly one I²C packet.
         self.put(self.ss, self.es, self.out_ann, data)
 
     def putb(self, data):
-        # Helper for annotations which span a block of I2C packets.
+        # Helper for annotations which span a block of I²C packets.
         self.put(self.block_start_sample, self.block_end_sample,
                  self.out_ann, data)
 
@@ -157,12 +157,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'
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'
index 928fbc73dff847eebff3e62749f4bf0ca76ff29b..627f07b927955d0c5882e8115d78c9ecedb6d044 100644 (file)
 ##
 
 '''
-XFP I2C management interface structure decoder.
+XFP I²C management interface structure decoder.
 
-XFP modules include an I2C interface, used to monitor and control various
-aspects of the module. The specification defines an I2C slave at address
+XFP modules include an I²C interface, used to monitor and control various
+aspects of the module. The specification defines an I²C slave at address
 0x50 (0xa0) which returns 128 bytes of a standard structure ("lower memory"),
 and, after setting a table number in lower memory, a set of 256 "higher
 memory" tables, which can be mapped to different subdevices on the XFP.