From c515eed7ef7a04a42b5b34abd308e08d6942835e Mon Sep 17 00:00:00 2001 From: Uwe Hermann Date: Thu, 30 Jan 2014 22:37:29 +0100 Subject: s/out_proto/out_python/. The output type is now called OUTPUT_PYTHON, adapt all PDs to that. --- decoders/i2cfilter/pd.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'decoders/i2cfilter') diff --git a/decoders/i2cfilter/pd.py b/decoders/i2cfilter/pd.py index 70613d2..09c12f1 100644 --- a/decoders/i2cfilter/pd.py +++ b/decoders/i2cfilter/pd.py @@ -46,7 +46,7 @@ class Decoder(srd.Decoder): self.packets = [] # Local cache of I²C packets def start(self): - self.out_proto = self.register(srd.OUTPUT_PYTHON, proto_id='i2c') + self.out_python = self.register(srd.OUTPUT_PYTHON, proto_id='i2c') if self.options['address'] not in range(0, 127 + 1): raise Exception('Invalid slave (must be 0..127).') if self.options['direction'] not in ('both', 'read', 'write'): @@ -86,7 +86,7 @@ class Decoder(srd.Decoder): # TODO: START->STOP chunks with both read and write (Repeat START) # Otherwise, send out the whole chunk of I²C packets. for p in self.packets: - self.put(p[0], p[1], self.out_proto, p[2]) + self.put(p[0], p[1], self.out_python, p[2]) self.packets = [] else: -- cgit v1.2.3-70-g09d2