From 21e61953a3137dca073d3d5ece616001ebe7941b Mon Sep 17 00:00:00 2001 From: sumotoy Date: Sun, 14 Jun 2015 17:13:03 +0200 Subject: [PATCH] fix a problem with fillRect and 8bit CPU Affected also font rendering --- TFT_ILI9163C.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/TFT_ILI9163C.cpp b/TFT_ILI9163C.cpp index 3d5e60c..100037c 100644 --- a/TFT_ILI9163C.cpp +++ b/TFT_ILI9163C.cpp @@ -905,6 +905,8 @@ void TFT_ILI9163C::fillRect(int16_t x, int16_t y, int16_t w, int16_t h, uint16_t } #if defined(__MK20DX128__) || defined(__MK20DX256__) writedata16_last(color); + #else + writedata16(color); #endif } #if defined(SPI_HAS_TRANSACTION)