Quality RTOS & Embedded Software

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


Loading

Simulate tasks running for x tick

Posted by betlemme on November 11, 2015

Hi everybody, dumb question. is this :

~~~~ TickTypet xTime = xTaskGetTickCount (); for ( TickTypet x = xTime; x <= xTime + TOT; x = xTaskGetTickCount () ) { //nothing } ~~~~

a proper way to keep a task in running state for TOT number of tick?

Enrico


Simulate tasks running for x tick

Posted by rtel on November 11, 2015

It is not clear why you would want to do this - but if it is your intention to just have a task run continuously for a fixed number of ticks, then the code you suggest has a couple of problems:

1) It assumes the task that is executing this code is the highest priority task. If it is not the highest priority task then it won't necessarily run continuously without being preempted.

2) I think the way you have formulated the tests will not take into account the tick count potentially overflowing. Better would be:

x = xTaskGetTickCount(); while( ( xTaskGetTickCount() - x ) < TOT ) { }

3) The code might be optimised away if you turn on compiler optimisation. Best to make the variables volatile.


Simulate tasks running for x tick

Posted by betlemme on November 11, 2015

My goal is to create just a test application. Gold advices. thanks!


[ 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