mirror of
https://github.com/espressif/esp-idf.git
synced 2025-10-04 19:10:58 +02:00
10 lines
131 B
C
10 lines
131 B
C
![]() |
#include <stdio.h>
|
||
|
|
||
|
|
||
|
void some_dummy_func(void)
|
||
|
{
|
||
|
static int i;
|
||
|
printf("some_dummy_func: Counter = %d\n", i++);
|
||
|
i++;
|
||
|
}
|