]> sigrok.org Git - libsigrokdecode.git/commitdiff
Small cosmetic/consistency fixes in the PDs.
authorUwe Hermann <redacted>
Tue, 1 Jan 2013 18:11:13 +0000 (19:11 +0100)
committerUwe Hermann <redacted>
Tue, 1 Jan 2013 18:11:13 +0000 (19:11 +0100)
decoders/can/pd.py
decoders/edid/pd.py
decoders/maxim_ds28ea00/pd.py
decoders/usb_protocol/pd.py
decoders/usb_signalling/pd.py

index 5733e18645b4d84a5dc04cd30837dbf31d915ddd..a981b002d302cf4de5da671dd930e3c5c768008a 100644 (file)
@@ -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']
index a03fe67c9644cbfbdf5b668eb7b4b4d403e89216..ba0e0bef8109e5cab83f956a112a075864bc09af 100644 (file)
@@ -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'],
index 026457e5783a7cc66c8bf54951e0ce311d003373..10b198f18ccc7ae8931a6f2a1becc29645244d19 100644 (file)
@@ -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']
index b1cd33b7ce835abea35fa7175e0f544529f29466..586646e6e3ef14b65011e7a84f863c56c6a2d91e 100644 (file)
@@ -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']
index 3272cbf713c19abbe07cf908c1a6b706f5d86b94..e6b729919a1a9161dfe4e92ed4d1a9cac3f25a4c 100644 (file)
@@ -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']