-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
599a809
commit 021f0ad
Showing
3 changed files
with
30 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
openocd -f interface/jlink.cfg -f board/rpi4b.cfg |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
# SPDX-License-Identifier: GPL-2.0-or-later | ||
|
||
# | ||
# SEGGER J-Link | ||
# | ||
# http://www.segger.com/jlink.html | ||
# | ||
|
||
adapter driver jlink | ||
|
||
# The serial number can be used to select a specific device in case more than | ||
# one is connected to the host. | ||
# | ||
# Example: Select J-Link with serial number 123456789 | ||
# | ||
# adapter serial 123456789 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
# SPDX-License-Identifier: GPL-2.0-or-later | ||
|
||
# This is the Raspberry Pi 4 model B board with BCM2711 chip | ||
# https://www.raspberrypi.org/documentation/hardware/raspberrypi/bcm2711/README.md | ||
# | ||
# Enable JTAG GPIO on Raspberry Pi boards | ||
# https://www.raspberrypi.org/documentation/configuration/config-txt/gpio.md | ||
|
||
source [find target/bcm2711.cfg] | ||
transport select jtag | ||
|
||
# Raspberry Pi boards only expose Test Reset (TRST) pin, no System Reset (SRST) | ||
reset_config trst_only |