Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: GlasgowEmbedded/glasgow
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 1db255deafe6
Choose a base ref
...
head repository: GlasgowEmbedded/glasgow
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: b6cc3b5afb37
Choose a head ref
  • 1 commit
  • 1 file changed
  • 1 contributor

Commits on Mar 11, 2019

  1. applet.interface.jtag_pinout: try most likely TRST# first.

    Faster enumeration and less stress on the DUT.
    whitequark committed Mar 11, 2019

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    b6cc3b5 View commit details
Showing with 2 additions and 1 deletion.
  1. +2 −1 software/glasgow/applet/interface/jtag_pinout/__init__.py
3 changes: 2 additions & 1 deletion software/glasgow/applet/interface/jtag_pinout/__init__.py
Original file line number Diff line number Diff line change
@@ -220,7 +220,8 @@ async def interact(self, device, args, iface):
self.logger.info("pull-L: %s", self._bits_to_str(pull_down_bits))

if len(self.bits) > 4:
trst_bits = self.bits
# Try possible TRST# pins from most to least likely.
trst_bits = pull_down_bits + high_z_bits + pull_up_bits
else:
trst_bits = set()