From a2d2aff27099449deb1a791b3adc05ee610861e6 Mon Sep 17 00:00:00 2001 From: Uwe Hermann Date: Sat, 14 Jan 2012 21:34:06 +0100 Subject: srd: I2C: No need for underscores in string cmds. --- decoders/ddc.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'decoders/ddc.py') diff --git a/decoders/ddc.py b/decoders/ddc.py index 9b5bc5f..395f72f 100644 --- a/decoders/ddc.py +++ b/decoders/ddc.py @@ -60,10 +60,10 @@ class Decoder(srd.Decoder): if self.state is None: # Wait for the DDC session to start. - if cmd in ('START', 'START_REPEAT'): + if cmd in ('START', 'START REPEAT'): self.state = 'start' elif self.state == 'start': - if cmd == 'ADDRESS_READ' and data == 80: + if cmd == 'ADDRESS READ' and data == 80: # 80 is the I2C slave address of a connected display, # so this marks the start of the DDC data transfer. self.state = 'transfer' @@ -71,7 +71,7 @@ class Decoder(srd.Decoder): # Got back to the idle state. self.state = None elif self.state == 'transfer': - if cmd == 'DATA_READ': + if cmd == 'DATA READ': # There shouldn't be anything but data reads on this # address, so ignore everything else. self.put(ss, es, self.out_ann, [0, ['0x%.2x' % data]]) -- cgit v1.2.3-70-g09d2