diff options
author | Uwe Hermann <uwe@hermann-uwe.de> | 2014-04-14 22:14:39 +0200 |
---|---|---|
committer | Uwe Hermann <uwe@hermann-uwe.de> | 2014-04-15 10:43:49 +0200 |
commit | 12851357e784b893e24880efc6cd22a0cbcc64ce (patch) | |
tree | 9e91131ab8d77f5b350022a3467e6840c070b446 /decoders/ir_rc5 | |
parent | c761524941fcb2237ceb65082e504e5e48e62a05 (diff) | |
download | libsigrokdecode-12851357e784b893e24880efc6cd22a0cbcc64ce.tar.gz libsigrokdecode-12851357e784b893e24880efc6cd22a0cbcc64ce.zip |
All PDs: Bump api_version to 2.
Older libsigrokdecode versions are no longer able to use the current
versions of the PDs (various changes in syntax etc).
Diffstat (limited to 'decoders/ir_rc5')
-rw-r--r-- | decoders/ir_rc5/pd.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/decoders/ir_rc5/pd.py b/decoders/ir_rc5/pd.py index 1962459..38b4793 100644 --- a/decoders/ir_rc5/pd.py +++ b/decoders/ir_rc5/pd.py @@ -22,7 +22,7 @@ import sigrokdecode as srd from .lists import * class Decoder(srd.Decoder): - api_version = 1 + api_version = 2 id = 'ir_rc5' name = 'IR RC-5' longname = 'IR RC-5' |