How freeRTOS serve Two or Multi Task?

erony-232 wrote on Wednesday, April 11, 2018:

I’m novice about freeRTOS.
I have created Two task

xTaskCreate(xTaskReadTemperature, “”, 100, NULL, 1, NULL);
xTaskCreate(xTaskDisplay, “”, 100, NULL, 1, NULL);

How actually freeRTOS handle two task?

rtel wrote on Wednesday, April 11, 2018:

xTaskCreate(xTaskReadTemperature, “”, 100, NULL, 1, NULL);
xTaskCreate(xTaskDisplay, “”, 100, NULL, 1, NULL);

Not sure if it is ok to have an empty name.

How actually freeRTOS handle two task?

That is a very broad questions, I would suggest starting with the free
book: Free RTOS Book and Reference Manual

erony-232 wrote on Wednesday, April 11, 2018:

Thanks :slight_smile:
There are two books.

Which one start first?