30 lines
491 B
C
30 lines
491 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>
|
|
#include <stdarg.h>
|
|
#include "fatfs.h"
|
|
|
|
#define LIB_VERSION "0.1"
|
|
|
|
#define TERM_BUFFER_SIZE 255 //size of terminal buffer
|
|
|
|
|
|
void PrintRxBuffer();
|
|
void ReadBuffer();
|
|
void TerminalInit();
|
|
void myprintf(const char *fmt, ...);
|
|
void get_time(char* timeChar, char* dateChar);
|
|
|
|
|
|
#endif /* INC_TERMINAL_H_ */
|