Lines Matching +full:openocd +full:- +full:esp32

1 | Supported Targets | ESP32 | ESP32-S2 | ESP32-C3 |
2 | ----------------- | ----- | -------- | -------- |
3 # Example: Application Level Tracing - SystemView Tracing (sysview_tracing)
5 … to perform system-wide behavioral analysis of the program using [SEGGER SystemView tool](https://…
7 …if.com/projects/esp-idf/en/latest/api-guides/app_trace.html#system-behaviour-analysis-with-segger-
22 if (tim_arg->thnd != NULL) {
23 if (tim_arg->count++ < 10) {
25 …if (xTaskNotifyFromISR(tim_arg->thnd, tim_arg->count, eSetValueWithOverwrite, &xHigherPriorityTask…
26 ESP_EARLY_LOGE(TAG, "Failed to notify task %p", tim_arg->thnd);
34 // re-start timer
35 example_timer_rearm(tim_arg->group, tim_arg->timer);
49 esp_err_t res = timer_isr_register(arg->group, arg->timer, example_timer_isr, arg, 0, &inth);
54 res = timer_start(arg->group, arg->timer);
84-in functionality to trace FreeRTOS internal operations SystemView also provides user with means t…
87 There are two ways to send user-defined info to SystemView:
88-in SystemView messages. This method uses `SEGGER_SYSVIEW_OnUserStart` and `SEGGER_SYSVIEW_OnUserS…
93ESP32 board, power up both JTAG and ESP32. For details how to setup JTAG interface see [JTAG Debug…
95OpenOCD](https://docs.espressif.com/projects/esp-idf/en/latest/api-guides/jtag-debugging/index.htm…
98 cd ~/esp/openocd-esp32
99 bin/openocd -s share/openocd/scripts -f board/esp32-wrover-kit-3.3v.cfg
101 NOTE: In order to run this example you need OpenOCD version `v0.10.0-esp32-20181105` or later.
105 …IDs and parameters for custom messages in `Events` view. To make them pretty-looking you need to d…
115 # For dual-core mode uncomment the line below and comment the line above
127 xtensa-esp32-elf-gdb -x gdbinit build/sysview_tracing.elf
130 …**Note:** Replace `xtensa-esp32-elf-gdb` with `xtensa-esp32s2-elf-gdb` if running the example on E…
142 9. Right-click on any event in `Events` view and select:
144 - `Show User Events only` if you compiled example to use only built-in event.
145 - `Show APIs only` if you compiled example to use custom events.
147 10. Now you can navigate over user-defined messages and see when timer `TG1_T0_LEVEL` sends events…