diff options
author | Uwe Hermann <uwe@hermann-uwe.de> | 2020-04-10 22:06:24 +0200 |
---|---|---|
committer | Uwe Hermann <uwe@hermann-uwe.de> | 2020-04-11 15:09:15 +0200 |
commit | a3b9585c554843a6db0c8468b2f37598dbe29bac (patch) | |
tree | 83b36bfd68a22bd29b0b2d1af2f800e7c77a9160 /decoders | |
parent | e0a46d7c9c7f64be6c7b1af7f9ae0338df665286 (diff) | |
download | libsigrokdecode-a3b9585c554843a6db0c8468b2f37598dbe29bac.tar.gz libsigrokdecode-a3b9585c554843a6db0c8468b2f37598dbe29bac.zip |
ltc242x: Fix the tags metadata item.
Diffstat (limited to 'decoders')
-rw-r--r-- | decoders/ltc242x/pd.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/decoders/ltc242x/pd.py b/decoders/ltc242x/pd.py index 0086381..4999a4d 100644 --- a/decoders/ltc242x/pd.py +++ b/decoders/ltc242x/pd.py @@ -31,7 +31,7 @@ class Decoder(srd.Decoder): license = 'gplv2+' inputs = ['spi'] outputs = [] - tags = ['Display'] + tags = ['IC', 'Analog/digital'] annotations = ( ('channel', 'Channel'), ('input', 'Input voltage'), |