summaryrefslogtreecommitdiff
path: root/firmware
diff options
context:
space:
mode:
Diffstat (limited to 'firmware')
-rw-r--r--firmware/drivers/lcd-h100.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/firmware/drivers/lcd-h100.c b/firmware/drivers/lcd-h100.c
index df4ca42b10..7047578550 100644
--- a/firmware/drivers/lcd-h100.c
+++ b/firmware/drivers/lcd-h100.c
@@ -109,10 +109,10 @@ void lcd_init(void)
109 */ 109 */
110void lcd_init (void) 110void lcd_init (void)
111{ 111{
112 /* GPO35 is the LCD A0 pin */ 112 /* GPO35 is the LCD A0 pin, GPO46 is LCD RESET */
113 GPIO1_FUNCTION |= 0x00000008; 113 GPIO1_OUT |= 0x00004008;
114 GPIO1_ENABLE |= 0x00000008; 114 GPIO1_FUNCTION |= 0x00004008;
115 GPIO1_OUT |= 0x00000008; 115 GPIO1_ENABLE |= 0x00004008;
116 116
117 lcd_write_command(LCD_CNTL_ON_OFF | 1); /* LCD ON */ 117 lcd_write_command(LCD_CNTL_ON_OFF | 1); /* LCD ON */
118 lcd_write_command(LCD_CNTL_COLUMN_ADDRESS_DIR | 0); /* Normal */ 118 lcd_write_command(LCD_CNTL_COLUMN_ADDRESS_DIR | 0); /* Normal */