root/platform/sx60hs/main.c

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

DEFINITIONS

This source file includes following definitions.
  1. startup
  2. screen_opened
  3. screen_rotated
  4. get_effective_focal_length
  5. get_focal_length
  6. get_zoom_x
  7. get_vbatt_min
  8. get_vbatt_max

   1 #include "lolevel.h"
   2 #include "platform.h"
   3 #include "core.h"
   4 #include "keyboard.h"
   5 
   6 
   7 extern long link_bss_start;
   8 extern long link_bss_end;
   9 extern void boot();
  10 
  11 void startup() {
  12     long *bss = &link_bss_start;
  13 //    *(int*)0xd20b0884 = 0x4d0002;
  14 
  15     // sanity check
  16     if ((long)&link_bss_end > (MEMISOSTART + MEMISOSIZE)) {
  17         started();
  18         shutdown();
  19     }
  20     // initialize .bss senment
  21     while (bss<&link_bss_end)
  22         *bss++ = 0;
  23 //    *(int*)0xd20b0884 = 0x4d0002;
  24     boot();
  25 }
  26 int screen_opened(void) {
  27         return (physw_status[2] & 0x00000200);
  28 }
  29 
  30 int screen_rotated(void) {
  31         return !(physw_status[2] & 0x00000100);
  32 }
  33 
  34 
  35 #define NUM_FL      201
  36 #define NUM_DATA    1   // 1 entry per FL  
  37 extern int focus_len_table[NUM_FL*NUM_DATA];
  38 
  39 // Conversion factor lens FL --> 35mm equiv
  40 // lens      35mm     CF
  41 // ----      ----     --
  42 // 3.8       21.3     (21.3/3.8) * 38 = 213 
  43 // 247       1385.8   (1385.8/247)*38 = 213
  44 //cropfactor 5.61
  45 #define CF_EFL      213
  46 #define CF_EFL_DIV  38
  47 
  48 const int zoom_points = NUM_FL;
  49 
  50 int get_effective_focal_length(int zp) {
  51     return (CF_EFL*get_focal_length(zp))/CF_EFL_DIV;
  52 }
  53 
  54 int get_focal_length(int zp) {
  55     if (zp < 0) zp = 0;
  56     else if (zp >= NUM_FL) zp = NUM_FL-1;
  57     return focus_len_table[zp*NUM_DATA];
  58 }
  59 
  60 int get_zoom_x(int zp) {
  61     return get_focal_length(zp)*10/focus_len_table[0];
  62 }
  63 
  64 long get_vbatt_min()
  65 {
  66     return 6450; //6700 is red in Canon display
  67 }
  68 
  69 
  70 long get_vbatt_max()
  71 {
  72 
  73     return 8250;  //8300
  74 }

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