diff options
author | Uwe Hermann <uwe@hermann-uwe.de> | 2017-05-11 23:20:58 +0200 |
---|---|---|
committer | Uwe Hermann <uwe@hermann-uwe.de> | 2017-06-05 19:09:48 +0200 |
commit | 97b874bd0b6913ed52df1b8aac5e7491479fac9a (patch) | |
tree | 005b4d75bab6e7ca2b462e25425cf6e11f100244 /decoders/i2c/pd.py | |
parent | 0c931451554443463309e5e08b2e098bc195d06f (diff) | |
download | libsigrokdecode-97b874bd0b6913ed52df1b8aac5e7491479fac9a.tar.gz libsigrokdecode-97b874bd0b6913ed52df1b8aac5e7491479fac9a.zip |
Add srd_inst_initial_pins_set_all() and support code.
This allows frontends to set the assumed initial pins (i.e., the assumed
state of the pins before the first sample of a capture) to user-specified
values.
The assumed initial pins can be either low, or high, or "use same value
as the first sample of the capture".
The special self.initial_pins decoder attribute is now removed.
Diffstat (limited to 'decoders/i2c/pd.py')
-rw-r--r-- | decoders/i2c/pd.py | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/decoders/i2c/pd.py b/decoders/i2c/pd.py index d2f8bc4..0e7f769 100644 --- a/decoders/i2c/pd.py +++ b/decoders/i2c/pd.py @@ -130,10 +130,6 @@ class Decoder(srd.Decoder): self.out_bitrate = self.register(srd.OUTPUT_META, meta=(int, 'Bitrate', 'Bitrate from Start bit to Stop bit')) - # Assume that the initial SCL/SDA pin state is high (logic 1). - # This is a good default, since both pins have pullups as per spec. - self.initial_pins = [1, 1] - def putx(self, data): self.put(self.ss, self.es, self.out_ann, data) |