mirror of
https://github.com/espressif/esp-idf.git
synced 2025-08-08 20:21:04 +00:00
esp32: Adds gcov over JTAG feature
Implements function to dump GCOV data to host via JTAG. The following functionality was added: - Host file I/O - GCOV runtime I/O stubs - GCOV example
This commit is contained in:
9
examples/system/gcov/main/gcov_example_func.c
Normal file
9
examples/system/gcov/main/gcov_example_func.c
Normal file
@@ -0,0 +1,9 @@
|
||||
#include <stdio.h>
|
||||
|
||||
|
||||
void blink_dummy_func(void)
|
||||
{
|
||||
static int i;
|
||||
printf("Counter = %d\n", i++);
|
||||
}
|
||||
|
Reference in New Issue
Block a user