summaryrefslogtreecommitdiff
path: root/firmware/drivers/lcd-ipod.c
diff options
context:
space:
mode:
Diffstat (limited to 'firmware/drivers/lcd-ipod.c')
-rw-r--r--firmware/drivers/lcd-ipod.c13
1 files changed, 13 insertions, 0 deletions
diff --git a/firmware/drivers/lcd-ipod.c b/firmware/drivers/lcd-ipod.c
index 2d165551e6..529509f4d8 100644
--- a/firmware/drivers/lcd-ipod.c
+++ b/firmware/drivers/lcd-ipod.c
@@ -156,6 +156,19 @@ void lcd_set_contrast(int val)
156 lcd_contrast = val; 156 lcd_contrast = val;
157} 157}
158 158
159void lcd_set_invert_display(bool yesno)
160{
161 /* TODO: Implement lcd_set_invert_display() */
162 (void)yesno;
163}
164
165/* turn the display upside down (call lcd_update() afterwards) */
166void lcd_set_flip(bool yesno)
167{
168 /* TODO: Implement lcd_set_flip() */
169 (void)yesno;
170}
171
159void lcd_update_rect(int x, int y, int width, int height) 172void lcd_update_rect(int x, int y, int width, int height)
160{ 173{
161 int cursor_pos, xx; 174 int cursor_pos, xx;