#include <stdio.h>
#include <freertos/FreeRTOS.h>
int count = 0;
void app_main(void) {
while (1) {
printf("計數值:%d\n", count++);
vTaskDelay(pdMS_TO_TICKS(500));
}
}#include <stdio.h>
#include <freertos/FreeRTOS.h>
int count = 0;
void app_main(void) {
while (1) {
printf("計數值:%d\n", count++);
vTaskDelay(pdMS_TO_TICKS(500));
}
}