#ifndef __TFTP_H #define __TFTP_H #include "bsp_fatfs.h" #include "ff.h" #include "includes.h" #include "lwip/apps/tftp_server.h" #include "string.h" #define MAX_FILENAME_LEN 64 typedef struct { INT8U Open_OK; INT8U type; INT8U write; char name[64]; } TFTP_Handler; void tftp_context_init(void); #endif