16 lines
328 B
C

#ifndef CLI_h
#define CLI_h
#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);
// to recive a single caracter
bool CLI_charIn(char c);
#endif