ChaletLora/ChaletLora.X/Source/PrintfServer.h
2021-05-22 22:08:19 -04:00

17 lines
229 B
C

#ifndef PRINTFSERVER_H
#define PRINTFSERVER_H
enum ePrintfServerTickStates
{
PRINTF_SERVER_INIT_STATE,
PRINTF_SERVER_RUN_STATE
};
int OpenPrintfServer();
void TickPrintfServer();
void TelnetPutPrintf(char c);
#endif