summaryrefslogtreecommitdiff
path: root/decoders/tdm_audio/__init__.py
diff options
context:
space:
mode:
authorBen Dooks <ben.dooks@codethink.co.uk>2019-04-23 17:47:04 +0100
committerUwe Hermann <uwe@hermann-uwe.de>2019-11-24 19:27:23 +0100
commita276d9d65402e7dd766203dac7e5ac9ed00a0c96 (patch)
tree21c025eb2f1320820800849469c5b554ddebdd47 /decoders/tdm_audio/__init__.py
parentf57bde305943ee2787f509625ff64299640562b1 (diff)
downloadlibsigrokdecode-a276d9d65402e7dd766203dac7e5ac9ed00a0c96.tar.gz
libsigrokdecode-a276d9d65402e7dd766203dac7e5ac9ed00a0c96.zip
tdm_audio: Add initial decoder
Diffstat (limited to 'decoders/tdm_audio/__init__.py')
-rw-r--r--decoders/tdm_audio/__init__.py25
1 files changed, 25 insertions, 0 deletions
diff --git a/decoders/tdm_audio/__init__.py b/decoders/tdm_audio/__init__.py
new file mode 100644
index 0000000..a95e16e
--- /dev/null
+++ b/decoders/tdm_audio/__init__.py
@@ -0,0 +1,25 @@
+##
+## This file is part of the libsigrokdecode project.
+##
+## Copyright (C) 2019 Ben Dooks <ben.dooks@codethink.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, see <http://www.gnu.org/licenses/>.
+##
+
+'''
+TDM Audio is an audio serial bus for moving audio data between devices
+(usually on the same board) which can carry one or more channels of data.
+'''
+
+from .pd import Decoder