summaryrefslogtreecommitdiff
path: root/decoders
diff options
context:
space:
mode:
authorUwe Hermann <uwe@hermann-uwe.de>2013-01-01 19:11:13 +0100
committerUwe Hermann <uwe@hermann-uwe.de>2013-01-01 19:11:13 +0100
commit9e1437a045ef0c7df7e847be148fac6b4c0bbb4b (patch)
treeabf764a44fd69c8d7fdec62c804d71991a7f6f7b /decoders
parent42515b0f25613499167b66c1d8a659526fb46b8d (diff)
downloadlibsigrokdecode-9e1437a045ef0c7df7e847be148fac6b4c0bbb4b.tar.gz
libsigrokdecode-9e1437a045ef0c7df7e847be148fac6b4c0bbb4b.zip
Small cosmetic/consistency fixes in the PDs.
Diffstat (limited to 'decoders')
-rw-r--r--decoders/can/pd.py2
-rw-r--r--decoders/edid/pd.py4
-rw-r--r--decoders/maxim_ds28ea00/pd.py4
-rw-r--r--decoders/usb_protocol/pd.py2
-rw-r--r--decoders/usb_signalling/pd.py2
5 files changed, 8 insertions, 6 deletions
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']