Task Create
Task Create
int main(void)
/* Create the three tasks with priorities 1,2,3. Only tasks will be created.
* An idle task is also created, which will be run when there are no tasks in RUN state */
while(1)
UART_Printf("\n\rTask1");
vTaskDelay(100);
while(1)
UART_Printf("\n\rTask2");
vTaskDelay(250);
}
/* Task1 with priority 3 */
while(1)
UART_Printf("\n\rTask3");
vTaskDelay(600);
while(1)