57 lines
1020 B
C
57 lines
1020 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) {
|
|
UNUSED(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) {
|
|
UNUSED(text);
|
|
UNUSED(x_pos);
|
|
UNUSED(y_pos);
|
|
UNUSED(color);
|
|
UNUSED(bg_color);
|
|
UNUSED(font);
|
|
}
|
|
|
|
void lcd_clear_images(void) {
|
|
|
|
}
|
|
|
|
void lcd_clear_text(void) {
|
|
|
|
}
|
|
|
|
|
|
void lcd_draw_bmp_img(uint8_t* bmp_buff, uint32_t x_pos, uint32_t y_pos) {
|
|
UNUSED(bmp_buff);
|
|
UNUSED(x_pos);
|
|
UNUSED(y_pos);
|
|
}
|
|
|
|
void lcd_draw_gif(uint8_t* gif_buff, size_t len, uint32_t x_pos, uint32_t y_pos) {
|
|
UNUSED(gif_buff);
|
|
UNUSED(len);
|
|
UNUSED(x_pos);
|
|
UNUSED(y_pos);
|
|
}
|
|
|
|
llfs_file_t* llfs_next_file(void** mem, char* filter) {
|
|
UNUSED(mem);
|
|
UNUSED(filter);
|
|
return NULL;
|
|
} |