基本功能移植

Signed-off-by: kevin <kevin@lmve.net>
This commit is contained in:
2022-04-17 01:29:20 +08:00
parent 416395e158
commit f1bbf02955
91 changed files with 3952 additions and 1789 deletions
+18
View File
@@ -0,0 +1,18 @@
#ifndef BUZZER_H_
#define BUZZER_H_
#include "main.h"
struct notes
{
uint16_t freq;
uint8_t duty;
uint16_t deley;
struct notes *next_note;
};
void play_ones(uint16_t freq,uint8_t dutya);
void add_a_note(uint16_t freq,uint8_t duty,uint16_t deley);
char buzzer_play_server();
#endif /* BUZZER_H_ */