root/platform/sx280hs/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  // DoMFLock : use _MFOn/_MFOff  or  _PT_MFOn/_PT_MFOff  or _SS_MFOn/_SS_MFOff if defined in stubs_entry.S
  26  //            otherwise use PostLogicalEventForNotPowerType(levent_id_for_name(PressSW1andMF),0); (see sx500hs for an example)
  27  
  28 int DoMFLock(void)
  29 {
  30   if (!camera_info.state.mode_play) {
  31      _PT_MFOn();
  32      return(1);
  33   }
  34   return(0);
  35 }
  36  
  37 int UnlockMF(void)
  38 {
  39   if (!camera_info.state.mode_play) {
  40      _PT_MFOff();
  41      return(1);
  42   }
  43   return(0);
  44 }

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