Files
BR_YKC/Core/User/Os/os_init.c
2026-03-31 15:46:04 +08:00

33 lines
728 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 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
*/
void Os_Init(void)
{
Os_Semaphore_Init();
Os_Task_Init();
}