while loop in app_main, outside freeRTOS task scope
Posted: Sun Sep 08, 2019 8:55 pm
Hi, I wonder how a non freeRTOS tasks could affect a freeRTOS tasks.
Eg : in app_main() i could write smtg like
xTaskCreate(test_task, "someTasks", 4096, NULL, 5, NULL);
while(1)
{
printf("hello");
}
technically printf should block test_task from running at all ? or how what will happen ?
btw my experience :
I am a firmware coder but all the while been doing with bare-metal way so i have least experience with freeRTOS
Eg : in app_main() i could write smtg like
xTaskCreate(test_task, "someTasks", 4096, NULL, 5, NULL);
while(1)
{
printf("hello");
}
technically printf should block test_task from running at all ? or how what will happen ?
btw my experience :
I am a firmware coder but all the while been doing with bare-metal way so i have least experience with freeRTOS