diff options
Diffstat (limited to 'decoders/rtc8564')
-rw-r--r-- | decoders/rtc8564/pd.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/decoders/rtc8564/pd.py b/decoders/rtc8564/pd.py index 16bbd65..6f23e07 100644 --- a/decoders/rtc8564/pd.py +++ b/decoders/rtc8564/pd.py @@ -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' |