diff options
author | Joel Holdsworth <joel@airwebreathe.org.uk> | 2013-12-28 09:17:02 +0100 |
---|---|---|
committer | Joel Holdsworth <joel@airwebreathe.org.uk> | 2013-12-28 09:17:02 +0100 |
commit | 31f1a29687604b8da5a4a3c46a72f82fc783947b (patch) | |
tree | 71055a59245f7bcad1caa5552b10bc0dea1ebd8e /decoders/mxc6225xu/pd.py | |
parent | 1db7e477b3a63a837e478dc12f7a8026dcca4ef1 (diff) | |
download | libsigrokdecode-31f1a29687604b8da5a4a3c46a72f82fc783947b.tar.gz libsigrokdecode-31f1a29687604b8da5a4a3c46a72f82fc783947b.zip |
mxc6225xu: Replace I2C with I²C
Diffstat (limited to 'decoders/mxc6225xu/pd.py')
-rw-r--r-- | decoders/mxc6225xu/pd.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/decoders/mxc6225xu/pd.py b/decoders/mxc6225xu/pd.py index 8b119e8..4a7e666 100644 --- a/decoders/mxc6225xu/pd.py +++ b/decoders/mxc6225xu/pd.py @@ -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' |