root/include/backlight.h

/* [<][>][^][v][top][bottom][index][help] */

INCLUDED FROM


   1 #ifndef BACKLIGHT_H
   2 #define BACKLIGHT_H
   3 
   4 // CHDK LCD backlight interface
   5 
   6 // Note: used in modules and platform independent code. 
   7 // Do not add platform dependent stuff in here (#ifdef/#endif compile options or camera dependent values)
   8 
   9 void TurnOnBackLight(void);
  10 void TurnOffBackLight(void);
  11 void TurnOnDisplay(void);
  12 void TurnOffDisplay(void);
  13 
  14 #endif

/* [<][>][^][v][top][bottom][index][help] */