diff options
author | Mike Jagdis <mjagdis@eris-associates.co.uk> | 2018-08-08 09:58:02 +0100 |
---|---|---|
committer | Uwe Hermann <uwe@hermann-uwe.de> | 2018-09-06 01:24:50 +0200 |
commit | f8cc803b1fa51036be16115bff809cdacecaffd5 (patch) | |
tree | bc1cb1f81b64c5cea75c917569e3aa0f92f72f9a /decoders/swim/__init__.py | |
parent | 577af027774c422a1d5a73b7a8d1da03caa4e068 (diff) | |
download | libsigrokdecode-f8cc803b1fa51036be16115bff809cdacecaffd5.tar.gz libsigrokdecode-f8cc803b1fa51036be16115bff809cdacecaffd5.zip |
Decoder for STM8 series MCUs SWIM protocol.
Signed-off-by: Mike Jagdis <mjagdis@eris-associates.co.uk> (github: mjagdis)
Diffstat (limited to 'decoders/swim/__init__.py')
-rw-r--r-- | decoders/swim/__init__.py | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/decoders/swim/__init__.py b/decoders/swim/__init__.py new file mode 100644 index 0000000..cd18b85 --- /dev/null +++ b/decoders/swim/__init__.py @@ -0,0 +1,29 @@ +## +## This file is part of the libsigrokdecode project. +## +## Copyright (C) 2018 Mike Jagdis <mjagdis@eris-associates.co.uk> +## +## 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 +## + +''' +SWIM is a single wire interface for STM8 series 8-bit microcontrollers +that allows non-intrusive read/wite access to be performed on-the-fly +to the memory and registers of the MCU for debug and flashing purposes. + +See the STMicroelectronics document UM0470 for details. +''' + +from .pd import Decoder |