From 69c6f63251949b949fb9b0e144256ecc27a31ff4 Mon Sep 17 00:00:00 2001 From: FReenen Date: Fri, 5 Apr 2024 20:41:56 +0200 Subject: [PATCH] remove fifo from cli header and include stdbool.h --- CLI/CLI.h | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/CLI/CLI.h b/CLI/CLI.h index b799b36..a3b65a8 100644 --- a/CLI/CLI.h +++ b/CLI/CLI.h @@ -1,13 +1,14 @@ #ifndef CLI_h #define CLI_h +#include + #include "../CMDList.h" -#include "../FIFOFuff.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, FIFOBuffChar_t* fifo); +bool init(CLI_lineoutFn_t* lineOut, CMDList_t* cmdList); // to recive a single caracter bool CLI_charIn(char c);