From aa3320db53591c15be1c6aa118bca5721c904604 Mon Sep 17 00:00:00 2001 From: Clyde Stubbs <2366188+clydebarrow@users.noreply.github.com> Date: Fri, 19 Jul 2024 20:03:43 +1000 Subject: [PATCH] docs: fix flush_cb typo (#6523) --- docs/porting/display.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/porting/display.rst b/docs/porting/display.rst index fc41cd9efc..e664ce7dd1 100644 --- a/docs/porting/display.rst +++ b/docs/porting/display.rst @@ -22,7 +22,7 @@ An example ``flush_cb`` looks like this: .. code:: c - void my_flush_cb(lv_display_t * display, const lv_area_t * area, void * px_map) + void my_flush_cb(lv_display_t * display, const lv_area_t * area, uint8_t * px_map) { /*The most simple case (but also the slowest) to put all pixels to the screen one-by-one *`put_px` is just an example, it needs to be implemented by you.*/