From 063ed8bb513fd337999a21d51e60e8bb17e8e3e0 Mon Sep 17 00:00:00 2001 From: hasslesstech Date: Mon, 14 Apr 2025 18:20:20 +0300 Subject: [PATCH] [lcd] fix: add display_load prototype --- Core/Inc/lcd.h | 1 + 1 file changed, 1 insertion(+) diff --git a/Core/Inc/lcd.h b/Core/Inc/lcd.h index c7c0e85..c694139 100644 --- a/Core/Inc/lcd.h +++ b/Core/Inc/lcd.h @@ -29,5 +29,6 @@ void display_write_data_byte(uint8_t code); void display_write_data_seq(char *codes); void display_to_framebuffer(void); void display_to_direct(void); +void display_load(uint32_t frame_no); #endif