Quality RTOS & Embedded Software

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


Loading

How can I achieve this?

Posted by kuku2010 on June 28, 2012
Two threads, one needs to run at the highest possible frequency, but 90% of the time it has nothing to do, taking only a fraction of the tick. If it has nothing to do, I would like to suspend it until next tick, and let the second thread to use up the remaining time of the current tick.

When the next tick comes in, the first thread gets back to work.... repeating the cycles

This way, the higher priority task can run at the highest frequency

Thanks for any pointer!

RE: How can I achieve this?

Posted by Richard Damon on June 28, 2012
First, it sounds like the first task needs to be set to the highest priority in your system. Then, the task just needs to call vTaskDelay(1) to delay until the next tick.

A better question comes, is there a way you can set a semaphore when more work is available (can you get an interrupt when it happens and have an ISR give the semaphore), if so, then have the first task wait on a get for that semaphore, then you don't need to wait for the next tick, but it will run immediately.

RE: How can I achieve this?

Posted by kuku2010 on June 29, 2012
I was taking the first approach before posting the question, but I didn't like the idea of vTaskDelay(1), meaning the highest frequency for task 1 is only 1/2 of the tick frequency.

semaphore is not easy since i haven't found a good sport in ISR to put it in

Any other option?

RE: How can I achieve this?

Posted by rafleury on June 29, 2012
Why do you assume it would only run at 1/2 the tick frequency? From what I see, it would run at exactly the tick frequency.

RE: How can I achieve this?

Posted by Richard Damon on June 30, 2012
vTaskDelay(1) delays till the next tick. In general a call to vTaskDelay(n) waits for n ticks to happen before the task is rescheduled, since you might be part way through the current tick, it cause a delay of between n-1 and n ticks in duration (and thus a vTaskDelay(1) could delay for almost 0 time, if the tick interrupt occurs just after the call is processed). The task needs to be the highest priority, or their could be additional delay imposed due to higher tasks running.

I would really suggest looking again at the semaphore. Note that it is ok for the interrupt to give the semaphore multiple times if that makes the code significantly easier.

RE: How can I achieve this?

Posted by kuku2010 on July 2, 2012
Considering the nature of my project, I'd rather see task 1 to be paced in a timely fashion, thus semaphore may not work even I can issue it from ISR.

As for the vTaskDelay (1), my understanding was at tick 1, task1 ran for 1/f ticks, then it calls for vTaskDelay (1), so it will not come back to the ready state until 1+1/f, meaning it will miss the second tick. Am I right?

RE: How can I achieve this?

Posted by https://me.yahoo.com/a/ldSWNzYk on July 2, 2012
So maybe the following will solve your problem:
Make your Task 1 being the highest priority task in the system. Task 1 should block on waiting for a semaphore with for example xSemaphoreTake function. Once the semaphore is given, Task 1 wakes, does its job and blocks again waiting for the semaphore.

If you want your task to be run in timely manner and you think that waking Task 1 with system tick frequency is suitable, use Tick Hook Function and give the semaphore from void vApplicationTickHook( void ) function. Please note that this function needs some configs to be set and runs in interrupt context. More details can be found in http://www.freertos.org/a00016.html

Hope that helps,
Adam

RE: How can I achieve this?

Posted by rafleury on July 2, 2012
“As for the vTaskDelay (1), my understanding was at tick 1, task1 ran for 1/f ticks, then it calls for vTaskDelay (1), so it will not come back to the ready state until 1+1/f, meaning it will miss the second tick. Am I right?


I dont belive this is right. As Richard said in post 5., vTaskDelay(1) could potentially delay almost 0 time.

RE: How can I achieve this?

Posted by kuku2010 on July 2, 2012
thank you, richard_damon, adam and https://www.google.com/accounts

If "vTaskDelay(1) could potentially delay almost 0 time. ", shouldn't it be renamed vTaskDelay(0)?

If vTaskDelay(1) indeed guarantee task 1 to be called every tick, I would avoid semaphore

RE: How can I achieve this?

Posted by Richard on July 2, 2012
You have the resolution of one tick. Calling vTaskDelay( 1 ) will delay for nearly an entire tick period if it is called immediately after the last tick interrupt, or practically no time at all if it is called immediately before the next tick interrupt. You cannot have fractions of a tick.

vTaskDelay( 0 ) is equivalent to taskYIELD().

Generally, I don't think it is a good idea to have a task run every tick, unless you have a slow tick rate. It sounds like a candidate for code that would do better in a timer interrupt routine.

Regards.

RE: How can I achieve this?

Posted by kuku2010 on July 5, 2012
richardbarry, thanks for your explanation!


[ 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