26 lines
368 B
C
26 lines
368 B
C
/*
|
|
* Terminal.h
|
|
*
|
|
* Created on: Jul 13, 2021
|
|
* Author: angoosh
|
|
*/
|
|
|
|
#ifndef INC_TERMINAL_H_
|
|
#define INC_TERMINAL_H_
|
|
|
|
//#include "main.h"
|
|
#include <string.h>
|
|
#include <stdio.h>
|
|
|
|
#define LIB_VERSION "0.1"
|
|
|
|
#define TERM_BUFFER_SIZE 255 //size of terminal buffer
|
|
|
|
|
|
void PrintRxBuffer();
|
|
void ReadBuffer();
|
|
void TerminalInit();
|
|
|
|
|
|
#endif /* INC_TERMINAL_H_ */
|