9 lines
185 B
C
9 lines
185 B
C
#ifndef BSP_BUZZER_H
|
|
#define BSP_BUZZER_H
|
|
|
|
extern void buzzer_on(uint16_t psc, uint16_t pwm);
|
|
extern void buzzer_off(void);
|
|
extern void buzzer_note(uint16_t note,float volume);
|
|
|
|
#endif
|