root/platform/sx230hs/wrappers.c

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

DEFINITIONS

This source file includes following definitions.
  1. lens_get_focus_pos
  2. lens_get_focus_pos_from_lens
  3. lens_get_target_distance
  4. GPS_UpdateData
  5. DoMFLock
  6. UnlockMF

   1 #include "../generic/wrappers.c"
   2 
   3 long lens_get_focus_pos()
   4 {
   5         return _GetFocusLensSubjectDistance();
   6 }
   7 
   8 long lens_get_focus_pos_from_lens()
   9 {
  10         return _GetFocusLensSubjectDistanceFromLens(); 
  11 }
  12 
  13 long lens_get_target_distance()
  14 {
  15         return _GetCurrentTargetDistance();
  16 }
  17 
  18 #ifdef CAM_HAS_GPS
  19 void GPS_UpdateData() {
  20     _GPS_UpdateData();
  21 }
  22 #endif
  23 
  24  
  25  //--------------------------------------------------
  26  // DoMFLock : use _MFOn/_MFOff  or  _PT_MFOn/_PT_MFOff  or _SS_MFOn/_SS_MFOff if defined in stubs_entry.S
  27  //            otherwise use PostLogicalEventForNotPowerType(levent_id_for_name(PressSW1andMF),0); (see sx500hs for an example)
  28  
  29 int DoMFLock(void)
  30 {
  31   if (!camera_info.state.mode_play) {
  32      _PT_MFOn();
  33      return(1);
  34   }
  35   return(0);
  36 }
  37  
  38 int UnlockMF(void)
  39 {
  40   if (!camera_info.state.mode_play) {
  41      _PT_MFOff();
  42      return(1);
  43   }
  44   return(0);
  45 }

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