X-Git-Url: https://sigrok.org/gitweb/?a=blobdiff_plain;f=decoders%2Fusb%2Fusb.py;h=15b42a9ee5360e4b11763d2e27e3522a409f830d;hb=71077f34ffbd7d4015886a229edb2f2f827cb442;hp=bd402dd23c88a652c54d145f899d6ffda3679f83;hpb=2b7160383cc189f721600c04be17a980e216dfd6;p=libsigrokdecode.git diff --git a/decoders/usb/usb.py b/decoders/usb/usb.py index bd402dd..15b42a9 100644 --- a/decoders/usb/usb.py +++ b/decoders/usb/usb.py @@ -24,6 +24,7 @@ import sigrokdecode as srd # Symbols (used as states of our state machine, too) syms = { + # (, ): (0, 0): 'SE0', (1, 0): 'J', (0, 1): 'K', @@ -65,7 +66,6 @@ def packet_decode(packet): dev = bitstr_to_num(data[:7]) ep = bitstr_to_num(data[7:]) data = 'DEV %d EP %d' % (dev, ep) - elif pid in ('DATA0', 'DATA1'): data = packet[16:-16] tmp = '' @@ -86,8 +86,7 @@ class Decoder(srd.Decoder): id = 'usb' name = 'USB' longname = 'Universal Serial Bus' - desc = 'Universal Serial Bus' - longdesc = '...longdesc...' + desc = 'USB 1.x (full-speed) serial protocol.' license = 'gplv2+' inputs = ['logic'] outputs = ['usb'] @@ -98,51 +97,52 @@ class Decoder(srd.Decoder): optional_probes = [] options = {} annotations = [ - ['TODO', 'TODO'] + ['Text', 'Human-readable text'] ] def __init__(self): - pass + self.sym = 'J' + self.samplenum = 0 + self.scount = 0 + self.packet = '' def start(self, metadata): - self.rate = metadata['samplerate'] + self.samplerate = metadata['samplerate'] + + if self.samplerate < 48000000: + raise Exception('Samplerate (%d) not sufficient for USB ' + 'decoding, need at least 48MHz' % self.samplerate) # self.out_proto = self.add(srd.OUTPUT_PROTO, 'usb') self.out_ann = self.add(srd.OUTPUT_ANN, 'usb') - if self.rate < 48000000: - raise Exception('Sample rate (%d) not sufficient for USB ' - 'decoding, need at least 48MHz' % self.rate) - - # Initialise decoder state. - self.sym = 'J' - self.scount = 0 - self.packet = '' - def report(self): pass def decode(self, ss, es, data): - for (samplenum, (dm, dp)) in data: + for (self.samplenum, (dp, dm)) in data: + # Note: self.samplenum is the absolute sample number, whereas + # self.scount only counts the number of samples since the + # last change in the D+/D- lines. self.scount += 1 sym = syms[dp, dm] - # ... + # Wait for a symbol change (i.e., change in D+/D- lines). if sym == self.sym: continue if self.scount == 1: - # We ignore single sample width pulses. - # I sometimes get these with the OLS. + # We ignore single sample width "pulses", i.e., symbol changes + # (D+/D- line changes). I sometimes get these with the OLS. self.sym = sym self.scount = 0 continue # How many bits since the last transition? if self.packet != '' or self.sym != 'J': - bitcount = int((self.scount - 1) * 12000000 / self.rate) + bitcount = int((self.scount - 1) * 12000000 / self.samplerate) else: bitcount = 0