diff options
Diffstat (limited to 'decoders/transitioncounter.py')
-rw-r--r-- | decoders/transitioncounter.py | 20 |
1 files changed, 16 insertions, 4 deletions
diff --git a/decoders/transitioncounter.py b/decoders/transitioncounter.py index a6d331e..6bd97c2 100644 --- a/decoders/transitioncounter.py +++ b/decoders/transitioncounter.py @@ -79,10 +79,22 @@ def register(): return { 'id': 'transitioncounter', 'name': 'Transition counter', - 'desc': 'Count rising/falling edges', - 'inputformats': ['raw'], - 'signalnames': {}, # FIXME - 'outputformats': ['transitioncounts'], + 'longname': '...', + 'desc': 'Counts rising/falling edges in the signal.', + 'longdesc': '...', + 'author': 'Uwe Hermann', + 'email': 'uwe@hermann-uwe.de', + 'license': 'gplv2+', + 'in': ['logic'], + 'out': ['transitioncounts'], + 'probes': [ + # All probes. + ], + 'options': { + # No options so far. + }, + # 'start': start, + # 'report': report, } # Use psyco (if available) as it results in huge performance improvements. |