main: added constant character for week symbol

This commit is contained in:
Charlez Kwan 2020-01-16 15:33:04 +01:00
parent 055a7d0e67
commit efaa7d7029

View file

@ -77,6 +77,15 @@ UART_HandleTypeDef huart1;
PAINT_TIME sPaint_time; PAINT_TIME sPaint_time;
RTC_TimeTypeDef sTime; RTC_TimeTypeDef sTime;
RTC_DateTypeDef sDate; RTC_DateTypeDef sDate;
const uint8_t WeekLetter[7][2]={
"Mo",
"Di",
"Mi",
"Do",
"Fr",
"Sa",
"So"
};
//Create a new image cache //Create a new image cache
UBYTE *BlackImage; UBYTE *BlackImage;