diff options
author | Philip Åkesson <philip.akesson@gmail.com> | 2020-08-09 16:44:46 +0200 |
---|---|---|
committer | Gerhard Sittig <gerhard.sittig@gmx.net> | 2020-08-12 19:38:26 +0200 |
commit | b094e81353b3c0c0e9bf5a8ee53bb1da3a05d276 (patch) | |
tree | 93ddb261b535fd2858a57d27d3a2acd7f9c5df8f /decoders/sdq/__init__.py | |
parent | 115f19cf513388c2c9f3c44f7367acfed686a5f6 (diff) | |
download | libsigrokdecode-b094e81353b3c0c0e9bf5a8ee53bb1da3a05d276.tar.gz libsigrokdecode-b094e81353b3c0c0e9bf5a8ee53bb1da3a05d276.zip |
sdq: Add the SDQ protocol decoder
[ gsi: minor whitespace adjustment ]
Diffstat (limited to 'decoders/sdq/__init__.py')
-rw-r--r-- | decoders/sdq/__init__.py | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/decoders/sdq/__init__.py b/decoders/sdq/__init__.py new file mode 100644 index 0000000..7087bda --- /dev/null +++ b/decoders/sdq/__init__.py @@ -0,0 +1,24 @@ +## +## This file is part of the libsigrokdecode project. +## +## Copyright (C) 2019-2020 Philip Åkesson <philip.akesson@gmail.com> +## +## 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/>. +## + +''' +Texas Instruments SDQ protocol, also used by Apple. +''' + +from .pd import Decoder |