diff --git a/CLI/CLI.h b/CLI/CLI.h index a3b65a8..e7d72e6 100644 --- a/CLI/CLI.h +++ b/CLI/CLI.h @@ -3,12 +3,13 @@ #include -#include "../CMDList.h" +#include "../CMDList/CMDList.h" typedef CLI_lineOutFn(char* line) CLI_lineoutFn_t; // initilize and register the lineout print function -bool init(CLI_lineoutFn_t* lineOut, CMDList_t* cmdList); +bool CLI_init(CLI_lineoutFn_t* lineOut, CMDList_t* cmdList); +bool CLI_deinit(); // to recive a single caracter bool CLI_charIn(char c);