Quality RTOS & Embedded Software

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


Loading

How Long Does It Take To Unblock?

Posted by John W. on December 20, 2005
In RCV IRQ:

if( xQueueSendFromISR( xRxedCharsU0, &cChar, pdFALSE ) )
{
/*If the post causes a task to wake force a context switch as the woken task may have a higher priority than the task we have interrupted. */
taskYIELD();
}

In task:

for (EVER)
{

/* Block on the queue that contains received bytes until a byte is
available. */
if( xQueueReceive( xRxedCharsU0, &cByteRxed, comRX_BLOCK_TIME ) )
{
...

How long does it take for the task to be unblocked? Is it a function of the timer tick or of the CPU clock?

Thanks.


RE: How Long Does It Take To Unblock?

Posted by Richard on December 20, 2005
In this case the timer tick does not effect the time it takes to unblock as the action occurs in the ISR. Posting to the queue may cause a task to be unblocked and placed in the ready queue. If such a task has a priority higher than the interrupted task then xQueueSendFromISR() will return true and taskYIELD will be called. taskYIELD makes the unblocked task the current task (just a pointer assignment) - meaning that the unblocked task is returned to as the ISR exists. A faster CPU clock will obviously make the function execute faster, but the tick rate is not relevant in this case.

Regards.


[ 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