From 413c81bed31574a4547584908583f32c55b97285 Mon Sep 17 00:00:00 2001 From: Jorj Bauer Date: Wed, 2 Feb 2022 10:05:48 -0500 Subject: [PATCH] pass through screen fills --- teensy/ILI9341_wrap.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/teensy/ILI9341_wrap.cpp b/teensy/ILI9341_wrap.cpp index 195f8db..e1e6c6a 100644 --- a/teensy/ILI9341_wrap.cpp +++ b/teensy/ILI9341_wrap.cpp @@ -36,6 +36,7 @@ void ILI9341_Wrap::begin(uint32_t spi_clock=30000000u, uint32_t spi_clock_read=2 void ILI9341_Wrap::fillWindow(uint16_t color = 0x0000) { + tft->fillScreen(color); } void ILI9341_Wrap::setFrameBuffer(uint8_t *frame_buffer)