This is an automated email from Gerrit. "Richard Allen <rsa...@gmail.com>" just uploaded a new patch set to Gerrit, which you can find at https://review.openocd.org/c/openocd/+/8910
-- gerrit commit d0e9488f8f84418310da54241f172257f103e178 Author: Richard Allen <rsa...@gmail.com> Date: Fri May 16 20:26:08 2025 -0500 target/espressif: add profiling function for ESP32(original) Use the TRAX interface DEBUGPC if available. Otherwise use default stop-and-go profiling. FT2232H+Linux: 97ksample/second @ 20mbps JTAG Change-Id: I1dda43df2727b542b08e338f7f4ba63530844a4f Signed-off-by: Richard Allen <rsa...@gmail.com> diff --git a/src/target/espressif/esp32.c b/src/target/espressif/esp32.c index 399ba8e7cd..723faf293d 100644 --- a/src/target/espressif/esp32.c +++ b/src/target/espressif/esp32.c @@ -501,4 +501,5 @@ struct target_type esp32_target = { .deinit_target = esp_xtensa_target_deinit, .commands = esp32_command_handlers, + .profiling = esp_xtensa_profiling, }; --