diff options
author | Uwe Hermann <uwe@hermann-uwe.de> | 2012-01-15 20:41:46 +0100 |
---|---|---|
committer | Uwe Hermann <uwe@hermann-uwe.de> | 2012-01-15 20:48:11 +0100 |
commit | a2c2afd9357fab233a4f09531618faa81d54d4d9 (patch) | |
tree | 83adc417308ca8afd4181bd2262af89bf360bd53 /decoders/i2c/i2c.py | |
parent | 64c29e28e0efa184319f7831b3eca18c7f73f7d0 (diff) | |
download | libsigrokdecode-a2c2afd9357fab233a4f09531618faa81d54d4d9.tar.gz libsigrokdecode-a2c2afd9357fab233a4f09531618faa81d54d4d9.zip |
srd: Add 'api_version = 1' to all PDs.
Diffstat (limited to 'decoders/i2c/i2c.py')
-rw-r--r-- | decoders/i2c/i2c.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/decoders/i2c/i2c.py b/decoders/i2c/i2c.py index f0a95b7..16bd6c3 100644 --- a/decoders/i2c/i2c.py +++ b/decoders/i2c/i2c.py @@ -116,6 +116,7 @@ FIND_ADDRESS = 1 FIND_DATA = 2 class Decoder(srd.Decoder): + api_version = 1 id = 'i2c' name = 'I2C' longname = 'Inter-Integrated Circuit' |