remove unused funtion
This commit is contained in:
parent
bf014cd982
commit
0278165339
@ -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--) {
|
||||
|
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user