VGA library for STM32F103C (BluePill) that can manipulate a screen with 28x30 tiles with 8x8 pixels each, in a total resolution of 224x240 pixels with 8 colors using a very low footprint
Other
62
stars
12
forks
source link
File bluebitmap.cpp, line 88 variable undefined #17
File bluebitmap.cpp, line 88
uint32 color32Bits = color << 24 | color << 16 | color << 8 | color;
needs to be
uint32_t color32Bits = color << 24 | color << 16 | color << 8 | color;