diff options
author | Anthony Symons <antus@pcmhacking.net> | 2016-06-05 18:13:00 +0000 |
---|---|---|
committer | Gerhard Sittig <gerhard.sittig@gmx.net> | 2020-07-07 20:32:25 +0200 |
commit | 3bd25dea9d260d738f2dfaef697d6455545cde62 (patch) | |
tree | abfdd4c652de40102c316b9a4e609873d72815d5 /decoders/vpw/__init__.py | |
parent | 9dc13f0da80e72c6f2fc3a50aadbbd80d8b93f51 (diff) | |
download | libsigrokdecode-3bd25dea9d260d738f2dfaef697d6455545cde62.tar.gz libsigrokdecode-3bd25dea9d260d738f2dfaef697d6455545cde62.zip |
vpw: introduce SAE J1850 (VPW) decoder
Introduce a protocol decoder for the GM VPW 1x and 4x Vehicle Bus
(SAE J1850, or VPW for variable pulse width).
Diffstat (limited to 'decoders/vpw/__init__.py')
-rw-r--r-- | decoders/vpw/__init__.py | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/decoders/vpw/__init__.py b/decoders/vpw/__init__.py new file mode 100644 index 0000000..4667efa --- /dev/null +++ b/decoders/vpw/__init__.py @@ -0,0 +1,25 @@ +## +## This file is part of the libsigrokdecode project. +## +## Copyright (C) 2016 Anthony Symons <antus@pcmhacking.net> +## +## 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 +## + +''' +VPW decoder, Decode GM VPW 1X and 4X Vehicle Bus +''' + +from .pd import Decoder |