| FreeRTOS Support Archive
The FreeRTOS support forum is used to obtain active support directly from Real
Time Engineers Ltd.  In return for using our top quality software and services for
free, we request you play fair and do your bit to help others too!  Sign up
to receive notifications of new support topics then help where you can.
 
 
 
 
This is a read only archive of threads posted to the FreeRTOS support forum.
The archive is updated every week, so will not always contain the very latest posts.
Use these archive pages to search previous posts.  Use the Live FreeRTOS Forum
link to reply to a post, or start a new support thread.
 
[FreeRTOS Home]  [Live FreeRTOS Forum]  [FAQ]  [Archive Top]  [May 2009 Threads]
Blocked task still executesPosted by Gray  on May 28, 2009I 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 executesPosted by Richard  on May 28, 2009What is configTICK_RATE_HZ set to?  Is it possible that (5 / portTICK_RATE_MS) is invalid?
 Regards.
 
 RE: Blocked task still executesPosted by Gray  on May 28, 2009The tick rate is set to 1000, I have also tried a vTaskDelayUntil(&lastTickTime, (50/ portTICK_RATE_MS)); with no effect? 
						
 
 
						
 
							
								Copyright (C) Amazon Web Services, Inc. or its affiliates. All rights reserved.  |