jtag comments

This commit is contained in:
Philippe Teuwen 2019-05-01 01:31:29 +02:00
commit 2eb4cd9162
7 changed files with 10 additions and 8 deletions

View file

@ -1,8 +1,8 @@
#define our ports # Ports
telnet_port 4444 telnet_port 4444
gdb_port 3333 gdb_port 3333
#commands specific to the Olimex ARM-USB-OCD Dongle # Commands specific to the Olimex ARM-USB-OCD Dongle
interface ft2232 interface ft2232
ft2232_device_desc "Olimex OpenOCD JTAG" ft2232_device_desc "Olimex OpenOCD JTAG"
ft2232_layout "olimex-jtag" ft2232_layout "olimex-jtag"

View file

@ -1,8 +1,8 @@
## General OpenOCD configuration
# Ports # Ports
telnet_port 4444 telnet_port 4444
gdb_port 3333 gdb_port 3333
# Commands specific to the Bus Blaster
interface ftdi interface ftdi
ftdi_device_desc "Dual RS232-HS" ftdi_device_desc "Dual RS232-HS"
ftdi_vid_pid 0x0403 0x6010 ftdi_vid_pid 0x0403 0x6010

View file

@ -2,7 +2,7 @@
telnet_port 4444 telnet_port 4444
gdb_port 3333 gdb_port 3333
# Interface # Commands specific to the BusPirate
interface buspirate interface buspirate
buspirate_port /dev/ttyUSB0 buspirate_port /dev/ttyUSB0
adapter_khz 1000 adapter_khz 1000

View file

@ -1,7 +1,8 @@
#define our ports # Ports
telnet_port 4444 telnet_port 4444
gdb_port 3333 gdb_port 3333
# Commands specific to the Segger J-Link
interface jlink interface jlink
transport select jtag transport select jtag
adapter_khz 1000 adapter_khz 1000

View file

@ -1,8 +1,8 @@
#define our ports # Ports
telnet_port 4444 telnet_port 4444
gdb_port 3333 gdb_port 3333
#commands specific to the Amontec JTAGKey # Commands specific to the Amontec JTAGKey
interface ft2232 interface ft2232
ft2232_device_desc "Amontec JTAGkey A" ft2232_device_desc "Amontec JTAGkey A"
ft2232_layout jtagkey ft2232_layout jtagkey

View file

@ -1,6 +1,7 @@
telnet_port 4444 telnet_port 4444
gdb_port 3333 gdb_port 3333
# Commands specific to the Wiggler
interface parport interface parport
parport_port 0x378 parport_port 0x378
parport_cable wiggler parport_cable wiggler

View file

@ -1,6 +1,6 @@
#!/bin/bash #!/bin/bash
# Example for 512kb version, using Segger Jlink: # Example using Segger Jlink:
CONFIG_CHIP=chip-at91sam7s.cfg CONFIG_CHIP=chip-at91sam7s.cfg
CONFIG_IF=interface-jlink.cfg CONFIG_IF=interface-jlink.cfg
IMAGE=../../recovery/proxmark3_recovery.bin IMAGE=../../recovery/proxmark3_recovery.bin