2022-10-20 17:13:02 +08:00
|
|
|
#ifndef BSP_BUZZER_H
|
|
|
|
#define BSP_BUZZER_H
|
|
|
|
|
2022-12-12 22:29:51 +08:00
|
|
|
#include <stdint.h>
|
2022-10-20 17:13:02 +08:00
|
|
|
|
2022-12-05 21:01:26 +08:00
|
|
|
void BuzzerInit();
|
|
|
|
extern void BuzzerOn(uint16_t psc, uint16_t pwm, uint8_t level);
|
|
|
|
extern void BuzzerOff(void);
|
2022-10-20 17:13:02 +08:00
|
|
|
|
|
|
|
#endif
|