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--) {

View File

@ -8,15 +8,12 @@
void LCD_Open(void);
void LCD_Clear(void);
void LCD_GoTo(unsigned int row, unsigned int col);
void LCD_SingleLineGoTo(unsigned int row_to);
void LCD_OutString(const char* string, uint8_t max_chars);
short TERMIO_PutChar(unsigned char letter);
void LCD_OutNibble(uint8_t x);
void LCD_ClearToEnd(uint8_t curr_row);
unsigned char LCD_Timeout_Error(void);
//CGRAM character address
#define CGRAM_EXP 0
#define CGRAM_EXP_NEG 1