Files
2023-Webservices_And_Applic…/tests/mocs.c
Sander Speetjens 623cf3749c TFTP
Add tftp_custom_write and test functions
2023-11-13 16:03:14 +01:00

23 lines
401 B
C

#include "tftp.h"
struct llfs_data_file llfs_root = {
.data = NULL,
.len = 0,
.name = "root",
.next = NULL,
};
void tftp_cleanup(void) {
}
uint32_t logger_get_timestamp(void) {
return 0;
}
int tftp_init(struct tftp_context* context) {
return 0;
}
void lcd_display_text(uint8_t* text, uint16_t x_pos, uint16_t y_pos, uint32_t color, uint32_t bg_color, sFONT *font) {
}