Files
BR_YKC/Core/User/Os/os_init.c

34 lines
827 B
C
Raw Normal View History

2026-03-31 15:46:04 +08:00
/**
******************************************************************************
* @file user\os\os_init.c
* @author luhuaishuai
* @version v0.1
* @date 2026-1-12
* @brief Briefly describe the function of your function
******************************************************************************
*/
/* Includes -------------------------------------------------------------------*/
#include "os_init.h"
/* code -----------------------------------------------------------------------*/
/**
* @brief Os_Init
*
* @note none
*
* @param none
*
* @retval none
*/
2026-05-21 10:01:28 +08:00
void os_init(void)
2026-03-31 15:46:04 +08:00
{
2026-05-21 10:01:28 +08:00
Os_Semaphore_Init();/* 初始化信号量 */
Os_Task_Init();/* 初始化任务 */
SwTimer_Init();/* 初始化软件定时器 */
2026-03-31 15:46:04 +08:00
}