Files
2023-Webservices_And_Applic…/project/Core/Inc/tftp.h
Sander Speetjens a1f7b0ad33 TFTP
First implementation of the read and open functions
Write is not implemented yet
2023-11-09 16:39:08 +01:00

22 lines
361 B
C

/**
* @file tftp.h
* @brief tftp server
* @author Speetjens S.
*/
#ifndef PROJECT_TFTP_H
#define PROJECT_TFTP_H
#define LOGGER_LEVEL_ALL
#include <tftp_server.h>
#include "log.h"
#include "llfs.h"
#include "stdlib.h"
#include "string.h"
#define TFTP_READ 0
extern struct tftp_context tftpContext_s;
void tftp_server_init(void);
#endif // PROJECT_TFTP_H