summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--firmware/target/arm/ipod/lcd-color_nano.c11
1 files changed, 11 insertions, 0 deletions
diff --git a/firmware/target/arm/ipod/lcd-color_nano.c b/firmware/target/arm/ipod/lcd-color_nano.c
index 482622bf57..87e142a573 100644
--- a/firmware/target/arm/ipod/lcd-color_nano.c
+++ b/firmware/target/arm/ipod/lcd-color_nano.c
@@ -102,6 +102,17 @@ void lcd_init_device(void)
102 lcd_type = 1; 102 lcd_type = 1;
103 } 103 }
104 } 104 }
105 if (lcd_type == 0) {
106 lcd_cmd_data(0xef, 0x0);
107 lcd_cmd_data(0x1, 0x0);
108 lcd_cmd_data(0x80, 0x1);
109 lcd_cmd_data(0x10, 0x8);
110 lcd_cmd_data(0x18, 0x6);
111 lcd_cmd_data(0x7e, 0x4);
112 lcd_cmd_data(0x7e, 0x5);
113 lcd_cmd_data(0x7f, 0x1);
114 }
115
105#elif CONFIG_LCD == LCD_IPODNANO 116#elif CONFIG_LCD == LCD_IPODNANO
106 /* iPodLinux doesn't appear have any LCD init code for the Nano */ 117 /* iPodLinux doesn't appear have any LCD init code for the Nano */
107#endif 118#endif