From a4128e1d414ae47d7710789fa065169029df31b8 Mon Sep 17 00:00:00 2001 From: Bassam Date: Mon, 31 Oct 2022 00:31:22 +0200 Subject: [PATCH] commented out a line that I think made the display slower --- lvgl_tft/st7789.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lvgl_tft/st7789.c b/lvgl_tft/st7789.c index de7b35a..70af85d 100644 --- a/lvgl_tft/st7789.c +++ b/lvgl_tft/st7789.c @@ -208,7 +208,7 @@ void st7789_send_data(void * data, uint16_t length) static void st7789_send_color(void * data, size_t length) { - disp_wait_for_pending_transactions(); + //disp_wait_for_pending_transactions(); [BJ] noticed that commenting this made the display slightly faster. gpio_set_level(ST7789_DC, 1); disp_spi_send_colors(data, length); }