X-Git-Url: http://sigrok.org/gitweb/?p=libsigrokdecode.git;a=blobdiff_plain;f=decoders%2Fusb_signalling%2Fpd.py;fp=decoders%2Fusb_signalling%2Fpd.py;h=c60075c548b0ea840b7ed6e34c25cfeaecc7fb23;hp=cea579a54aa08106212755bc7148acf05122f822;hb=502acfc2c71a2bbc97d4d7597150cd479bead1ee;hpb=1647db062c75b5058fbbd581438a25e76f17cde6 diff --git a/decoders/usb_signalling/pd.py b/decoders/usb_signalling/pd.py index cea579a..c60075c 100644 --- a/decoders/usb_signalling/pd.py +++ b/decoders/usb_signalling/pd.py @@ -69,10 +69,11 @@ symbols = { (0, 1): 'LS_J', (1, 1): 'SE1', }, -# After a PREamble PID, the bus segment between Host and Hub uses LS signalling -# rate and FS signalling polarity (USB 2.0 spec, 11.8.4: "For both upstream and -# downstream low-speed data, the hub is responsible for inverting the polarity of -# the data before transmitting to/from a low-speed port." + # After a PREamble PID, the bus segment between Host and Hub uses LS + # signalling rate and FS signalling polarity (USB 2.0 spec, 11.8.4: "For + # both upstream and downstream low-speed data, the hub is responsible for + # inverting the polarity of the data before transmitting to/from a + # low-speed port."). 'low-speed-rp': { # (, ): (0, 0): 'SE0', @@ -83,8 +84,8 @@ symbols = { } bitrates = { - 'low-speed': 1500000, # 1.5Mb/s (+/- 1.5%) - 'low-speed-rp': 1500000, # 1.5Mb/s (+/- 1.5%) + 'low-speed': 1500000, # 1.5Mb/s (+/- 1.5%) + 'low-speed-rp': 1500000, # 1.5Mb/s (+/- 1.5%) 'full-speed': 12000000, # 12Mb/s (+/- 0.25%) 'automatic': None } @@ -201,7 +202,7 @@ class Decoder(srd.Decoder): if sym != 'K' or self.oldsym != 'J': return self.consecutive_ones = 0 - self.bits = "" + self.bits = '' self.update_bitrate() self.samplepos = self.samplenum - (self.bitwidth / 2) + 0.5 self.set_new_target_samplenum()