summaryrefslogtreecommitdiff
path: root/decoders
diff options
context:
space:
mode:
authorUwe Hermann <uwe@hermann-uwe.de>2014-09-08 21:44:03 +0200
committerUwe Hermann <uwe@hermann-uwe.de>2014-09-10 17:27:02 +0200
commitcac173dbec2b1761414ace8289204945557c8526 (patch)
treecd686b69ec7bb15dce946e81266741dbf2fbe4c7 /decoders
parentc9021bc926a42284baf99c174eba4a52b412847e (diff)
downloadlibsigrokdecode-cac173dbec2b1761414ace8289204945557c8526.tar.gz
libsigrokdecode-cac173dbec2b1761414ace8289204945557c8526.zip
rfm12: Cosmetics.
Also, update author email address.
Diffstat (limited to 'decoders')
-rw-r--r--decoders/rfm12/__init__.py6
-rw-r--r--decoders/rfm12/pd.py4
2 files changed, 5 insertions, 5 deletions
diff --git a/decoders/rfm12/__init__.py b/decoders/rfm12/__init__.py
index a4748b6..0ad72e5 100644
--- a/decoders/rfm12/__init__.py
+++ b/decoders/rfm12/__init__.py
@@ -1,7 +1,7 @@
##
## This file is part of the libsigrokdecode project.
##
-## Copyright (C) 2014 Sławek Piotrowski <slawomir.piotrowski@payu.pl>
+## Copyright (C) 2014 Sławek Piotrowski <sentinel@atteo.org>
##
## 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
@@ -19,8 +19,8 @@
##
'''
-This decoder stacks on top of the 'spi' PD and decodes the RFM12
-control protocol.
+This decoder stacks on top of the 'spi' PD and decodes the HopeRF RFM12
+wireless transceiver control protocol.
'''
from .pd import *
diff --git a/decoders/rfm12/pd.py b/decoders/rfm12/pd.py
index 55afd5d..3065383 100644
--- a/decoders/rfm12/pd.py
+++ b/decoders/rfm12/pd.py
@@ -1,7 +1,7 @@
##
## This file is part of the libsigrokdecode project.
##
-## Copyright (C) 2014 Sławek Piotrowski <slawomir.piotrowski@payu.pl>
+## Copyright (C) 2014 Sławek Piotrowski <sentinel@atteo.org>
##
## 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
@@ -25,7 +25,7 @@ class Decoder(srd.Decoder):
id = 'rfm12'
name = 'RFM12'
longname = 'RFM12 control protocol'
- desc = 'Protocol for controlling RFM12 wireless transceivers from HoperRF'
+ desc = 'HopeRF RFM12 wireless transceiver control protocol.'
license = 'gplv2+'
inputs = ['spi']
outputs = ['rfm12']