Thrilled by the fact that FreeRTOS just lets you huck bytes over serial by calling printf.
void hello_task(void *pvParameter)
{
while(1){
printf("Hello world!\n");
vTaskDelay(100 / portTICK_RATE_MS);
}
}
That's it that's the task. Doing this in bare metal is such a pain in the ass.














