mirror of
https://github.com/espressif/esp-idf.git
synced 2025-11-07 02:21:49 +01:00
10 lines
107 B
C
10 lines
107 B
C
|
|
#include <stdio.h>
|
||
|
|
|
||
|
|
|
||
|
|
void blink_dummy_func(void)
|
||
|
|
{
|
||
|
|
static int i;
|
||
|
|
printf("Counter = %d\n", i++);
|
||
|
|
}
|
||
|
|
|