summaryrefslogtreecommitdiff
path: root/decoders/uart
diff options
context:
space:
mode:
authorUwe Hermann <uwe@hermann-uwe.de>2014-04-14 22:14:39 +0200
committerUwe Hermann <uwe@hermann-uwe.de>2014-04-15 10:43:49 +0200
commit12851357e784b893e24880efc6cd22a0cbcc64ce (patch)
tree9e91131ab8d77f5b350022a3467e6840c070b446 /decoders/uart
parentc761524941fcb2237ceb65082e504e5e48e62a05 (diff)
downloadlibsigrokdecode-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/uart')
-rw-r--r--decoders/uart/pd.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/decoders/uart/pd.py b/decoders/uart/pd.py
index 57031d7..a0b1326 100644
--- a/decoders/uart/pd.py
+++ b/decoders/uart/pd.py
@@ -70,7 +70,7 @@ def parity_ok(parity_type, parity_bit, data, num_data_bits):
raise Exception('Invalid parity type: %d' % parity_type)
class Decoder(srd.Decoder):
- api_version = 1
+ api_version = 2
id = 'uart'
name = 'UART'
longname = 'Universal Asynchronous Receiver/Transmitter'