FreeRTOS - Task Scheduling
Given this FreeRTOS snippet, what is the error that prevents preemptive scheduling from working?
#define configUSE_PREEMPTION 0
void Task1(void *pvParameters) {
while(1) {
// Task code
}
}
void Task2(void *pvParameters) {
while(1) {
// Task code
}
}