Lines Matching +full:openocd +full:- +full:esp32
1 | Supported Targets | ESP32 | ESP32-S2 |
2 | ----------------- | ----- | -------- |
8 …-IDF project to generate code coverage data, and how generate a code coverage report using Gcov or…
12 * Various methods of dumping code coverage data (e.g. Instant Run-Time Dump and Hard-coded Dump).
21 …-WROVER-KIT](https://docs.espressif.com/projects/esp-idf/en/latest/hw-reference/modules-and-boards…
22 …ESP32 or ESP32-S2 core board (e.g. ESP32-DevKitC, [ESP32-S2-Saola-1](https://docs.espressif.com/pr…
24 This example will assume that that an ESP-WROVER-KIT is used.
26 …ESP32 board, and power up both the JTAG and ESP32. For details about how to set up JTAG interface,…
28 …ce, you need to [Run OpenOCD](https://docs.espressif.com/projects/esp-idf/en/latest/api-guides/jta…
30 …lnet by entering the command below. The telnet terminal window is used to feed commands to OpenOCD:
44 * Enable the Application Tracing Module under `Component config -> Application Level Tracing -> Dat…
45 * Enable GCOV to host interface under `Component config -> Application Level Tracing -> GCOV to Hos…
46 * Enable OpenOCD Debug Stubs under `Component config -> ESP System Settings -> OpenOCD debug stubs`
53 idf.py -p PORT flash monitor
58 (To exit the serial monitor, type ``Ctrl-]``.)
60 See the Getting Started Guide for full steps to configure and use ESP-IDF to build projects.
64 ### 1. Hard-coded Dump
66 …e two hard-coded dumps. Therefore, when the application outputs `Ready to dump GCOV data...`, user…
79 ### 2. Instant Run-Time Dump
81 …d-coded dumps, the example will continue looping through it's main blink function. Users can call …
107 … times, a coverage report can be generated by calling `cmake --build build/ --target gcovr-report`…
109 …d report related data from the build directory, call `cmake --build build/ --target cov-data-clean`
114 [1/2] Generating coverage report in: /home/user/esp/esp-idf/examples/system/gcov/build/coverage_rep…
115 Using gcov: xtensa-esp32-elf-gcov
116 …/esp-idf/examples/system/gcov/build && gcovr -r /home/user/esp/esp-idf/examples/system/gcov...a-es…
123 ### OpenOCD Out of Sync
125 …OpenOCD command via telnet, it could indicate that OpenOCD and the ESP32 are out of sync. This occ…
128 Open On-Chip Debugger
134 timed out while waiting for target halted / 1 - 2
135 Failed to wait halt on bp target (-4)!
136 Failed to halt targets (-4)!
137 Failed to connect to targets (-4)!
142 * Restart OpenOCD
149 python -m pip install gcovr