/** * @file tftp.h * @brief tftp server * @author Speetjens S. */ #ifndef PROJECT_TFTP_H #define PROJECT_TFTP_H #define LOGGER_LEVEL_ALL #include #include "log.h" #include "llfs.h" #include #include #include #define TFTP_READ 0 typedef struct tftp_custom_file_s { char* data; size_t len; char*name; size_t ofset; }tftp_custom_file_t; void tftp_server_init(void); void tftp_server_deinit(void); #endif // PROJECT_TFTP_H