1 2 3 #ifndef _BEEPER_H_ 4 #define _BEEPER_H_ 5 6 #include <stdint.h> 7 8 void beeper_start(uint16_t port, uint16_t frequency, uint16_t duration); 9 void beeper_stop(uint16_t port); 10 11 #endif 12