添加莫尔斯译码器

Signed-off-by: kevin <kevin@lmve.net>
This commit is contained in:
2022-03-06 13:20:10 +08:00
parent 3d017dd9fe
commit 88344b12bd
28 changed files with 12883 additions and 14189 deletions
+25
View File
@@ -0,0 +1,25 @@
/*
* APP_morsecode.h
*
* Created on: 2022Äê3ÔÂ5ÈÕ
* Author: wuwen
*/
#ifndef APP_MORSECODE_H_
#define APP_MORSECODE_H_
#include "main.h"
#include "windows.h"
#include "key.h"
struct morsecode
{
uint8_t len;
uint8_t code;
char letter;
};
void APP_morsecode_init(window *a_window);
void APP_morsecode_loop();
#endif /* APP_MORSECODE_H_ */