STM32CubeF3/Utilities/CPU/cpu_utils.c

123 lines
3.4 KiB
C
Raw Normal View History

2019-05-15 17:57:06 +08:00
/**
******************************************************************************
* @file cpu_utils.c
* @author MCD Application Team
* @brief Utilities for CPU Load calculation
******************************************************************************
* @attention
*
2023-03-08 00:17:52 +08:00
* Copyright (c) 2014 STMicroelectronics.
* All rights reserved.
2019-05-15 17:57:06 +08:00
*
2023-03-08 00:17:52 +08:00
* This software is licensed under terms that can be found in the LICENSE file
* in the root directory of this software component.
* If no LICENSE file comes with this software, it is provided AS-IS.
2019-05-15 17:57:06 +08:00
*
******************************************************************************
2023-03-08 00:17:52 +08:00
*/
2019-05-15 17:57:06 +08:00
/********************** NOTES **********************************************
To use this module, the following steps should be followed :
2023-03-08 00:17:52 +08:00
1- in the _OS_Config.h file (ex. FreeRTOSConfig.h) enable the following macros :
2019-05-15 17:57:06 +08:00
- #define configUSE_IDLE_HOOK 1
- #define configUSE_TICK_HOOK 1
2023-03-08 00:17:52 +08:00
2- in the _OS_Config.h define the following macros :
2019-05-15 17:57:06 +08:00
- #define traceTASK_SWITCHED_IN() extern void StartIdleMonitor(void); \
StartIdleMonitor()
- #define traceTASK_SWITCHED_OUT() extern void EndIdleMonitor(void); \
EndIdleMonitor()
*******************************************************************************/
/* Includes ------------------------------------------------------------------*/
#include "cpu_utils.h"
/* Private typedef -----------------------------------------------------------*/
/* Private define ------------------------------------------------------------*/
/* Private macro -------------------------------------------------------------*/
/* Private function prototypes -----------------------------------------------*/
/* Private variables ---------------------------------------------------------*/
xTaskHandle xIdleHandle = NULL;
2023-03-08 00:17:52 +08:00
__IO uint32_t osCPU_Usage = 0;
uint32_t osCPU_IdleStartTime = 0;
uint32_t osCPU_IdleSpentTime = 0;
uint32_t osCPU_TotalIdleTime = 0;
2019-05-15 17:57:06 +08:00
/* Private functions ---------------------------------------------------------*/
/**
* @brief Application Idle Hook
2023-03-08 00:17:52 +08:00
* @param None
2019-05-15 17:57:06 +08:00
* @retval None
*/
2023-03-08 00:17:52 +08:00
void vApplicationIdleHook(void)
2019-05-15 17:57:06 +08:00
{
if( xIdleHandle == NULL )
{
/* Store the handle to the idle task. */
xIdleHandle = xTaskGetCurrentTaskHandle();
}
}
/**
* @brief Application Idle Hook
2023-03-08 00:17:52 +08:00
* @param None
2019-05-15 17:57:06 +08:00
* @retval None
*/
void vApplicationTickHook (void)
{
static int tick = 0;
2023-03-08 00:17:52 +08:00
2019-05-15 17:57:06 +08:00
if(tick ++ > CALCULATION_PERIOD)
{
tick = 0;
2023-03-08 00:17:52 +08:00
2019-05-15 17:57:06 +08:00
if(osCPU_TotalIdleTime > 1000)
{
osCPU_TotalIdleTime = 1000;
}
osCPU_Usage = (100 - (osCPU_TotalIdleTime * 100) / CALCULATION_PERIOD);
osCPU_TotalIdleTime = 0;
}
}
/**
* @brief Start Idle monitor
2023-03-08 00:17:52 +08:00
* @param None
2019-05-15 17:57:06 +08:00
* @retval None
*/
void StartIdleMonitor (void)
{
2023-03-08 00:17:52 +08:00
if( xTaskGetCurrentTaskHandle() == xIdleHandle )
2019-05-15 17:57:06 +08:00
{
osCPU_IdleStartTime = xTaskGetTickCountFromISR();
}
}
/**
* @brief Stop Idle monitor
2023-03-08 00:17:52 +08:00
* @param None
2019-05-15 17:57:06 +08:00
* @retval None
*/
void EndIdleMonitor (void)
{
if( xTaskGetCurrentTaskHandle() == xIdleHandle )
{
/* Store the handle to the idle task. */
osCPU_IdleSpentTime = xTaskGetTickCountFromISR() - osCPU_IdleStartTime;
2023-03-08 00:17:52 +08:00
osCPU_TotalIdleTime += osCPU_IdleSpentTime;
2019-05-15 17:57:06 +08:00
}
}
/**
* @brief Stop Idle monitor
2023-03-08 00:17:52 +08:00
* @param None
2019-05-15 17:57:06 +08:00
* @retval None
*/
uint16_t osGetCPUUsage (void)
{
return (uint16_t)osCPU_Usage;
}