summaryrefslogtreecommitdiff
path: root/apps/plugin.h
diff options
context:
space:
mode:
Diffstat (limited to 'apps/plugin.h')
-rw-r--r--apps/plugin.h7
1 files changed, 7 insertions, 0 deletions
diff --git a/apps/plugin.h b/apps/plugin.h
index 634bbed0d8..4f747ea2b1 100644
--- a/apps/plugin.h
+++ b/apps/plugin.h
@@ -246,6 +246,13 @@ struct plugin_api {
246#endif /* HAVE_LCD_BITMAP */ 246#endif /* HAVE_LCD_BITMAP */
247 247
248 /* backlight */ 248 /* backlight */
249 /* The backlight_* functions must be present in the API regardless whether
250 * HAVE_BACKLIGHT is defined or not. The reason is that the stock Ondio has
251 * no backlight but can be modded to have backlight (it's prepared on the
252 * PCB). This makes backlight an all-target feature API wise, and keeps API
253 * compatible between stock and modded Ondio.
254 * For OLED targets like the Sansa Clip, the backlight_* functions control
255 * the display enable, which has essentially the same effect. */
249 void (*backlight_on)(void); 256 void (*backlight_on)(void);
250 void (*backlight_off)(void); 257 void (*backlight_off)(void);
251 void (*backlight_set_timeout)(int index); 258 void (*backlight_set_timeout)(int index);