From: Uwe Hermann Date: Mon, 7 Oct 2013 22:26:54 +0000 (+0200) Subject: i2s: Define/use common proto out format. X-Git-Tag: libsigrokdecode-0.3.0~289 X-Git-Url: https://sigrok.org/gitweb/?p=libsigrokdecode.git;a=commitdiff_plain;h=4adb11a93d77de94d3114624dce5464c2d25cd61;hp=2b2b7c300e6771ac6aa2982ced109ef3f02f3636 i2s: Define/use common proto out format. --- diff --git a/decoders/i2s/pd.py b/decoders/i2s/pd.py index b1f36ca..39669f8 100644 --- a/decoders/i2s/pd.py +++ b/decoders/i2s/pd.py @@ -22,6 +22,19 @@ import sigrokdecode as srd +''' +Protocol output format: + +Packet: +[, ] + +, : + - 'DATA', [, ] + +: 'L' or 'R' +: integer +''' + class Decoder(srd.Decoder): api_version = 1 id = 'i2s' @@ -100,7 +113,7 @@ class Decoder(srd.Decoder): # Only submit the sample, if we received the beginning of it. if self.start_sample != None: self.samplesreceived += 1 - self.putpb(['data', self.data]) + self.putpb(['DATA', ['L' if self.oldws else 'R', self.data]]) self.putb([0 if self.oldws else 1, ['0x%08x' % self.data]]) # Check that the data word was the correct length.