move VER_STR into flash

This commit is contained in:
Mirko Scholz
2020-09-04 22:23:35 +02:00
parent 9464360014
commit fb76fac249
7 changed files with 18 additions and 11 deletions

View File

@ -227,6 +227,13 @@ void LCD_OutString(__xdata const char *string, uint8_t max_chars) {
}
}
void LCD_OutString_Initial(__code const char *string) {
const char *s;
for (s = string; *s; s++) {
TERMIO_PutChar(*s);
}
}
short TERMIO_PutChar(unsigned char letter) {
if (letter == CR || letter == '\n') {
LCD_Clear();