Quality RTOS & Embedded Software

 Real time embedded FreeRTOS RSS feed 
Quick Start Supported MCUs PDF Books Trace Tools Ecosystem


Loading

Task switching does not work without osDelay in loop

Posted by erikclaij on June 13, 2017

Hi,

In this simple example, I have created a task where I start a Timer (for a blinking LED). After the timer is running a start the endless loop. The LED will only blink if I include the osDelay(1) function in it.

Am I missing something?

Best, Erik

~~~ void ControlCenter(void const *argument) { osTimerId activityLedID;

osTimerDef(activityLed, ActivityLed);
activityLedID = osTimerCreate(osTimer(activityLed), osTimerPeriodic, NULL);
osTimerStart(activityLedID, 20UL);

while(1)
{
  osDelay(1); // Why do I need this ????
}

} ~~~


Task switching does not work without osDelay in loop

Posted by hs2sf on June 13, 2017

Check your task prio vs. configTIMERTASKPRIORITY. Seems that your task starves the timer task due to running at higher prio than the timer service. The delay puts your task in blocked state and allows the timer task to run for a while. You should block your task(s) somehow (waiting for an event) to avoid hogging the CPU doing nothing.


Task switching does not work without osDelay in loop

Posted by richard_damon on June 14, 2017

Another posibility is that you have configured FreeRTOS to not use preemption, in which case the loop needs some call that allows FreeRTOS to preempt the task.

Also, there is no reason for a user task to just have a while(1) {} loop, a task should only use the CPU when it has something to do, and when it doesn't, it should block till it has something (or exit if it is totally done).


Task switching does not work without osDelay in loop

Posted by erikclaij on June 15, 2017

Thanks, it was indeed a prio problem.


[ Back to the top ]    [ About FreeRTOS ]    [ Privacy ]    [ Sitemap ]    [ ]


Copyright (C) Amazon Web Services, Inc. or its affiliates. All rights reserved.

Latest News

NXP tweet showing LPC5500 (ARMv8-M Cortex-M33) running FreeRTOS.

Meet Richard Barry and learn about running FreeRTOS on RISC-V at FOSDEM 2019

Version 10.1.1 of the FreeRTOS kernel is available for immediate download. MIT licensed.

View a recording of the "OTA Update Security and Reliability" webinar, presented by TI and AWS.


Careers

FreeRTOS and other embedded software careers at AWS.



FreeRTOS Partners

ARM Connected RTOS partner for all ARM microcontroller cores

Espressif ESP32

IAR Partner

Microchip Premier RTOS Partner

RTOS partner of NXP for all NXP ARM microcontrollers

Renesas

STMicro RTOS partner supporting ARM7, ARM Cortex-M3, ARM Cortex-M4 and ARM Cortex-M0

Texas Instruments MCU Developer Network RTOS partner for ARM and MSP430 microcontrollers

OpenRTOS and SafeRTOS

Xilinx Microblaze and Zynq partner