18 lines
336 B
C
18 lines
336 B
C
#ifndef _esp_h
|
|
#define _esp_h
|
|
|
|
#include <stdio.h>
|
|
#include <stdarg.h>
|
|
|
|
void Esp_Init(void);
|
|
void Esp_SendByte(uint8_t Byte);
|
|
void Esp_SendString(char *String);
|
|
int fputc(int ch, FILE *f);
|
|
void Esp_Printf(char *format, ...);
|
|
uint8_t Esp_GetRxFlag(void);
|
|
uint8_t Esp_GetRxData(void);
|
|
|
|
void Esp_SetInstall(void);
|
|
|
|
#endif
|