]> sigrok.org Git - libsigrokdecode.git/blobdiff - decoders/i2c.py
Decoder.output_new() now takes an extra protocol_id argument.
[libsigrokdecode.git] / decoders / i2c.py
index 0f554f78f5fefce887fdc612eed5edbb2d2c2b1c..23b12c34f4791720067d068f82627aa42dd60972 100644 (file)
@@ -180,8 +180,8 @@ class Decoder(sigrokdecode.Decoder):
         self.oldsda = None
 
     def start(self, metadata):
-        self.output_protocol = self.output_new(1)
-        self.output_annotation = self.output_new(0)
+        self.output_protocol = self.output_new(1, 'i2c')
+        self.output_annotation = self.output_new(0, 'i2c')
 
     def report(self):
         pass