From e8e8bec61ce9b855c078e2ca1de55f648af5204a Mon Sep 17 00:00:00 2001 From: Gerhard Sittig Date: Sat, 22 Feb 2020 10:28:54 +0100 Subject: ir_irmp: touch up the IRMP based decoder implementation (Python side) Address Python and sigrok project coding style nits in the IRMP based decoder for infrared signals. Re-add the attribution which was lost in a previous copy and forgotten in the recent submission. Eliminate camel case identifiers and adjust to the simplified Python binding API. Drop remaining diagnostics from development and dead code (unused carrier detection). Reword the boilerplate text to match other decoders. Avoid Python f-strings since they are not portable. Prefer slightly less cryptic variable names in the construction of annotation texts. Defer the creation of the library instance until actual decoder use. Start inspecting the input data at the very first samples in the input stream. --- decoders/ir_irmp/__init__.py | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'decoders/ir_irmp/__init__.py') diff --git a/decoders/ir_irmp/__init__.py b/decoders/ir_irmp/__init__.py index 5b0e813..b6bbff6 100644 --- a/decoders/ir_irmp/__init__.py +++ b/decoders/ir_irmp/__init__.py @@ -1,4 +1,8 @@ ## +## This file is part of the libsigrokdecode project. +## +## Copyright (C) 2019 Rene Staffen +## ## 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 @@ -14,12 +18,8 @@ ## ''' -IRMP is a multi protocol infrared remote protocol decoder -intiated and maintained by Frank M. (ukw) - -https://www.mikrocontroller.net/articles/IRMP - -irmp wrapper by René Staffen +IRMP is a multi protocol infrared remote protocol decoder. See +https://www.mikrocontroller.net/articles/IRMP for details. ''' from .pd import Decoder -- cgit v1.2.3-70-g09d2