summaryrefslogtreecommitdiff
path: root/decoders/amulet_ascii/__init__.py
diff options
context:
space:
mode:
authorVesa-Pekka Palmu <vpalmu@depili.fi>2019-07-19 15:08:26 +0300
committerUwe Hermann <uwe@hermann-uwe.de>2019-11-24 16:41:53 +0100
commit6a44fc57450a86401a979fda722e44e87de63832 (patch)
tree1bfee18f37c4b2b652ea5159199abb8edf31d0de /decoders/amulet_ascii/__init__.py
parentb92543610e86daf57b0f042a899c9897d8234fa0 (diff)
downloadlibsigrokdecode-6a44fc57450a86401a979fda722e44e87de63832.tar.gz
libsigrokdecode-6a44fc57450a86401a979fda722e44e87de63832.zip
Initial Amulet LCD ASCII PD
This is a protocol decoder for the 'ASCII' protocol used by Amulet Technologies LCDs. Currently some commands are not implemented yet. I also lack capture data from a display that will use replies other than ACK and NACK. Reads are untested as I have no suitable captures. The PD copes with bus errors (there is an actual bug in the device I'm reverse engineering) and most of the commands are implemented. The unimplemented commands should generally consume the correct number of bytes from the bus, the exception to this are the drawing commands, because there are actually at least two revisions of them with different payloads, that are really hard to detect in greedy algorithm.
Diffstat (limited to 'decoders/amulet_ascii/__init__.py')
-rw-r--r--decoders/amulet_ascii/__init__.py28
1 files changed, 28 insertions, 0 deletions
diff --git a/decoders/amulet_ascii/__init__.py b/decoders/amulet_ascii/__init__.py
new file mode 100644
index 0000000..7d2c8c3
--- /dev/null
+++ b/decoders/amulet_ascii/__init__.py
@@ -0,0 +1,28 @@
+##
+## This file is part of the libsigrokdecode project.
+##
+## Copyright (C) 2019 Vesa-Pekka Palmu <vpalmu@depili.fi>
+##
+## 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 decoder stacks on top of the 'uart' PD and decodes the ASCII protocol
+for Amulet LCD display controllers.
+
+Currently the decoder treats both RX and TX the same way, decoding all
+message types.
+'''
+
+from .pd import Decoder