]> sigrok.org Git - libsigrokdecode.git/commitdiff
rgb_led_spi: Shorten name/description (drop "mode").
authorUwe Hermann <redacted>
Sun, 23 Feb 2014 17:30:01 +0000 (18:30 +0100)
committerUwe Hermann <redacted>
Sun, 23 Feb 2014 17:30:01 +0000 (18:30 +0100)
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)'.

decoders/rgb_led_spi/pd.py

index 44c1837b66cc66ddf389bf0f1e3e74a7fcc87d3f..b5f61b8d533c21424b2a27ce7970f6a593e1ff05 100644 (file)
@@ -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']