From fdc2ea12f4aa74309664ae1ff1c84348677e372a Mon Sep 17 00:00:00 2001 From: Pierre BOUTEILLON <70711916+pierbout@users.noreply.github.com> Date: Tue, 3 Nov 2020 23:06:29 +0100 Subject: [PATCH] Type uint32_t error (#71) I think there is a small type error on line 28 for STM32 boards: uint32 --> uint32_t --- src/TFT_22_ILI9225.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/TFT_22_ILI9225.h b/src/TFT_22_ILI9225.h index 125ded6..d622582 100644 --- a/src/TFT_22_ILI9225.h +++ b/src/TFT_22_ILI9225.h @@ -25,7 +25,7 @@ #include "gfxfont.h" #if defined(ARDUINO_STM32_FEATHER) || defined(ARDUINO_ARCH_STM32) || defined(ARDUINO_ARCH_STM32F1) || defined(STM32F1) -typedef volatile uint32 RwReg; +typedef volatile uint32_t RwReg; #endif #if defined(ARDUINO_FEATHER52) typedef volatile uint32_t RwReg;