]> sigrok.org Git - libsigrokdecode.git/commitdiff
Initial TI TLC5620 (8-bit quad DAC) protocol decoder.
authorUwe Hermann <redacted>
Tue, 20 Nov 2012 15:32:02 +0000 (16:32 +0100)
committerUwe Hermann <redacted>
Wed, 21 Nov 2012 01:07:35 +0000 (02:07 +0100)
configure.ac
decoders/Makefile.am
decoders/tlc5620/Makefile.am [new file with mode: 0644]
decoders/tlc5620/__init__.py [new file with mode: 0644]
decoders/tlc5620/pd.py [new file with mode: 0644]

index 935e832134f569b2e9db3d78ce7ad2b44f1ec64b..7707dc4994200f42de7442f6887ff5231b16ed54 100644 (file)
@@ -168,6 +168,7 @@ AC_CONFIG_FILES([Makefile
                 decoders/rtc8564/Makefile
                 decoders/sdcard_spi/Makefile
                 decoders/spi/Makefile
+                decoders/tlc5620/Makefile
                 decoders/transitioncounter/Makefile
                 decoders/uart/Makefile
                 decoders/uart_dump/Makefile
index d5ebd7d3643efc86e4586b58c1df19cd06872ddc..6291b3701a2b8a785cb8e33e83156ad19e174e25 100644 (file)
@@ -39,6 +39,7 @@ SUBDIRS = \
        rtc8564 \
        sdcard_spi \
        spi \
+       tlc5620 \
        transitioncounter \
        uart \
        uart_dump \
diff --git a/decoders/tlc5620/Makefile.am b/decoders/tlc5620/Makefile.am
new file mode 100644 (file)
index 0000000..d246526
--- /dev/null
@@ -0,0 +1,26 @@
+##
+## This file is part of the sigrok project.
+##
+## Copyright (C) 2012 Uwe Hermann <uwe@hermann-uwe.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, write to the Free Software
+## Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301 USA
+##
+
+pkgdatadir = $(DECODERS_DIR)/tlc5620
+
+dist_pkgdata_DATA = __init__.py pd.py
+
+CLEANFILES = *.pyc
+
diff --git a/decoders/tlc5620/__init__.py b/decoders/tlc5620/__init__.py
new file mode 100644 (file)
index 0000000..da136b6
--- /dev/null
@@ -0,0 +1,31 @@
+##
+## This file is part of the sigrok project.
+##
+## Copyright (C) 2012 Uwe Hermann <uwe@hermann-uwe.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, write to the Free Software
+## Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301 USA
+##
+
+'''
+Texas Instruments TLC5620 protocol decoder.
+
+TODO: Description.
+
+Details:
+TODO
+'''
+
+from .pd import *
+
diff --git a/decoders/tlc5620/pd.py b/decoders/tlc5620/pd.py
new file mode 100644 (file)
index 0000000..71bfb2c
--- /dev/null
@@ -0,0 +1,118 @@
+##
+## This file is part of the sigrok project.
+##
+## Copyright (C) 2012 Uwe Hermann <uwe@hermann-uwe.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, write to the Free Software
+## Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301 USA
+##
+
+# Texas Instruments TLC5620 protocol decoder
+
+import sigrokdecode as srd
+
+dacs = {
+    0: 'DACA',
+    1: 'DACB',
+    2: 'DACC',
+    3: 'DACD',
+}
+
+class Decoder(srd.Decoder):
+    api_version = 1
+    id = 'tlc5620'
+    name = 'TI TLC5620'
+    longname = 'Texas Instruments TLC5620'
+    desc = 'Texas Instruments TLC5620 8-bit quad DAC.'
+    license = 'gplv2+'
+    inputs = ['logic']
+    outputs = ['tlc5620']
+    probes = [
+        {'id': 'clk', 'name': 'CLK', 'desc': 'Serial interface clock'},
+        {'id': 'data', 'name': 'DATA', 'desc': 'Serial interface data'},
+    ]
+    optional_probes = [
+        {'id': 'load', 'name': 'LOAD', 'desc': 'Serial interface load control'},
+        {'id': 'ldac', 'name': 'LDAC', 'desc': 'Load DAC'},
+    ]
+    options = {}
+    annotations = [
+        ['Text', 'Human-readable text'],
+        ['Warnings', 'Human-readable warnings'],
+    ]
+
+    def __init__(self, **kwargs):
+        self.state = 'IDLE'
+        self.oldpins = None
+        self.oldclk = None
+        self.bits = []
+        self.ss_dac = self.es_dac = 0
+        self.ss_gain = self.es_gain = 0
+        self.ss_value = self.es_value = 0
+
+    def start(self, metadata):
+        # self.out_proto = self.add(srd.OUTPUT_PROTO, 'tlc5620')
+        self.out_ann = self.add(srd.OUTPUT_ANN, 'tlc5620')
+
+    def report(self):
+        pass
+
+    def handle_11bits(self):
+        s = "".join(str(i) for i in self.bits[:2])
+        self.put(self.ss_dac, self.es_dac, self.out_ann,
+                 [0, ['DAC select: %s' % dacs[int(s, 2)]]])
+
+        self.put(self.ss_gain, self.es_gain, self.out_ann,
+                 [0, ['Gain: x%d' % (1 + self.bits[2])]])
+
+        s = "".join(str(i) for i in self.bits[3:])
+        self.put(self.ss_value, self.es_value, self.out_ann,
+                 [0, ['DAC value: %d' % int(s, 2)]])
+
+        self.bits = []
+
+    def decode(self, ss, es, data):
+        for (self.samplenum, pins) in data:
+
+            # Ignore identical samples early on (for performance reasons).
+            if self.oldpins == pins:
+                continue
+            self.oldpins, (clk, data, load, ldac) = pins, pins
+
+            # DATA is shifted in the DAC on the falling CLK edge (MSB-first).
+            # TODO: Handle various LOAD-/LDAC-controlled methods.
+            if not (self.oldclk == 1 and clk == 0):
+                self.oldclk = clk
+                continue
+
+            # The DAC has received a new bit, store it.
+            self.bits.append(data)
+
+            if self.state == 'IDLE':
+                # Wait until we have read 11 bits, then parse them.
+                l, s = len(self.bits), self.samplenum
+                if l == 1:
+                    self.ss_dac = s
+                elif l == 2:
+                    self.es_dac = self.ss_gain = s
+                elif l == 3:
+                    self.es_gain = self.ss_value = s
+                elif l == 11:
+                    self.es_value = s
+                    self.handle_11bits()
+            else:
+                raise Exception('Invalid state: %s' % self.state)
+
+            self.oldclk = clk
+