]> sigrok.org Git - libsigrokdecode.git/commitdiff
i2s: Replace I2S with I²S
authorJoel Holdsworth <redacted>
Sat, 28 Dec 2013 08:02:34 +0000 (09:02 +0100)
committerJoel Holdsworth <redacted>
Sat, 28 Dec 2013 08:04:53 +0000 (09:04 +0100)
decoders/i2s/__init__.py
decoders/i2s/pd.py

index 84abe96a72779aa3bdf490bb6947aadaf1e37391..e59ca96368f3901140f2d89060de7c8a0edaa8ec 100644 (file)
@@ -19,7 +19,7 @@
 ##
 
 '''
-I2S protocol decoder.
+I²S protocol decoder.
 
 Documentation:
 http://www.nxp.com/acrobat_download/various/I2SBUS.pdf
index ea147dec0369f11446468dc929a00e5bc4b20ee9..705e4b9a800271e7d290c5d50f76b56dfccb9ec4 100644 (file)
@@ -18,7 +18,7 @@
 ## Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301 USA
 ##
 
-# I2S protocol decoder
+# I²S protocol decoder
 
 import sigrokdecode as srd
 
@@ -38,7 +38,7 @@ Packet:
 class Decoder(srd.Decoder):
     api_version = 1
     id = 'i2s'
-    name = 'I2S'
+    name = 'I²S'
     longname = 'Integrated Interchip Sound'
     desc = 'Serial bus for connecting digital audio devices.'
     license = 'gplv2+'
@@ -93,7 +93,7 @@ class Decoder(srd.Decoder):
                 self.samplerate / (self.start_sample -
                 self.first_sample))
 
-        return 'I2S: %d %d-bit samples received at %sHz' % \
+        return 'I³S: %d %d-bit samples received at %sHz' % \
             (self.samplesreceived, self.wordlength, samplerate)
 
     def decode(self, ss, es, data):