Quality RTOS & Embedded Software

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


Loading

IDLE task return 0 ulRunTime

Posted by josephmuziki on December 4, 2013

Hi

I am running freeRTOS v7.6.0 on an STM32F4 discovery board. I am currently running 14 tasks and im curious to find out some information about which tasks are taking up the most CPU usage and how much head room i have left. I attempted to use uxTaskGetSystemState function and my idle task(which i am assuming will run when the processor is free) is returning a runtime of 0. The runtime of all the other tasks adds up to about 20% of the total runtime(not sure whats happening the other 80%). I have configured an external clock running at 100 times the speed of the rtos tick. I am not sure what i am doing wrong as i am expecting to IDLE task to be running for the majority of the time.

External Timer Configuration:

::c //in main.c void TIM5_IRQHandler(void) {

/* Check if interrupt has occured / if (TIMGetITStatus(TIM5, TIMIT_Update) != RESET) { / Clear interrupt pending bit */ TIMClearITPendingBit(TIM5, TIMIT_Update);

ulHighFrequencyTimerTicks++; //counter incrementing at 100kHz

}

}

//in FreeRTOSConfig.h extern volatile unsigned long ulHighFrequencyTimerTicks; /* ulHighFrequencyTimerTicks is already being incremented at 20KHz. Just set its value back to 0. */

define configUSESTATSFORMATTINGFUNCTIONS 1 define portCONFIGURETIMERFORRUNTIMESTATS() ( ulHighFrequencyTimerTicks = 0UL ) define portGETRUNTIMECOUNTERVALUE() ulHighFrequencyTimerTicks

Configuration of task where function call is made:

void vMonitorTask(void *pvParameters) {

signed char stats[ 1024]; xTaskStatusType *pxTaskStatusArray; volatile unsigned portBASE_TYPE uxArraySize; unsigned long ulTotalRunTime;

for (;;) {

// Take a snapshot of the number of tasks in case it changes while this function is executing.
 uxArraySize = uxTaskGetNumberOfTasks(); //uxCurrentNumberOfTasks();
 WWDG_SetCounter(127);

// Allocate a xTaskStatusType structure for each task. An array could be allocated statically at compile time. pxTaskStatusArray = pvPortMalloc( (uxTaskGetNumberOfTasks()) * (sizeof( xTaskStatusType )) );

 if( pxTaskStatusArray != NULL )
  {
      // Generate raw status information about each task.
      uxArraySize = uxTaskGetSystemState( pxTaskStatusArray, uxArraySize, &ulTotalRunTime );
      WWDG_SetCounter(127);
  }

xTaskStatusType test = pxTaskStatusArray[0];

} }

Thanks in advance :)


IDLE task return 0 ulRunTime

Posted by davedoors on December 4, 2013

Presumably the other 80% is used by the idle task but for some reason the value is not being output. Stepping through the uxTaskGetSystemState() in the debugger will show you why that is.


[ 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