add header for CMD module

This commit is contained in:
2024-04-05 19:19:48 +02:00
parent 1d9fcb3362
commit 78c332095a

13
CMD/CMD.h Normal file
View File

@@ -0,0 +1,13 @@
#ifndef CMD_h
#define CMD_h
typedef CMD_lineOutFn(char* line) CMD_lineoutFn_t;
// initilize and register the lineout print function
bool init(CMD_lineoutFn_t* lineOut);
// to recive a single caracter
bool CMD_charIn(char c);
#endif