From b1079200d34b197a9ea0ec649168b0a307ee9517 Mon Sep 17 00:00:00 2001 From: Björn Stenberg Date: Thu, 27 Feb 2003 14:22:30 +0000 Subject: New option: Invert display. Patch by Mark Hillebrand. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@3355 a1c6a512-1295-4272-9138-f99709370657 --- firmware/drivers/lcd-recorder.c | 8 ++++++++ 1 file changed, 8 insertions(+) (limited to 'firmware/drivers/lcd-recorder.c') diff --git a/firmware/drivers/lcd-recorder.c b/firmware/drivers/lcd-recorder.c index 26112e37dd..6665ea88dc 100644 --- a/firmware/drivers/lcd-recorder.c +++ b/firmware/drivers/lcd-recorder.c @@ -194,6 +194,14 @@ void lcd_set_contrast(int val) lcd_write(true, val); } +void lcd_set_invert_display(bool yesno) +{ + if (yesno) + lcd_write(true, LCD_SET_REVERSE_DISPLAY); + else + lcd_write(true, LCD_SET_NORMAL_DISPLAY); +} + /** * Rolls up the lcd display by the specified amount of lines. * Lines that are rolled out over the top of the screen are -- cgit v1.2.3