tftp.h 324 B

123456789101112131415161718192021
  1. #ifndef __TFTP_H
  2. #define __TFTP_H
  3. #include "bsp_fatfs.h"
  4. #include "ff.h"
  5. #include "includes.h"
  6. #include "lwip/apps/tftp_server.h"
  7. #include "string.h"
  8. #define MAX_FILENAME_LEN 64
  9. typedef struct
  10. {
  11. INT8U Open_OK;
  12. INT8U type;
  13. INT8U write;
  14. char name[64];
  15. } TFTP_Handler;
  16. void tftp_context_init(void);
  17. #endif