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

28 lines
602 B
C
Raw Permalink 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\Global\g_init.c
* @author 路淮
* @version v0.1
* @date 2026-05-21
* @brief 全局初始化
******************************************************************************
*/
#include "g_init.h"
/* Includes -------------------------------------------------------------------*/
#include "drv_init.h"
/**
* @brief 初始化全局系统
* @note 初始化全局系统包括HAL层和驱动层的初始化
*/
void g_init(void)
{
drv_all_init();
os_init();
}