Skip to content

amirgon/ESP32-JTAG

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

7 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

ESP32 FT232H JTAG Debugging on Linux

Prerequisites

  • ESP-IDF installed, including xtensa compiler toolchain. We will need xtensa-esp32-elf-gdb.
  • ESP32 OpenOCD dependencies
  • Build ESP32 OpenOCD. It's included as a submodule in this repo.
  • ELF file of the compiled firmware, such as application.elf.

FTDI Board

I'm using a 7$ CJMCU FT232H from AliExpress.

Image of CJMCU FT232H

FTDI Hardware connection

ESP32 PORT  FT232H PORT  COLOR
==========  ==========   ======
GPIO13      AD0 (TCK)    Purple
GPIO12      AD1 (TDI)    Blue
GPIO15      AD2 (TDO)    Green
GPIO14      AD3 (TMS)    Yellow
GND         GND          Black

Usage

  • ./run will start OpenOCD. It will start and wait for gdb connection, default gdb port is 3333.
  • Start gdb in a seperate command window, and connect to port 3333. For example:
xtensa-esp32-elf-gdb -ex 'target remote localhost:3333' <path to application.elf>

Example

$ ./run
Open On-Chip Debugger  v0.10.0-esp32-20191114-1083-g97ba3a6b (2020-01-02-00:31)
Licensed under GNU GPL v2
For bug reports, read
	http://openocd.org/doc/doxygen/bugs.html
Info : Configured 2 cores
Info : Listening on port 6666 for tcl connections
Info : Listening on port 4444 for telnet connections
Info : ftdi: if you experience problems at higher adapter clocks, try the command "ftdi_tdo_sample_edge falling"
Info : clock speed 20000 kHz
Info : JTAG tap: esp32.cpu0 tap/device found: 0x120034e5 (mfg: 0x272 (Tensilica), part: 0x2003, ver: 0x1)
Info : JTAG tap: esp32.cpu1 tap/device found: 0x120034e5 (mfg: 0x272 (Tensilica), part: 0x2003, ver: 0x1)
Info : Target halted. CPU0: PC=0x40096B0F 
Info : Target halted. CPU1: PC=0x40120E2E (active)
Info : Listening on port 3333 for gdb connections
Info : accepting 'gdb' connection on tcp/3333
$ xtensa-esp32-elf-gdb -ex 'target remote localhost:3333' ../lv_mpy/ports/esp32/build-GENERIC_SPIRAM/application.elf 
GNU gdb (crosstool-NG crosstool-ng-1.22.0-80-g6c4433a) 7.10
Copyright (C) 2015 Free Software Foundation, Inc.
License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.html>
This is free software: you are free to change and redistribute it.
There is NO WARRANTY, to the extent permitted by law.  Type "show copying"
and "show warranty" for details.
This GDB was configured as "--host=x86_64-build_pc-linux-gnu --target=xtensa-esp32-elf".
Type "show configuration" for configuration details.
For bug reporting instructions, please see:
<http://www.gnu.org/software/gdb/bugs/>.
Find the GDB manual and other documentation resources online at:
<http://www.gnu.org/software/gdb/documentation/>.
For help, type "help".
Type "apropos word" to search for commands related to "word"...
Reading symbols from ../lv_mpy/ports/esp32/build-GENERIC_SPIRAM/application.elf...done.
Remote debugging using localhost:3333
0x401fbb46 in esp_pm_impl_waiti () at /home/amirgon/esp/esp-idf/components/esp32/pm_esp32.c:487
487	    asm("waiti 0");

References

About

ESP32 FT232H JTAG Debugging on Linux

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages