fix(drivers): generic MIPI add missing lv_display_flush_ready (#7693)

This commit is contained in:
Liam Howatt
2025-02-07 18:05:37 -05:00
committed by GitHub
parent e016e45bd4
commit 79757b1902
3 changed files with 9 additions and 1 deletions

View File

@@ -118,6 +118,12 @@ Example
static void my_lcd_send_color(lv_display_t *disp, const uint8_t *cmd, size_t cmd_size, uint8_t *param, size_t param_size)
{
...
/* This must be called to signal that the transfer has finished.
* It is typically called in a "DMA transfer complete" callback
* long after `my_lcd_send_color` has returned.
*/
lv_display_flush_ready(disp);
}
int main(int argc, char ** argv)