system
(system)
#1
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
(Richard Barry)
#2
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: https://www.freertos.org/Documentation/RTOS_book.html
system
(system)
#3
erony-232 wrote on Wednesday, April 11, 2018:
Thanks 
There are two books.
Which one start first?