summaryrefslogtreecommitdiff
path: root/apps
diff options
context:
space:
mode:
authorRobert Kukla <roolku@rockbox.org>2008-01-22 04:16:28 +0000
committerRobert Kukla <roolku@rockbox.org>2008-01-22 04:16:28 +0000
commit7da7e7bdd2d88cefe09f8c9953df076875750c25 (patch)
treeba6ff1b208f84a7b78d5924d10889c8f8f12b990 /apps
parent7bc4d24834470ac419c528b2bd9adcea8f56ce7c (diff)
add timer registration for mrobe100 lcd to greyscale lib (fix yellow)
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@16137 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps')
-rw-r--r--apps/plugins/lib/grey_core.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/apps/plugins/lib/grey_core.c b/apps/plugins/lib/grey_core.c
index 0e2408b107..015c637eeb 100644
--- a/apps/plugins/lib/grey_core.c
+++ b/apps/plugins/lib/grey_core.c
@@ -480,6 +480,8 @@ void grey_show(bool enable)
_grey_info.rb->timer_register(1, NULL, TIMER_FREQ / 88, 1, _timer_isr);
#elif CONFIG_LCD == LCD_IFP7XX
_grey_info.rb->timer_register(1, NULL, TIMER_FREQ / 83, 1, _timer_isr);
+#elif CONFIG_LCD == LCD_MROBE100
+ _grey_info.rb->timer_register(1, NULL, TIMER_FREQ / 83, 1, _timer_isr); /* not calibrated/tested */
#endif /* CONFIG_LCD */
#endif /* !SIMULATOR */
_grey_info.rb->screen_dump_set_hook(grey_screendump_hook);