Release:5.20灰测

This commit is contained in:
2026-05-21 10:01:28 +08:00
parent 8a5a32b139
commit fd65e9c6a2
68 changed files with 4329 additions and 1489 deletions

View File

@@ -12,7 +12,6 @@
/* Includes -------------------------------------------------------------------*/
#include "drv_init.h"
#include "_hal_init.h"
@@ -20,9 +19,9 @@
* @brief 初始化全局系统
* @note 初始化全局系统包括HAL层和驱动层的初始化
*/
void g_Init(void)
void g_init(void)
{
_hal_all_Init();
drv_all_Init();
}
drv_all_init();
os_init();
}