-
Notifications
You must be signed in to change notification settings - Fork 134
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
tcl/board: esp usb bridge board config added for the chips
- Loading branch information
Showing
5 changed files
with
53 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,12 @@ | ||
# Example OpenOCD configuration file for ESP32 connected via ESP USB Bridge board | ||
# | ||
# For example, OpenOCD can be started for ESP32 debugging on | ||
# | ||
# openocd -f board/esp32-bridge.cfg | ||
# | ||
|
||
# Source the JTAG interface configuration file | ||
source [find interface/esp_usb_bridge.cfg] | ||
# Source the ESP32-S3 configuration file | ||
source [find target/esp32.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,11 @@ | ||
# Example OpenOCD configuration file for ESP32-C3 connected via ESP USB Bridge board | ||
# | ||
# For example, OpenOCD can be started for ESP32-C3 debugging on | ||
# | ||
# openocd -f board/esp32c3-bridge.cfg | ||
# | ||
|
||
# Source the JTAG interface configuration file | ||
source [find interface/esp_usb_bridge.cfg] | ||
# Source the ESP32-C3 configuration file | ||
source [find target/esp32c3.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,11 @@ | ||
# Example OpenOCD configuration file for ESP32-S2 connected via ESP USB Bridge board | ||
# | ||
# For example, OpenOCD can be started for ESP32-S2 debugging on | ||
# | ||
# openocd -f board/esp32s2-bridge.cfg | ||
# | ||
|
||
# Source the JTAG interface configuration file | ||
source [find interface/esp_usb_bridge.cfg] | ||
# Source the ESP32-S2 configuration file | ||
source [find target/esp32s2.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,12 @@ | ||
# Example OpenOCD configuration file for ESP32-S3 connected via ESP USB Bridge board | ||
# | ||
# For example, OpenOCD can be started for ESP32-S3 debugging on | ||
# | ||
# openocd -f board/esp32s3-bridge.cfg | ||
# | ||
|
||
# Source the JTAG interface configuration file | ||
source [find interface/esp_usb_bridge.cfg] | ||
# Source the ESP32-S3 configuration file | ||
source [find target/esp32s3.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,7 @@ | ||
|
||
interface esp_usb_jtag | ||
|
||
esp_usb_jtag_vid_pid 0x303a 0x1002 | ||
|
||
#max speed | ||
adapter_khz 40000 |