Files

11 lines
144 B
C
Raw Permalink Normal View History

2024-05-20 22:22:24 +08:00
#ifndef BSP_BUZZER_H
#define BSP_BUZZER_H
2023-07-07 19:27:24 +08:00
2024-05-20 22:22:24 +08:00
#include <stdint.h>
2023-07-07 19:27:24 +08:00
void BuzzerInit();
2024-05-20 22:22:24 +08:00
extern void BuzzerOn();
extern void BuzzerOff(void);
#endif