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: 1f04203b8854
Choose a base ref
...
head repository: GlasgowEmbedded/glasgow
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: fdc821609f72
Choose a head ref
  • 1 commit
  • 1 file changed
  • 1 contributor

Commits on Oct 15, 2019

  1. Unverified

    This user has not yet uploaded their public signing key.
    Copy the full SHA
    fdc8216 View commit details
Showing with 2 additions and 2 deletions.
  1. +2 −2 software/glasgow/applet/interface/jtag_openocd/__init__.py
4 changes: 2 additions & 2 deletions software/glasgow/applet/interface/jtag_openocd/__init__.py
Original file line number Diff line number Diff line change
@@ -76,13 +76,13 @@ class JTAGOpenOCDApplet(GlasgowApplet, name="jtag-openocd"):
::
glasgow run jtag-openocd tcp:localhost:2222
openocd -c -c 'interface remote_bitbang; remote_bitbang_port 2222'
openocd -c 'interface remote_bitbang; remote_bitbang_port 2222'
Usage with Unix domain sockets:
::
glasgow run jtag-openocd unix:/tmp/jtag.sock
openocd -c -c 'interface remote_bitbang; remote_bitbang_host /tmp/jtag.sock'
openocd -c 'interface remote_bitbang; remote_bitbang_host /tmp/jtag.sock'
"""

__pins = ("tck", "tms", "tdi", "tdo", "trst")