From 1063646c74946527c6e8d23790f6fd8501f5665c Mon Sep 17 00:00:00 2001 From: Bert Vermeulen Date: Sun, 29 Jan 2012 20:13:43 +0100 Subject: [PATCH 1/1] edid: move PD docstring to __init__.py also minor code cleanups --- decoders/edid/__init__.py | 18 ++++++++++++++++++ decoders/edid/edid.py | 15 +++++---------- 2 files changed, 23 insertions(+), 10 deletions(-) diff --git a/decoders/edid/__init__.py b/decoders/edid/__init__.py index f14c462..d892e60 100644 --- a/decoders/edid/__init__.py +++ b/decoders/edid/__init__.py @@ -18,5 +18,23 @@ ## Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA ## +''' +EDID 1.3 structure decoder. + +The three-character vendor ID as specified in the EDID standard refers to +a Plug and Play ID (PNPID). The list of PNPID assignments is done by Microsoft. +More information is available on this page: + + http://msdn.microsoft.com/en-us/windows/hardware/gg463195 + +The 'pnpids.txt' file included with this protocol decoder is derived from +the list of assignments downloadable from that page. It was retrieved in +January 2012. + +More information on EDID is available here: + + https://en.wikipedia.org/wiki/Extended_display_identification_data +''' + from .edid import * diff --git a/decoders/edid/edid.py b/decoders/edid/edid.py index b3ca128..b575f46 100644 --- a/decoders/edid/edid.py +++ b/decoders/edid/edid.py @@ -17,15 +17,9 @@ ## along with this program; if not, see . ## -''' -EDID 1.3 structure decoder. - -Details: -https://en.wikipedia.org/wiki/Extended_display_identification_data -''' - # TODO: # - EDID < 1.3 +# - add short annotations # - Signal level standard field in basic display parameters block # - Additional color point descriptors # - Additional standard timing descriptors @@ -34,6 +28,7 @@ https://en.wikipedia.org/wiki/Extended_display_identification_data import sigrokdecode as srd import os + EDID_HEADER = [0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00] OFF_VENDOR = 8 OFF_VERSION = 18 @@ -45,7 +40,6 @@ OFF_DET_TIMING = 54 OFF_NUM_EXT = 126 OFF_CHECKSUM = 127 - # Pre-EDID established timing modes est_modes = [ "720x400@70Hz", @@ -79,6 +73,7 @@ xy_ratio = [ ANN_FIELDS = 0 ANN_SECTIONS = 1 + class Decoder(srd.Decoder): api_version = 1 id = 'edid' @@ -161,7 +156,7 @@ class Decoder(srd.Decoder): self.put(self.sn[start][0], self.sn[end][1], self.out_ann, [ANN_FIELDS, [annotation]]) def lookup_pnpid(self, pnpid): - pnpid_file = os.path.dirname(__file__) + '/pnpids.txt' + pnpid_file = os.path.join(os.path.dirname(__file__), 'pnpids.txt') if os.path.exists(pnpid_file): for line in open(pnpid_file).readlines(): if line.find(pnpid + ';') == 0: @@ -461,7 +456,7 @@ class Decoder(srd.Decoder): if self.cache[i] != 0 and self.cache[i+1] != 0: self.decode_detailed_timing(i) else: - if self.cache[i+2] == 0 or self.cache[i+4] == 0 or True: + if self.cache[i+2] == 0 or self.cache[i+4] == 0: self.decode_descriptor(i) -- 2.30.2