Tronlong_T113i_C906_FreeRTOS/src/main.c

9 lines
118 B
C
Raw Normal View History

2024-03-08 16:05:09 +00:00
#include <stdint.h>
static volatile uint64_t s_count = 0U;
int main(void) {
for(;;) {
s_count++;
}
}