added placeholder debug

This commit is contained in:
2025-12-23 17:28:32 -06:00
parent 322f7f0699
commit 82da4930e5

View File

@@ -95,6 +95,7 @@ extern "C" void app_main() {
// Main loop // Main loop
while (1) { while (1) {
// Your main application logic here // Your main application logic here
vTaskDelay(pdMS_TO_TICKS(100)); vTaskDelay(pdMS_TO_TICKS(1000));
printf("Main Loop\n");
} }
} }