Quality RTOS & Embedded Software

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


Loading

xTaskGetTickCount during ISR

Posted by Nobody/Anonymous on April 28, 2007
I am working with the MSP430 port and have a problem with the xTaskGetTickCount() function.

I want to measure a time between two edges and call the function xTaskGetTickCount() to get the actual time. If I do this from a Interrupt Service Routine the system is not working. Below is the function from the file task.c listed.

portTickType xTaskGetTickCount( void )
{
portTickType xTicks;

/* Critical section required if running on a 16 bit processor. */
taskENTER_CRITICAL();
{
xTicks = xTickCount;
}
taskEXIT_CRITICAL();

return xTicks;
}

If I comment out taskENTER_CRITICAL() and taskEXIT_CRITICAL() all works fine.

Is the comment with 16 bit processor always correct ?
I think, this comment and the functions are only necessary, if:

- running on a 8 bit processor
or
- running on a 16 bit processor with configUSE_16_BIT_TICKS 0

Klaus

RE: xTaskGetTickCount during ISR

Posted by Richard on April 28, 2007
Your assumption is correct. The comment is a bit historical. As long as read access to the variable is atomic then you don't need the critical section. From within an ISR you definitely should not use a critical section.

You could provide another function xTaskGetTickCountFromISR() which does the same without the critical section to be totally sure.

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