2025-03-08 23:59:24 +00:00
|
|
|
/* USER CODE BEGIN Header */
|
|
|
|
/**
|
|
|
|
******************************************************************************
|
|
|
|
* File Name : freertos.c
|
|
|
|
* Description : Code for freertos applications
|
|
|
|
******************************************************************************
|
|
|
|
* @attention
|
|
|
|
*
|
|
|
|
* Copyright (c) 2024 STMicroelectronics.
|
|
|
|
* All rights reserved.
|
|
|
|
*
|
|
|
|
* 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.
|
|
|
|
*
|
|
|
|
******************************************************************************
|
|
|
|
*/
|
|
|
|
/* USER CODE END Header */
|
|
|
|
|
|
|
|
/* Includes ------------------------------------------------------------------*/
|
|
|
|
#include "FreeRTOS.h"
|
|
|
|
#include "task.h"
|
|
|
|
#include "main.h"
|
|
|
|
|
|
|
|
/* Private includes ----------------------------------------------------------*/
|
|
|
|
/* USER CODE BEGIN Includes */
|
|
|
|
|
|
|
|
/* USER CODE END Includes */
|
|
|
|
|
|
|
|
/* Private typedef -----------------------------------------------------------*/
|
|
|
|
/* USER CODE BEGIN PTD */
|
|
|
|
|
|
|
|
/* USER CODE END PTD */
|
|
|
|
|
|
|
|
/* Private define ------------------------------------------------------------*/
|
|
|
|
/* USER CODE BEGIN PD */
|
|
|
|
|
|
|
|
/* USER CODE END PD */
|
|
|
|
|
|
|
|
/* Private macro -------------------------------------------------------------*/
|
|
|
|
/* USER CODE BEGIN PM */
|
|
|
|
|
|
|
|
/* USER CODE END PM */
|
|
|
|
|
|
|
|
/* Private variables ---------------------------------------------------------*/
|
|
|
|
/* USER CODE BEGIN Variables */
|
|
|
|
|
|
|
|
/* USER CODE END Variables */
|
|
|
|
|
|
|
|
/* Private function prototypes -----------------------------------------------*/
|
|
|
|
/* USER CODE BEGIN FunctionPrototypes */
|
|
|
|
|
|
|
|
/* USER CODE END FunctionPrototypes */
|
|
|
|
|
|
|
|
/* Hook prototypes */
|
|
|
|
void configureTimerForRunTimeStats(void);
|
|
|
|
unsigned long getRunTimeCounterValue(void);
|
2025-04-03 10:26:21 +00:00
|
|
|
void vApplicationStackOverflowHook(TaskHandle_t xTask, signed char *pcTaskName);
|
2025-03-08 23:59:24 +00:00
|
|
|
|
|
|
|
/* USER CODE BEGIN 1 */
|
|
|
|
/* Functions needed when configGENERATE_RUN_TIME_STATS is on */
|
|
|
|
__weak void configureTimerForRunTimeStats(void)
|
|
|
|
{
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
__weak unsigned long getRunTimeCounterValue(void)
|
|
|
|
{
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
/* USER CODE END 1 */
|
|
|
|
|
2025-04-03 10:26:21 +00:00
|
|
|
/* USER CODE BEGIN 4 */
|
|
|
|
void vApplicationStackOverflowHook(TaskHandle_t xTask, signed char *pcTaskName)
|
|
|
|
{
|
|
|
|
/* Run time stack overflow checking is performed if
|
|
|
|
configCHECK_FOR_STACK_OVERFLOW is defined to 1 or 2. This hook function is
|
|
|
|
called if a stack overflow is detected. */
|
|
|
|
}
|
|
|
|
/* USER CODE END 4 */
|
|
|
|
|
2025-03-08 23:59:24 +00:00
|
|
|
/* USER CODE BEGIN PREPOSTSLEEP */
|
|
|
|
__weak void PreSleepProcessing(uint32_t ulExpectedIdleTime)
|
|
|
|
{
|
|
|
|
/* place for user code */
|
|
|
|
}
|
|
|
|
|
|
|
|
__weak void PostSleepProcessing(uint32_t ulExpectedIdleTime)
|
|
|
|
{
|
|
|
|
/* place for user code */
|
|
|
|
}
|
|
|
|
/* USER CODE END PREPOSTSLEEP */
|
|
|
|
|
|
|
|
/* Private application code --------------------------------------------------*/
|
|
|
|
/* USER CODE BEGIN Application */
|
|
|
|
|
|
|
|
/* USER CODE END Application */
|
|
|
|
|