From d9e67c8e9cdec7722926fcf91cae1e8eb2b8a8ec Mon Sep 17 00:00:00 2001 From: Rashed Talukder <9218468+rashedtalukder@users.noreply.github.com> Date: Fri, 18 Mar 2022 19:30:39 -0700 Subject: [PATCH] Fix another forgotten ')' --- lvgl_tft/ili9163c.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lvgl_tft/ili9163c.c b/lvgl_tft/ili9163c.c index a135477..12701c8 100644 --- a/lvgl_tft/ili9163c.c +++ b/lvgl_tft/ili9163c.c @@ -241,7 +241,7 @@ static void ili9163c_reset(void) gpio_set_level(ILI9163C_RST, 0); vTaskDelay(pdMS_TO_TICKS(100)); gpio_set_level(ILI9163C_RST, 1); - vTaskDelay(pdMS_TO_TICKS(150); + vTaskDelay(pdMS_TO_TICKS(150)); #else #endif }