9ceb218f80
Co-authored-by: Cursor <cursoragent@cursor.com>
27 lines
646 B
C
27 lines
646 B
C
|
|
#ifndef INSULATION_CTRL_H
|
|
#define INSULATION_CTRL_H
|
|
|
|
#ifdef __cplusplus /*C++编译环境下兼容C语言*/
|
|
extern "C" {
|
|
#endif
|
|
|
|
/*------ Exported includes(头文件) ----------------------*/
|
|
#include "main.h"
|
|
/*------ Exported macro(宏定义) -------------------------*/
|
|
|
|
/*------ Exported struct(结构体定义) --------------------*/
|
|
|
|
/*------ Exported variables(变量定义) -------------------*/
|
|
|
|
/*------ Exported function prototypes (函数声明) -------*/
|
|
|
|
S8_T s8_insulation_action(U8_T gunNo ,F32_T *f32_rz, F32_T *f32_rf);
|
|
void v_insulation_stop(U8_T gunNo);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif /* INSULATION_CTRL_H */
|