diff options
author | Teo Perisanu <Teo.Perisanu@analog.com> | 2020-03-17 10:52:37 +0200 |
---|---|---|
committer | Uwe Hermann <uwe@hermann-uwe.de> | 2020-04-11 01:13:59 +0200 |
commit | f47d3a2dfc223156c32b935a6241e136d70d4a70 (patch) | |
tree | 7f41eb882739fe7d2f10ae805d80e10c6f802726 /decoders/adxl345/__init__.py | |
parent | 9677dcf6c5547c1907c86afcfbd100b773afddbe (diff) | |
download | libsigrokdecode-f47d3a2dfc223156c32b935a6241e136d70d4a70.tar.gz libsigrokdecode-f47d3a2dfc223156c32b935a6241e136d70d4a70.zip |
Add ADXL345 decoder.
Signed-off-by: Teo Perisanu <Teo.Perisanu@analog.com>
Diffstat (limited to 'decoders/adxl345/__init__.py')
-rw-r--r-- | decoders/adxl345/__init__.py | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/decoders/adxl345/__init__.py b/decoders/adxl345/__init__.py new file mode 100644 index 0000000..e46bce9 --- /dev/null +++ b/decoders/adxl345/__init__.py @@ -0,0 +1,26 @@ +## +## This file is part of the libsigrokdecode project. +## +## Copyright (C) 2020 Analog Devices Inc. +## +## 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 +## + +''' +This decoder stacks on top of the 'spi' PD and decodes the +Analog Devices ADXL345 protocol. +''' + +from .pd import Decoder |