summaryrefslogtreecommitdiff
path: root/decoders/ds1307
diff options
context:
space:
mode:
Diffstat (limited to 'decoders/ds1307')
-rw-r--r--decoders/ds1307/pd.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/decoders/ds1307/pd.py b/decoders/ds1307/pd.py
index bb904e7..01aaf6b 100644
--- a/decoders/ds1307/pd.py
+++ b/decoders/ds1307/pd.py
@@ -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'