diff options
author | Gareth McMullin <gareth@blacksphere.co.nz> | 2011-12-02 06:44:42 +1300 |
---|---|---|
committer | Gareth McMullin <gareth@blacksphere.co.nz> | 2011-12-02 06:44:42 +1300 |
commit | 2b7d0e2bf5147025e9d76d14e266b9905503b957 (patch) | |
tree | 7159144b6a6000ada198703824edb37db90177ed /decoders/transitioncounter.py | |
parent | 67e847fd2185aa5677954dceacf3c279d7a68af1 (diff) | |
download | libsigrokdecode-2b7d0e2bf5147025e9d76d14e266b9905503b957.tar.gz libsigrokdecode-2b7d0e2bf5147025e9d76d14e266b9905503b957.zip |
srd: Changed nunchuk and transitioncounter to new registraion api.
Diffstat (limited to 'decoders/transitioncounter.py')
-rw-r--r-- | decoders/transitioncounter.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/decoders/transitioncounter.py b/decoders/transitioncounter.py index 2ad3f52..3946d4b 100644 --- a/decoders/transitioncounter.py +++ b/decoders/transitioncounter.py @@ -30,6 +30,7 @@ def sampleiter(data, unitsize): yield(Sample(data[i:i+unitsize])) class Decoder(): + id = 'transitioncounter' name = 'Transition counter' longname = '...' desc = 'Counts rising/falling edges in the signal.' @@ -109,3 +110,5 @@ class Decoder(): import sigrok +sigrok.register(Decoder) + |