This commit is contained in:
2023-03-07 22:27:42 +01:00
parent c8e7e2d3fa
commit 8651369c01
17 changed files with 1151 additions and 3 deletions
+6 -1
View File
@@ -9,6 +9,11 @@ void app_main(void)
while (1) {
printf("[%d] Hello world!\n", i);
i++;
vTaskDelay(5000 / portTICK_PERIOD_MS);
//vTaskDelay(5000 / portTICK_PERIOD_MS); // print helloworld every 5 seconds.
if((i % 10) == 0){
//TODO: blink led.
}
vTaskDelay(portTICK_PERIOD_MS); // print helloworld as fast as possible.
}
}