From edc60bafb825d44cbd586598a34881e17e1bab31 Mon Sep 17 00:00:00 2001 From: Sander Speetjens Date: Thu, 30 Nov 2023 10:19:18 +0100 Subject: [PATCH] tcp_cmd add some unused tags back, when in normal mode this gave some warnings --- tests/mocs.c | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) diff --git a/tests/mocs.c b/tests/mocs.c index e777de9..c2605d3 100644 --- a/tests/mocs.c +++ b/tests/mocs.c @@ -18,12 +18,10 @@ int tftp_init(struct tftp_context* context) { return 0; } -void lcd_display_text(const char* text, - uint16_t x_pos, - uint16_t y_pos, - uint32_t color, - uint32_t bg_color, - sFONT* font) { +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);