Page 1 of 1

Where can I found the openOCD interface file for ESP-Prog?

Posted: Fri Aug 03, 2018 2:52 am
by Super169
I just bought the ESP-Prog for debugging the ESP32 sketch.
I have follow the step here to config for JTAG Debugging (http://esp-idf.readthedocs.io/en/latest ... ndex.html#)

When I go to the step to Run OpenOCD, it need to provide the interface file, I can find some interface files in openocd\scripts\interface & openocd\scripts\interface\ftdi.

But I don't know which one is suitable for ESP-Prog, there does not have a cfg with the name like ESP-Prog.

Does anyone know where I can get the interface file to ESP-Prog, or which of the existings interface file can be used?

Thanks a lot!

Re: Where can I found the openOCD interface file for ESP-Prog?

Posted: Mon Jan 21, 2019 5:28 pm
by lkuchars
I know it might be too late for this now but on one of the links from page you mentioned earlier there's an example:

Code: Select all

cd ~/esp/openocd-esp32
bin/openocd -s share/openocd/scripts -f interface/ftdi/esp32_devkitj_v1.cfg -f board/esp-wroom-32.cfg
the second -f argument you need to change of course if you're using different board.

cheers
Lukas