diff options
Diffstat (limited to 'decoders/jtag')
-rw-r--r-- | decoders/jtag/__init__.py | 1 | ||||
-rw-r--r-- | decoders/jtag/pd.py | 3 |
2 files changed, 1 insertions, 3 deletions
diff --git a/decoders/jtag/__init__.py b/decoders/jtag/__init__.py index 047e54a..0caf5aa 100644 --- a/decoders/jtag/__init__.py +++ b/decoders/jtag/__init__.py @@ -29,4 +29,3 @@ http://focus.ti.com/lit/an/ssya002c/ssya002c.pdf ''' from .pd import * - diff --git a/decoders/jtag/pd.py b/decoders/jtag/pd.py index d7b35aa..49077ed 100644 --- a/decoders/jtag/pd.py +++ b/decoders/jtag/pd.py @@ -143,7 +143,7 @@ class Decoder(srd.Decoder): # Rising TCK edges always advance the state machine. self.advance_state_machine(tms) - if self.first == True: + if self.first: # Save the start sample and item for later (no output yet). self.ss_item = self.samplenum self.first = False @@ -214,4 +214,3 @@ class Decoder(srd.Decoder): self.handle_rising_tck_edge(tdi, tdo, tck, tms) self.oldtck = tck - |