From: Uwe Hermann Date: Tue, 8 May 2012 22:35:30 +0000 (+0200) Subject: srd: Add usable one-liner descriptions for all PDs. X-Git-Tag: libsigrokdecode-0.1.1~121 X-Git-Url: https://sigrok.org/gitweb/?p=libsigrokdecode.git;a=commitdiff_plain;h=a465436e627578f69c403de75a89522dfd883217 srd: Add usable one-liner descriptions for all PDs. --- diff --git a/decoders/dcf77/dcf77.py b/decoders/dcf77/dcf77.py index a02eb32..3a8134f 100644 --- a/decoders/dcf77/dcf77.py +++ b/decoders/dcf77/dcf77.py @@ -35,7 +35,7 @@ class Decoder(srd.Decoder): id = 'dcf77' name = 'DCF77' longname = 'DCF77 time protocol' - desc = 'TODO.' + desc = 'European longwave time signal (77.5kHz carrier signal).' license = 'gplv2+' inputs = ['logic'] outputs = ['dcf77'] diff --git a/decoders/edid/edid.py b/decoders/edid/edid.py index c11d41a..835f300 100644 --- a/decoders/edid/edid.py +++ b/decoders/edid/edid.py @@ -79,7 +79,7 @@ class Decoder(srd.Decoder): id = 'edid' name = 'EDID' longname = 'Extended display identification data' - desc = 'A data structure describing the capabilities of a display device.' + desc = 'Data structure describing display device capabilities.' license = 'gplv3+' inputs = ['ddc2'] outputs = ['edid'] diff --git a/decoders/i2c/i2c.py b/decoders/i2c/i2c.py index 5f67d35..0e79497 100644 --- a/decoders/i2c/i2c.py +++ b/decoders/i2c/i2c.py @@ -55,7 +55,7 @@ class Decoder(srd.Decoder): id = 'i2c' name = 'I2C' longname = 'Inter-Integrated Circuit' - desc = 'I2C is a two-wire, multi-master, serial bus.' + desc = 'Two-wire, multi-master, serial bus.' license = 'gplv2+' inputs = ['logic'] outputs = ['i2c'] diff --git a/decoders/i2cdemux/i2cdemux.py b/decoders/i2cdemux/i2cdemux.py index 360c408..bb47f23 100644 --- a/decoders/i2cdemux/i2cdemux.py +++ b/decoders/i2cdemux/i2cdemux.py @@ -27,7 +27,7 @@ class Decoder(srd.Decoder): id = 'i2cdemux' name = 'I2C demux' longname = 'I2C demultiplexer' - desc = 'TODO.' + desc = 'Demux I2C packets into per-slave-address streams.' license = 'gplv2+' inputs = ['i2c'] outputs = [] # TODO: Only known at run-time. diff --git a/decoders/i2cfilter/i2cfilter.py b/decoders/i2cfilter/i2cfilter.py index fad11c3..64010cb 100644 --- a/decoders/i2cfilter/i2cfilter.py +++ b/decoders/i2cfilter/i2cfilter.py @@ -26,7 +26,7 @@ class Decoder(srd.Decoder): id = 'i2cfilter' name = 'I2C filter' longname = 'I2C filter' - desc = 'Filter out specific addresses/directions in an I2C stream.' + desc = 'Filter out addresses/directions in an I2C stream.' license = 'gplv3+' inputs = ['i2c'] outputs = [] diff --git a/decoders/i2s/i2s.py b/decoders/i2s/i2s.py index b81f2dd..b921011 100644 --- a/decoders/i2s/i2s.py +++ b/decoders/i2s/i2s.py @@ -30,8 +30,7 @@ class Decoder(srd.Decoder): id = 'i2s' name = 'I2S' longname = 'Integrated Interchip Sound' - desc = 'I2S is an electrical serial bus interface standard used ' \ - 'for connecting digital audio devices together.' + desc = 'Serial bus for connecting digital audio devices.' license = 'gplv2+' inputs = ['logic'] outputs = ['i2s'] diff --git a/decoders/lpc/lpc.py b/decoders/lpc/lpc.py index 1357fbd..cd56a9b 100644 --- a/decoders/lpc/lpc.py +++ b/decoders/lpc/lpc.py @@ -102,7 +102,7 @@ class Decoder(srd.Decoder): id = 'lpc' name = 'LPC' longname = 'Low-Pin-Count' - desc = 'TODO.' + desc = 'Protocol for low-bandwidth devices on PC mainboards.' license = 'gplv2+' inputs = ['logic'] outputs = ['lpc'] diff --git a/decoders/mlx90614/mlx90614.py b/decoders/mlx90614/mlx90614.py index 35ca032..707eb7f 100644 --- a/decoders/mlx90614/mlx90614.py +++ b/decoders/mlx90614/mlx90614.py @@ -27,7 +27,7 @@ class Decoder(srd.Decoder): id = 'mlx90614' name = 'MLX90614' longname = 'Melexis MLX90614' - desc = 'TODO.' + desc = 'Infrared Thermometer protocol.' license = 'gplv2+' inputs = ['i2c'] outputs = ['mlx90614'] diff --git a/decoders/mx25lxx05d/mx25lxx05d.py b/decoders/mx25lxx05d/mx25lxx05d.py index 7c8a6fd..f7c8476 100644 --- a/decoders/mx25lxx05d/mx25lxx05d.py +++ b/decoders/mx25lxx05d/mx25lxx05d.py @@ -98,7 +98,7 @@ class Decoder(srd.Decoder): id = 'mx25lxx05d' name = 'MX25Lxx05D' longname = 'Macronix MX25Lxx05D' - desc = 'Macronix MX25Lxx05D SPI flash chip decoder' + desc = 'SPI (NOR) flash chip protocol.' license = 'gplv2+' inputs = ['spi', 'logic'] outputs = ['mx25lxx05d'] diff --git a/decoders/mxc6225xu/mxc6225xu.py b/decoders/mxc6225xu/mxc6225xu.py index 5769f3e..39564a9 100644 --- a/decoders/mxc6225xu/mxc6225xu.py +++ b/decoders/mxc6225xu/mxc6225xu.py @@ -66,7 +66,7 @@ class Decoder(srd.Decoder): id = 'mxc6225xu' name = 'MXC6225XU' longname = 'MEMSIC MXC6225XU' - desc = 'Digital Thermal Orientation Sensor (DTOS) protocol' + desc = 'Digital Thermal Orientation Sensor (DTOS) protocol.' license = 'gplv2+' inputs = ['i2c'] outputs = ['mxc6225xu'] diff --git a/decoders/nunchuk/nunchuk.py b/decoders/nunchuk/nunchuk.py index 0c4cf11..1bcba23 100644 --- a/decoders/nunchuk/nunchuk.py +++ b/decoders/nunchuk/nunchuk.py @@ -27,7 +27,7 @@ class Decoder(srd.Decoder): id = 'nunchuk' name = 'Nunchuk' longname = 'Nintendo Wii Nunchuk' - desc = 'Decodes the Nintendo Wii Nunchuk I2C-based protocol.' + desc = 'Nintendo Wii Nunchuk controller protocol.' license = 'gplv2+' inputs = ['i2c'] outputs = ['nunchuck'] diff --git a/decoders/pan1321/pan1321.py b/decoders/pan1321/pan1321.py index 9d1d812..da981f2 100644 --- a/decoders/pan1321/pan1321.py +++ b/decoders/pan1321/pan1321.py @@ -31,7 +31,7 @@ class Decoder(srd.Decoder): id = 'pan1321' name = 'PAN1321' longname = 'Panasonic PAN1321' - desc = 'TODO.' + desc = 'Bluetooth RF module with Serial Port Profile (SPP).' license = 'gplv2+' inputs = ['uart'] outputs = ['pan1321'] diff --git a/decoders/rtc8564/rtc8564.py b/decoders/rtc8564/rtc8564.py index c74630a..bf5d4b6 100644 --- a/decoders/rtc8564/rtc8564.py +++ b/decoders/rtc8564/rtc8564.py @@ -31,7 +31,7 @@ class Decoder(srd.Decoder): id = 'rtc8564' name = 'RTC-8564' longname = 'Epson RTC-8564 JE/NB' - desc = 'TODO.' + desc = 'Realtime clock module protocol.' license = 'gplv2+' inputs = ['i2c'] outputs = ['rtc8564'] diff --git a/decoders/spi/spi.py b/decoders/spi/spi.py index 5e5e74e..72a3dfb 100644 --- a/decoders/spi/spi.py +++ b/decoders/spi/spi.py @@ -41,7 +41,7 @@ class Decoder(srd.Decoder): id = 'spi' name = 'SPI' longname = 'Serial Peripheral Interface' - desc = '...desc...' + desc = 'Full-duplex, synchronous, serial bus.' license = 'gplv2+' inputs = ['logic'] outputs = ['spi'] diff --git a/decoders/uart/uart.py b/decoders/uart/uart.py index a478c8e..bb4d9e6 100644 --- a/decoders/uart/uart.py +++ b/decoders/uart/uart.py @@ -61,7 +61,7 @@ class Decoder(srd.Decoder): id = 'uart' name = 'UART' longname = 'Universal Asynchronous Receiver/Transmitter' - desc = 'Universal Asynchronous Receiver/Transmitter (UART)' + desc = 'Asynchronous, serial bus.' license = 'gplv2+' inputs = ['logic'] outputs = ['uart'] diff --git a/decoders/usb/usb.py b/decoders/usb/usb.py index 5bfaf69..8620de0 100644 --- a/decoders/usb/usb.py +++ b/decoders/usb/usb.py @@ -86,7 +86,7 @@ class Decoder(srd.Decoder): id = 'usb' name = 'USB' longname = 'Universal Serial Bus' - desc = 'Universal Serial Bus' + desc = 'USB 1.x (full-speed) serial protocol.' license = 'gplv2+' inputs = ['logic'] outputs = ['usb']