20230201_1811_emb/1811Project_LPc/Src/Usr/Bsp/McuBspSys.h
Rjh913828050 78f3903d1d 类型:重构
内容:1811项目下位机软件第一版完整程序
人员:任家豪
2023-10-08 13:56:23 +08:00

16 lines
264 B
C

#ifndef _MCU_BSP_SYS_H_
#define _MCU_BSP_SYS_H_
#include <stdint.h>
#include <stdbool.h>
#include <stddef.h>
void McuBspSysInit(void);
/* 心跳灯1开关 */
void McuBspLed1OnOff(uint8_t flag);
/* 心跳等2开关 */
void McuBspLed2OnOff(uint8_t flag);
#endif