1
0
mirror of https://github.com/espressif/esp-idf synced 2025-04-10 08:40:09 -04:00
2019-11-12 18:42:02 +03:00

10 lines
125 B
C

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