diff options
Diffstat (limited to 'decoders')
-rw-r--r-- | decoders/i2s/__init__.py | 2 | ||||
-rw-r--r-- | decoders/i2s/pd.py | 6 |
2 files changed, 4 insertions, 4 deletions
diff --git a/decoders/i2s/__init__.py b/decoders/i2s/__init__.py index 84abe96..e59ca96 100644 --- a/decoders/i2s/__init__.py +++ b/decoders/i2s/__init__.py @@ -19,7 +19,7 @@ ## ''' -I2S protocol decoder. +I²S protocol decoder. Documentation: http://www.nxp.com/acrobat_download/various/I2SBUS.pdf diff --git a/decoders/i2s/pd.py b/decoders/i2s/pd.py index ea147de..705e4b9 100644 --- a/decoders/i2s/pd.py +++ b/decoders/i2s/pd.py @@ -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): |