From: Uwe Hermann Date: Tue, 1 Jan 2013 18:11:13 +0000 (+0100) Subject: Small cosmetic/consistency fixes in the PDs. X-Git-Tag: libsigrokdecode-0.1.1~11 X-Git-Url: https://sigrok.org/gitweb/?p=libsigrokdecode.git;a=commitdiff_plain;h=9e1437a045ef0c7df7e847be148fac6b4c0bbb4b Small cosmetic/consistency fixes in the PDs. --- diff --git a/decoders/can/pd.py b/decoders/can/pd.py index 5733e18..a981b00 100644 --- a/decoders/can/pd.py +++ b/decoders/can/pd.py @@ -26,7 +26,7 @@ class Decoder(srd.Decoder): api_version = 1 id = 'can' name = 'CAN' - longname = 'Controller area network' + longname = 'Controller Area Network' desc = 'Field bus protocol for distributed realtime control.' license = 'gplv2+' inputs = ['logic'] diff --git a/decoders/edid/pd.py b/decoders/edid/pd.py index a03fe67..ba0e0be 100644 --- a/decoders/edid/pd.py +++ b/decoders/edid/pd.py @@ -81,8 +81,10 @@ class Decoder(srd.Decoder): longname = 'Extended Display Identification Data' desc = 'Data structure describing display device capabilities.' license = 'gplv3+' - inputs = ['ddc2'] + inputs = ['i2c'] outputs = ['edid'] + probes = [] + optional_probes = [] options = {} annotations = [ ['EDID fields', 'EDID structure fields'], diff --git a/decoders/maxim_ds28ea00/pd.py b/decoders/maxim_ds28ea00/pd.py index 026457e..10b198f 100644 --- a/decoders/maxim_ds28ea00/pd.py +++ b/decoders/maxim_ds28ea00/pd.py @@ -40,9 +40,9 @@ command = { class Decoder(srd.Decoder): api_version = 1 id = 'maxim_ds28ea00' - name = 'Maxim DS28EA00' + name = 'DS28EA00' longname = 'Maxim DS28EA00 1-Wire digital thermometer' - desc = '1-Wire digital thermometer with Sequence Detect and PIO' + desc = '1-Wire digital thermometer with Sequence Detect and PIO.' license = 'gplv2+' inputs = ['onewire_network'] outputs = ['maxim_ds28ea00'] diff --git a/decoders/usb_protocol/pd.py b/decoders/usb_protocol/pd.py index b1cd33b..586646e 100644 --- a/decoders/usb_protocol/pd.py +++ b/decoders/usb_protocol/pd.py @@ -99,7 +99,7 @@ class Decoder(srd.Decoder): id = 'usb_protocol' name = 'USB protocol' longname = 'Universal Serial Bus (LS/FS) protocol' - desc = 'USB 1.x (low-speed and full-speed) serial protocol.' + desc = 'USB (low-speed and full-speed) serial protocol.' license = 'gplv2+' inputs = ['usb_signalling'] outputs = ['usb_protocol'] diff --git a/decoders/usb_signalling/pd.py b/decoders/usb_signalling/pd.py index 3272cbf..e6b7299 100644 --- a/decoders/usb_signalling/pd.py +++ b/decoders/usb_signalling/pd.py @@ -45,7 +45,7 @@ class Decoder(srd.Decoder): id = 'usb_signalling' name = 'USB signalling' longname = 'Universal Serial Bus (LS/FS) signalling' - desc = 'USB 1.x (low-speed and full-speed) signalling protocol.' + desc = 'USB (low-speed and full-speed) signalling protocol.' license = 'gplv2+' inputs = ['logic'] outputs = ['usb_signalling']