25 lines
241 B
C
25 lines
241 B
C
/*
|
|
* Sys_init.h
|
|
*
|
|
* Created on: 2022年03月12日
|
|
* Author: User
|
|
*/
|
|
#ifndef __SYS_INIT_H
|
|
#define __SYS_INIT_H
|
|
|
|
|
|
typedef struct
|
|
{
|
|
|
|
void(*Init)(void); //系统初始化函数
|
|
|
|
}Sys_init_t;
|
|
|
|
|
|
|
|
extern Sys_init_t Sys;
|
|
|
|
|
|
#endif
|
|
|