projects
/
libsigrokdecode.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
|
inline
| side by side (parent:
6fff00e
)
edid: properly deal with leading I2C crud + small fixes
author
Bert Vermeulen
<bert@biot.com>
Mon, 30 Jan 2012 23:48:07 +0000
(
00:48
+0100)
committer
Bert Vermeulen
<bert@biot.com>
Mon, 30 Jan 2012 23:48:07 +0000
(
00:48
+0100)
decoders/edid/edid.py
patch
|
blob
|
history
diff --git
a/decoders/edid/edid.py
b/decoders/edid/edid.py
index b575f46adcc97537a94dd124eeeb72f4a61ff68b..6d53bf1a609baac4d2d4b894d1e0ce99019bc37b 100644
(file)
--- a/
decoders/edid/edid.py
+++ b/
decoders/edid/edid.py
@@
-107,6
+107,8
@@
class Decoder(srd.Decoder):
self.cnt += 1
self.sn.append( [ss, es] )
self.cache.append(data)
self.cnt += 1
self.sn.append( [ss, es] )
self.cache.append(data)
+ # debug
+# self.put(ss, es, self.out_ann, [0, ["%d: [%.2x]" % (self.cnt, data)]])
if self.state is None:
# Wait for the EDID header
if self.state is None:
# Wait for the EDID header
@@
-115,6
+117,7
@@
class Decoder(srd.Decoder):
# Throw away any garbage before the header
self.sn = self.sn[-8:]
self.cache = self.cache[-8:]
# Throw away any garbage before the header
self.sn = self.sn[-8:]
self.cache = self.cache[-8:]
+ self.cnt = 8
self.state = 'edid'
self.put(ss, es, self.out_ann, [0, ["EDID header"]])
elif self.state == 'edid':
self.state = 'edid'
self.put(ss, es, self.out_ann, [0, ["EDID header"]])
elif self.state == 'edid':
@@
-401,7
+404,7
@@
class Decoder(srd.Decoder):
+ (posneg[sync2 & 0x01]) + ')'
elif sync == 0x03:
features += 'digital separate ('
+ (posneg[sync2 & 0x01]) + ')'
elif sync == 0x03:
features += 'digital separate ('
- features += 'Vsync polarity ' + (posneg[
sync2
>> 1])
+ features += 'Vsync polarity ' + (posneg[
(sync2 & 0x02)
>> 1])
features += ', Hsync polarity ' + (posneg[sync2 & 0x01])
features += ')'
features += ', '
features += ', Hsync polarity ' + (posneg[sync2 & 0x01])
features += ')'
features += ', '