aboutsummaryrefslogtreecommitdiffstats
path: root/lcd.c
diff options
context:
space:
mode:
authorWilliam Harrington <kb0iic@berzerkula.org>2019-09-30 18:19:55 -0500
committerWilliam Harrington <kb0iic@berzerkula.org>2019-09-30 18:19:55 -0500
commit52e67e191db44f2dfa39eab09a042d24f9a8f3a3 (patch)
treea1972c24fabd1a5b5ed9d1d9e818dbc777b23be1 /lcd.c
parent442b88a5b418a7cb7bec780800f9635e0c731cba (diff)
Refactor redundant source lines and simplify displaying of text and characters with locations. Remove unneeded variables and comment out unused functions until used.
Diffstat (limited to 'lcd.c')
-rwxr-xr-xlcd.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/lcd.c b/lcd.c
index 8ebae1a..9a82f6e 100755
--- a/lcd.c
+++ b/lcd.c
@@ -96,6 +96,7 @@ void Lcd_Write_String(char *a) {
Lcd_Write_Char(a[i]);
}
+/*
void Lcd_Shift_Right(void) {
Lcd_Cmd(0x01);
Lcd_Cmd(0x0C);
@@ -105,6 +106,7 @@ void Lcd_Shift_Left(void) {
Lcd_Cmd(0x01);
Lcd_Cmd(0x08);
}
+ */
// For some VFD's like Noritake
#ifdef VFD
@@ -116,4 +118,4 @@ void Vfd_Set_Brightness(int level) {
Lcd_Cmd(0x02);
Lcd_Write_Char(level);
}
-#endif \ No newline at end of file
+#endif