27 lines
673 B
C
27 lines
673 B
C
/**
|
|
******************************************************************************
|
|
* @file User\Os\os_init.h
|
|
* @author 路淮
|
|
* @version v0.1
|
|
* @date 2026-05-21
|
|
* @brief 系统初始化头文件
|
|
******************************************************************************
|
|
*/
|
|
|
|
#ifndef __OSINIT_H
|
|
#define __OSINIT_H
|
|
|
|
/* Private includes ----------------------------------------------------------*/
|
|
#include "global.h"
|
|
|
|
|
|
|
|
/* Exported functions prototypes ------------------------------------------------------------------------*/
|
|
void os_init(void);
|
|
|
|
|
|
/* Exported constants --------------------------------------------------------*/
|
|
|
|
#endif
|
|
|