main: added constant character for week symbol
This commit is contained in:
parent
055a7d0e67
commit
efaa7d7029
1 changed files with 9 additions and 0 deletions
|
@ -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;
|
||||||
|
|
Loading…
Reference in a new issue