From: Roland Hieber Date: Sun, 4 Oct 2015 21:04:02 +0000 (+0200) Subject: rfm12: fix small typo X-Git-Tag: libsigrokdecode-0.4.0~53 X-Git-Url: https://sigrok.org/gitaction?a=commitdiff_plain;h=d9673085e0f35f4cf7704f340ce56f954d7beab6;p=libsigrokdecode.git rfm12: fix small typo There is a small typo in the rfm12 protocol decoder that I just noticed: --- diff --git a/decoders/rfm12/pd.py b/decoders/rfm12/pd.py index 3065383..9bcbd9d 100644 --- a/decoders/rfm12/pd.py +++ b/decoders/rfm12/pd.py @@ -460,7 +460,7 @@ class Decoder(srd.Decoder): else: c = '%02x %02x' % tuple(cmd) r = '%02x %02x' % tuple(ret) - self.putx(0, 16, ['Uknown command: %s (reply: %s)!' % (c, r)]) + self.putx(0, 16, ['Unknown command: %s (reply: %s)!' % (c, r)]) def decode(self, ss, es, data): ptype, mosi, miso = data