root/platform/a590/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. camera_set_led
  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 
  14 long lens_get_target_distance()
  15 {
  16     return _GetCurrentTargetDistance();
  17 }
  18 
  19 
  20 void camera_set_led(int led, int state, __attribute__ ((unused))int bright)
  21 {
  22         // 0 gr  
  23         // 1 orange 
  24         // 2 yel 
  25         // 8 dp  
  26         // 9 af  
  27 
  28   int leds[] = {0,2,8,1,8,9};
  29   if(led < 4 || led > 9 || led == 6) return;
  30   _LEDDrive(leds[led-4], state<=1 ? !state : state);
  31 } 
  32 
  33 
  34  
  35  //--------------------------------------------------
  36  // DoMFLock : use _MFOn/_MFOff  or  _PT_MFOn/_PT_MFOff  or _SS_MFOn/_SS_MFOff if defined in stubs_entry.S
  37  //            otherwise use PostLogicalEventForNotPowerType(levent_id_for_name(PressSW1andMF),0); (see sx500hs for an example)
  38  
  39 int DoMFLock(void)
  40 {
  41   if (!camera_info.state.mode_play) {
  42      _PT_MFOn();
  43      return(1);
  44   }
  45   return(0);
  46 }
  47  
  48 int UnlockMF(void)
  49 {
  50   if (!camera_info.state.mode_play) {
  51      _PT_MFOff();
  52      return(1);
  53   }
  54   return(0);
  55 }

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