Files
BR_YKC/Core/User/Os/os_init.c
2026-05-21 12:19:01 +08:00

31 lines
817 B
C
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
/**
******************************************************************************
* @file User\Os\os_init.c
* @author 路淮
* @version v0.1
* @date 2026-05-21
* @brief 系统初始化
******************************************************************************
*/
/* Includes -------------------------------------------------------------------*/
#include "os_init.h"
/* code -----------------------------------------------------------------------*/
/**
* @brief os_init系统初始化
* @note 初始化信号量、任务、软件定时器等系统相关组件
* @param none
* @retval none
*/
void os_init(void)
{
Os_Semaphore_Init();/* 初始化信号量 */
Os_Task_Init();/* 初始化任务 */
SwTimer_Init();/* 初始化软件定时器 */
}