Files
toaster/fw/stm8s/common/inc/beep.h
Mike Trudeau 5b106896a1 migrate
2026-02-13 20:30:52 +00:00

16 lines
205 B
C

#ifndef BEEP_H
#define BEEP_H
/*
* BEEP -> PD4
*/
#include <stdint.h>
#include "stm8s.h"
void beep_init(void);
void beep_on(void);
void beep_off(void);
void beep_freq(uint8_t freq);
#endif /* BEEP_H */