fix moc of lcd_display_text to match function in lcd_api.h
This commit is contained in:
2023-12-02 10:41:36 +01:00
parent 55ea5b31e1
commit 12a7221a2e
2 changed files with 2 additions and 2 deletions

View File

@@ -23,7 +23,7 @@ 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) {
void lcd_display_text(const char* 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);