root/platform/g9/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 long lens_get_target_distance()
  14 {
  15     return _GetCurrentTargetDistance();
  16 }
  17 
  18 
  19 void camera_set_led(int led, int state, int bright)
  20 { 
  21         struct led_control led_c; 
  22         char convert_table[11]={0,1,2,3,0,2,3,1,8,10,10};  // s3 to a710 (and a720) convert table
  23 
  24         //char convert_table[6]={0,1,2,3,8,10};  // Test a720, values 0-5 are valid
  25 
  26         // 0 gr  
  27         // 1 red 
  28         // 2 yel 
  29         // 3 pw  
  30         // 8 dp  
  31         // 9 af  
  32 
  33         led_c.led_num=convert_table[led%11]; 
  34         led_c.action=state<=1 ? !state : state; 
  35         led_c.brightness=bright; 
  36         led_c.blink_count=255; 
  37         _PostLEDMessage(&led_c); 
  38 } 
  39 
  40 
  41  
  42  //--------------------------------------------------
  43  // DoMFLock : use _MFOn/_MFOff  or  _PT_MFOn/_PT_MFOff  or _SS_MFOn/_SS_MFOff if defined in stubs_entry.S
  44  //            otherwise use PostLogicalEventForNotPowerType(levent_id_for_name(PressSW1andMF),0); (see sx500hs for an example)
  45  
  46 int DoMFLock(void)
  47 {
  48   if (!camera_info.state.mode_play) {
  49      _MFOn();
  50      return(1);
  51   }
  52   return(0);
  53 }
  54  
  55 int UnlockMF(void)
  56 {
  57   if (!camera_info.state.mode_play) {
  58      _MFOff();
  59      return(1);
  60   }
  61   return(0);
  62 }

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