X-Git-Url: https://sigrok.org/gitweb/?a=blobdiff_plain;f=decoders%2Fi2s%2Fpd.py;h=39669f8080aeb18b975591688ce451db5179568d;hb=4adb11a93d77de94d3114624dce5464c2d25cd61;hp=b921011589bd3592824efb6d68ff5ad9b3b76561;hpb=24c74fd30fb161837c5f8b01baf3c0fe2dfa4ed5;p=libsigrokdecode.git diff --git a/decoders/i2s/pd.py b/decoders/i2s/pd.py index b921011..39669f8 100644 --- a/decoders/i2s/pd.py +++ b/decoders/i2s/pd.py @@ -1,5 +1,5 @@ ## -## This file is part of the sigrok project. +## This file is part of the libsigrokdecode project. ## ## Copyright (C) 2012 Joel Holdsworth ## @@ -22,8 +22,18 @@ import sigrokdecode as srd -# Annotation formats -ANN_HEX = 0 +''' +Protocol output format: + +Packet: +[, ] + +, : + - 'DATA', [, ] + +: 'L' or 'R' +: integer +''' class Decoder(srd.Decoder): api_version = 1 @@ -42,7 +52,9 @@ class Decoder(srd.Decoder): optional_probes = [] options = {} annotations = [ - ['Hex', 'Annotations in hex format'], + ['left', 'Left channel'], + ['right', 'Right channel'], + ['warnings', 'Warnings'], ] def __init__(self, **kwargs): @@ -53,7 +65,6 @@ class Decoder(srd.Decoder): self.samplesreceived = 0 self.first_sample = None self.start_sample = None - self.samplenum = -1 self.wordlength = -1 def start(self, metadata): @@ -61,6 +72,12 @@ class Decoder(srd.Decoder): self.out_proto = self.add(srd.OUTPUT_PROTO, 'i2s') self.out_ann = self.add(srd.OUTPUT_ANN, 'i2s') + def putpb(self, data): + self.put(self.start_sample, self.samplenum, self.out_proto, data) + + def putb(self, data): + self.put(self.start_sample, self.samplenum, self.out_ann, data) + def report(self): # Calculate the sample rate. @@ -76,7 +93,7 @@ class Decoder(srd.Decoder): (self.samplesreceived, self.wordlength, samplerate) def decode(self, ss, es, data): - for samplenum, (sck, ws, sd) in data: + for self.samplenum, (sck, ws, sd) in data: # Ignore sample if the bit clock hasn't changed. if sck == self.oldsck: @@ -96,18 +113,13 @@ class Decoder(srd.Decoder): # Only submit the sample, if we received the beginning of it. if self.start_sample != None: self.samplesreceived += 1 - self.put(self.start_sample, self.samplenum, self.out_proto, - ['data', self.data]) - self.put(self.start_sample, self.samplenum, self.out_ann, - [ANN_HEX, ['%s: 0x%08x' % ('L' if self.oldws else 'R', - 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. if self.wordlength != -1 and self.wordlength != self.bitcount: - self.put(self.start_sample, self.samplenum, self.out_ann, - [ANN_HEX, ['WARNING: Received a %d-bit word, when a ' - '%d-bit word was expected' % (self.bitcount, - self.wordlength)]]) + self.putb([2, ['Received %d-bit word, expected %d-bit ' + 'word' % (self.bitcount, self.wordlength)]]) self.wordlength = self.bitcount