1 #ifndef DRIVER_BEEPER_H 2 #define DRIVER_BEEPER_H 80 extern void BeeperRepeat(uint16_t OnTime, uint32_t OffTime);
103 #endif // DRIVER_BEEPER_H void BeeperRepeat(uint16_t OnTime, uint32_t OffTime)
Name: BeeperRepeat Start generation of repeated beeper pulses.
void BeeperClick(void)
Name: BeeperClick Start generation of a short beeper click of duration BEEPER_CLICK_TIME. This function will not stop ongoing beeper pulse or repeated beeper pulses. This sound can be used as a response of a key pressed action.
void BeeperStop(void)
Name: BeeperStop Stop generation of beeper pulse or repeated beeper pulses. This function will not st...
void BeeperPulse(uint16_t OnTime)
Name: BeeperPulse Start generation of one beeper pulse.