16 lines
264 B
C
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
|