Quality RTOS & Embedded Software

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


Loading

v8.2.2 - xTaskCallApplicationTaskHook() Question

Posted by westmorelandeng on August 16, 2015

Hello All,

I am using the following call:

xTaskCallApplicationTaskHook( NULL, 0 );

that goes to (example)

BaseType_t prvExampleTaskHook4( void * pvParameter )

when I step through in a debugger - the task hook is called twice - I was wondering if there was a way to have it only called once - of course this (probably) has everything to do with the parent task but I was wondering if there is a way to make sure the call only happens once per time slice of the parent task. (Or maybe the parent task in this case is getting two time slices in a row?)

Thanks, John W.


v8.2.2 - xTaskCallApplicationTaskHook() Question

Posted by rtel on August 16, 2015

Where are you calling xTaskCallApplicationTaskHook() from, and which port are you using?

If you are calling it from traceTASKSWITCHEDOUT() then some (older) ports might call it on each tick, whereas newer ports should only call it when a context switch is actually required. The way to tell would be to look at how xTaskIncrementTick() is called in the port layer. If the return value of xTaskIncrementTick() is used to determine if vTaskSwitchContext() is called then it should traceTASKSWITCHEDOUT() should not be called on each tick, if the return value is ignored then it probably will be called on each tick.

If you are using traceTASKSWITCHEDOUT() then you can update your macro definition as follows:

{
static TaskHandle_t xLastTaskHandle = NULL;

    if( pxCurrentTCB != xLastTaskHandle )
    {
        /* The task changed - run your code here. */
    }
    
    xLastTaskHandle = pxCurrentTCB;
}

Regards.


v8.2.2 - xTaskCallApplicationTaskHook() Question

Posted by westmorelandeng on August 16, 2015

I am calling xTaskCallApplicationTaskHook() in the regular task - this is defined before the for(EVER) /* Register our callback function. */ vTaskSetApplicationTaskTag( NULL, prvExampleTaskHook4 );

Well, yes, the port I am using is checking the return value of xTaskIncrementTick().


v8.2.2 - xTaskCallApplicationTaskHook() Question

Posted by westmorelandeng on August 16, 2015

OK - this is fixed - but have a related question - what is the correct way to reference pxCurrentTCB if I am not in task.c? This works fine in assembly: IMPORT pxCurrentTCB


v8.2.2 - xTaskCallApplicationTaskHook() Question

Posted by rtel on August 16, 2015

Try "extern void*". It might generate a compiler warning but should work.


v8.2.2 - xTaskCallApplicationTaskHook() Question

Posted by westmorelandeng on August 16, 2015

OK - thanks - extern PRIVILEGEDDATA TCBt * volatile pxCurrentTCB; didn't work so well. ;)


[ 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