20230731_XiaoFuZi_emb/ZheDaXiaoFuZiBoot/Src/Usr/Driver/Ldrv/Self-Destruction/McuSelfDestructionDrv.h
Rjh913828050 a8560d741e 类型:重构
内容:重新整理项目文件分类
人员:任家豪
2023-10-08 16:10:23 +08:00

15 lines
400 B
C

#ifndef _MCU_SELF_DESTRUCTION_H_
#define _MCU_SELF_DESTRUCTION_H_
#include "McuBspGpio.h"
/* 初始化 */
void McuSelfDestructionDrvInit(GpioTypeCallback Callback);
/* 设置自毁模式 */
void McuSelfDestructionDrvSetMode(uint32_t mode);
/* 打开或关闭自毁信号 */
void McuSelfDestructionDrvOnOff(int OnOff);
/* 获取当前引脚的状态 */
int McuSelfDestructionDrvGetSta(void);
#endif