TFTP
Fix tests
This commit is contained in:
32
tests/mocs.c
32
tests/mocs.c
@@ -15,17 +15,43 @@ uint32_t logger_get_timestamp(void) {
|
||||
}
|
||||
|
||||
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(uint32_t color) {
|
||||
|
||||
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;
|
||||
}
|
||||
Reference in New Issue
Block a user