root/include/temperature.h

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

INCLUDED FROM


   1 #ifndef TEMPERATURE_H
   2 #define TEMPERATURE_H
   3 
   4 // CHDK Firmware temp sensor 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 int get_ccd_temp();
  10 int get_optical_temp();
  11 int get_battery_temp();
  12 
  13 #endif
  14 

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