Skip to content

Commit

Permalink
Bump src
Browse files Browse the repository at this point in the history
  • Loading branch information
KenwoodFox committed May 11, 2024
1 parent d612a18 commit e071b70
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion Firmware/src/main.c
Original file line number Diff line number Diff line change
Expand Up @@ -19,12 +19,15 @@ void led_task()

int main()
{
// From pico SDK, init all
stdio_init_all();

// FreeRTOS Create tasks
xTaskCreate(led_task, "LED_Task", 256, NULL, 1, NULL);
vTaskStartScheduler();

while (1)
while (true)
{
// Main task can never exit
};
}

0 comments on commit e071b70

Please sign in to comment.