Fix tests
This commit is contained in:
2023-11-28 13:44:34 +01:00
parent f67a0b48a7
commit 9cd69dc6f8
3 changed files with 41 additions and 11 deletions

View File

@@ -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;
}