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 2100;
6 }
7
8 long get_vbatt_max()
9 {
10 return 2800;
11 }
12
13
14
15 static const int fl_tbl[] = {5800, 6600, 7900, 9900, 12700, 16000, 19600, 23200};
16 #define NUM_FL (int)(sizeof(fl_tbl)/sizeof(fl_tbl[0]))
17 #define CF_EFL 60345
18
19
20
21
22 const int zoom_points = NUM_FL;
23
24 int get_effective_focal_length(int zp) {
25 return (CF_EFL*get_focal_length(zp))/10000;
26 }
27
28 int get_focal_length(int zp) {
29 if (zp<0) return fl_tbl[0];
30 else if (zp>NUM_FL-1) return fl_tbl[NUM_FL-1];
31 else return fl_tbl[zp];
32 }
33
34 int get_zoom_x(int zp) {
35 if (zp<1) return 10;
36 else if (zp>NUM_FL-1) return fl_tbl[NUM_FL-1]*10/fl_tbl[0];
37 else return fl_tbl[zp]*10/fl_tbl[0];
38 }
39
40 #if 0
41 int rec_switch_state(void) {
42
43 return (physw_status[1] & 0x00000400);
44 }
45 #endif