diff options
author | Uwe Hermann <uwe@hermann-uwe.de> | 2014-02-23 18:30:01 +0100 |
---|---|---|
committer | Uwe Hermann <uwe@hermann-uwe.de> | 2014-02-23 18:30:01 +0100 |
commit | e85b0440b9b50b8eac7f1b04d0108cbb77bcdb02 (patch) | |
tree | 88b271b667869bf4ac07b26061336702232f93a0 /decoders/rgb_led_spi | |
parent | 7c09dbb2adb240e013d373da8dccb56efd22380e (diff) | |
download | libsigrokdecode-e85b0440b9b50b8eac7f1b04d0108cbb77bcdb02.tar.gz libsigrokdecode-e85b0440b9b50b8eac7f1b04d0108cbb77bcdb02.zip |
rgb_led_spi: Shorten name/description (drop "mode").
In the 'sdcard_spi' PD/case the SD spec specifically differentiates between
a so-called "SPI mode" and "SD mode" (both being well-defined terms from
the spec), thus the "SPI mode" in the name and description of that PD.
For 'rgb_led_spi' however there's no such distinction for "modes"
really, so shorten the name/description to just 'RGB LED (SPI)'.
Diffstat (limited to 'decoders/rgb_led_spi')
-rw-r--r-- | decoders/rgb_led_spi/pd.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/decoders/rgb_led_spi/pd.py b/decoders/rgb_led_spi/pd.py index 44c1837..b5f61b8 100644 --- a/decoders/rgb_led_spi/pd.py +++ b/decoders/rgb_led_spi/pd.py @@ -23,8 +23,8 @@ import sigrokdecode as srd class Decoder(srd.Decoder): api_version = 1 id = 'rgb_led_spi' - name = 'RGB LED (SPI mode)' - longname = 'RGB LED string decoder (SPI mode)' + name = 'RGB LED (SPI)' + longname = 'RGB LED string decoder (SPI)' desc = 'Generic RGB LED string protocol (RGB values clocked over SPI).' license = 'gplv2' inputs = ['spi'] |