summaryrefslogtreecommitdiff
path: root/decoders/counter/__init__.py
diff options
context:
space:
mode:
authorStefan Brüns <stefan.bruens@rwth-aachen.de>2018-01-02 02:17:07 +0100
committerUwe Hermann <uwe@hermann-uwe.de>2018-01-03 17:17:47 +0100
commit6ca7aa50829904240ea07bcb7594c838ec467b98 (patch)
tree1cff96da1c5b688b083a61e3d5b470a5dedb5b2c /decoders/counter/__init__.py
parentfcdd8c687dfce24cbb3569d0d02b0e34df0535d6 (diff)
downloadlibsigrokdecode-6ca7aa50829904240ea07bcb7594c838ec467b98.tar.gz
libsigrokdecode-6ca7aa50829904240ea07bcb7594c838ec467b98.zip
Add a trivial "counter" decoder
This decoder just counts the number of falling and/or rising edges. This is especially useful for diagnosing protocols with a clock signal or a fixed number of transitions per bit, e.g. pulse length coded. It also provides a divider, which can be used to e.g. count the number of words in I²C or SPI transfers.
Diffstat (limited to 'decoders/counter/__init__.py')
-rw-r--r--decoders/counter/__init__.py28
1 files changed, 28 insertions, 0 deletions
diff --git a/decoders/counter/__init__.py b/decoders/counter/__init__.py
new file mode 100644
index 0000000..e731311
--- /dev/null
+++ b/decoders/counter/__init__.py
@@ -0,0 +1,28 @@
+##
+## This file is part of the libsigrokdecode project.
+##
+## Copyright (C) 2018 Stefan Brüns <stefan.bruens@rwth-aachen.de>
+##
+## This program is free software; you can redistribute it and/or modify
+## it under the terms of the GNU General Public License as published by
+## the Free Software Foundation; either version 2 of the License, or
+## (at your option) any later version.
+##
+## This program is distributed in the hope that it will be useful,
+## but WITHOUT ANY WARRANTY; without even the implied warranty of
+## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+## GNU General Public License for more details.
+##
+## You should have received a copy of the GNU General Public License
+## along with this program; if not, see <http://www.gnu.org/licenses/>.
+##
+
+'''
+This PD is a simple counter.
+
+It can count rising and/or falling edges, provides an optional reset
+signal. It can also divide the count to e.g. count the numger of
+fixed length words (where a word corresponds to e.g. 9 clock edges).
+'''
+
+from .pd import Decoder