Fix another forgotten ')'

This commit is contained in:
Rashed Talukder 2022-03-18 19:30:39 -07:00
parent 7c9057dd93
commit d9e67c8e9c

View file

@ -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
}