diff options
author | Gerhard Sittig <gerhard.sittig@gmx.net> | 2020-07-20 22:21:30 +0200 |
---|---|---|
committer | Gerhard Sittig <gerhard.sittig@gmx.net> | 2020-07-22 20:21:24 +0200 |
commit | c449c5832bb560ca543b9d6c962c405d1a227312 (patch) | |
tree | cc4ed833c6bf3c0f09e3ccef5ba888a4650301c8 /decoders/ir_sirc/__init__.py | |
parent | 3e10fce7f87ff1bae97241a8b8f9d3602c3bfe8a (diff) | |
download | libsigrokdecode-c449c5832bb560ca543b9d6c962c405d1a227312.tar.gz libsigrokdecode-c449c5832bb560ca543b9d6c962c405d1a227312.zip |
ir_sirc: fixup decoder boilerplate
The SIRC decoder was written to an older API, and failed to load in a
recent environment (tag missing, ambiguous annotation names). Unbreak
the decoder's boilerplate, and address other nits while we are here:
There is no Python output. Use the same declaration syntax as in other
decoders for improved maintenance (greppability). Call reset() from
__init__() to avoid surprises when a future version does have vars. Do
provide a doc string in the module initialization, to keep the URL for
the protocol description at hand.
Diffstat (limited to 'decoders/ir_sirc/__init__.py')
-rw-r--r-- | decoders/ir_sirc/__init__.py | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/decoders/ir_sirc/__init__.py b/decoders/ir_sirc/__init__.py index 7e1342c..4061ed7 100644 --- a/decoders/ir_sirc/__init__.py +++ b/decoders/ir_sirc/__init__.py @@ -17,4 +17,10 @@ ## along with this program; if not, see <http://www.gnu.org/licenses/>. ## +''' +Decoder for the Sony IR remote control protocol (SIRC). + +https://www.sbprojects.net/knowledge/ir/sirc.php +''' + from .pd import Decoder |