Quality RTOS & Embedded Software

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


Loading

Blocked task still executes

Posted by Gray on May 28, 2009
I have created a very simple shell of a programme that I need to generate four time based tasks and a couple of event ones. Having problem I have simplified it the following:
static void prvTask5ms( void *pvParameters )
{
// some work here for first time through then
portTickType lastTickTime;
int x = 0;

// set up counter to start
lastTickTime = xTaskGetTickCount();
for(;;)
{
//Delay from last time run not now
vTaskDelayUntil(&lastTickTime, (5 / portTICK_RATE_MS));

// do something
x++;
}
}

static void prvTask10ms( void *pvParameters )
{
// some work here for first time through then
portTickType lastTickTime;
int x = 0;

// set up counter to start
lastTickTime = xTaskGetTickCount();
for(;;)
{
//Delay from last time run not now
vTaskDelayUntil(&lastTickTime, (10 / portTICK_RATE_MS));

// do something
x++;

}
}

In execution task prvTask5ms runs first (having a high priority) as you would expect but does not stop running after calling the delay function. Looking at the MPLAB OS window it shows the task to be blocked but executing, following the debug trail also shown the task moving from the running to the blocked queue, just before returning it calls Task yield, this seems to do nothing? So returns straight back to the tasks after that it will never work as the counter are out of sequence.

I have build and run the demo SW and this seems to show the same problem

RE: Blocked task still executes

Posted by Richard on May 28, 2009
What is configTICK_RATE_HZ set to? Is it possible that (5 / portTICK_RATE_MS) is invalid?

Regards.

RE: Blocked task still executes

Posted by Gray on May 28, 2009
The tick rate is set to 1000, I have also tried a vTaskDelayUntil(&lastTickTime, (50/ portTICK_RATE_MS)); with no effect?


[ 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