This source file includes following definitions.
- get_vbatt_min
- get_vbatt_max
- get_effective_focal_length
- get_focal_length
- get_zoom_x
- rec_switch_state
1 #include "../generic/main.c"
2
3 long get_vbatt_min()
4 {
5 return 3500;
6 }
7
8 long get_vbatt_max()
9 {
10 return 4100;
11 }
12
13
14
15
16 static const int fl_tbl[] = {5800, 6630, 7470, 8640, 9970, 11820, 14330, 18630, 23200};
17 #define NUM_FL (int)(sizeof(fl_tbl)/sizeof(fl_tbl[0]))
18 #define CF_EFL 60345
19
20 const int zoom_points = NUM_FL;
21
22 int get_effective_focal_length(int zp) {
23 return (CF_EFL*get_focal_length(zp))/10000;
24 }
25
26 int get_focal_length(int zp) {
27 if (zp<0) return fl_tbl[0];
28 else if (zp>NUM_FL-1) return fl_tbl[NUM_FL-1];
29 else return fl_tbl[zp];
30 }
31
32 int get_zoom_x(int zp) {
33 if (zp<1) return 10;
34 else if (zp>NUM_FL-1) return fl_tbl[NUM_FL-1]*10/fl_tbl[0];
35 else return fl_tbl[zp]*10/fl_tbl[0];
36 }
37
38 #if 0
39 int rec_switch_state(void) {
40
41 return (physw_status[2] & 0x1000);
42 }
43 #endif