OVMS3-idf/examples/system/gcov/main/gcov_example_func.c
Alexey Gerenkov 891f0db31d 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
2017-09-07 18:13:16 +03:00

10 lines
107 B
C

#include <stdio.h>
void blink_dummy_func(void)
{
static int i;
printf("Counter = %d\n", i++);
}