Skip to content

Commit

Permalink
Type uint32_t error (#71)
Browse files Browse the repository at this point in the history
I think there is a small type error on line 28 for STM32 boards: uint32 --> uint32_t
  • Loading branch information
pierbout authored Nov 3, 2020
1 parent 2f178e8 commit fdc2ea1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/TFT_22_ILI9225.h
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down

0 comments on commit fdc2ea1

Please sign in to comment.