diff options
author | fenugrec <fenugrec@users.sourceforge.net> | 2016-03-09 15:36:06 -0500 |
---|---|---|
committer | Uwe Hermann <uwe@hermann-uwe.de> | 2016-03-20 20:17:25 +0100 |
commit | e96593c1e2e614d3b08076d4f7318ef388e35a9d (patch) | |
tree | ba0e68e014ef74215de6f60c56204cb145832223 /decoders/aud/__init__.py | |
parent | 88df2c9a6e125590db12aebb8a4466ebd57978c7 (diff) | |
download | libsigrokdecode-e96593c1e2e614d3b08076d4f7318ef388e35a9d.tar.gz libsigrokdecode-e96593c1e2e614d3b08076d4f7318ef388e35a9d.zip |
Add initial Renesas Advanced User Debugger (AUD) decoder.
Diffstat (limited to 'decoders/aud/__init__.py')
-rw-r--r-- | decoders/aud/__init__.py | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/decoders/aud/__init__.py b/decoders/aud/__init__.py new file mode 100644 index 0000000..aaa31ff --- /dev/null +++ b/decoders/aud/__init__.py @@ -0,0 +1,32 @@ +## +## This file is part of the libsigrokdecode project. +## +## Copyright (C) 2016 fenugrec <fenugrec users.sourceforge.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 +## + +''' +This protocol decoder decodes the AUD (Advanced User Debugger) interface +of certain Renesas / Hitachi microcontrollers, when set in Branch Trace mode. + +AUD has two modes, this PD currently only supports "Branch Trace" mode. + +Details: +http://www.renesas.eu/products/mpumcu/superh/sh7050/sh7058/Documentation.jsp +("rej09b0046 - SH7058 Hardware manual") +''' + +from .pd import Decoder |