15 lines
210 B
C
15 lines
210 B
C
#ifndef __BUZZER_H__
|
|
#define __BUZZER_H__
|
|
|
|
#include "r_cg_macrodriver.h"
|
|
#include "r_cg_userdefine.h"
|
|
|
|
void buzzer_init(void);
|
|
void buzzer_start(void);
|
|
void buzzer_stop(void);
|
|
void buzzer_task(void);
|
|
|
|
|
|
#endif
|
|
|