litex/misoc/software/include/net/tftp.h
Sebastien Bourdeauducq e92d00f767 move software into misoc
2015-09-28 15:30:19 +08:00

10 lines
222 B
C

#ifndef __TFTP_H
#define __TFTP_H
#include <stdint.h>
int tftp_get(uint32_t ip, const char *filename, void *buffer);
int tftp_put(uint32_t ip, const char *filename, const void *buffer, int size);
#endif /* __TFTP_H */