remove unused funtion

This commit is contained in:
Jeff Wang
2019-04-02 23:56:54 -04:00
parent bf014cd982
commit 0278165339
2 changed files with 0 additions and 8 deletions

View File

@ -205,11 +205,6 @@ static void to_row(unsigned char row_to) {
col = 0;
}
//row indexed from 0
void LCD_SingleLineGoTo(unsigned int spot_to) {
LCD_GoTo(spot_to / MAX_CHARS_PER_LINE, spot_to % MAX_CHARS_PER_LINE);
}
void LCD_OutString(const char *string, uint8_t max_chars) {
const char *s;
for (s = string; *s && max_chars > 0; s++, max_chars--) {