This source file includes following definitions.
- startup
- get_effective_focal_length
- get_focal_length
- get_zoom_x
- get_vbatt_min
- 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 {
13 long *bss = &link_bss_start;
14
15
16 if ((long)&link_bss_end > (MEMISOSTART + MEMISOSIZE)){
17 started();
18 shutdown();
19 }
20
21 while (bss<&link_bss_end)
22 *bss++ = 0;
23 boot();
24 }
25
26 #define NUM_FL 64
27 #define NUM_DATA 2
28 extern int focus_len_table[NUM_FL*NUM_DATA];
29
30
31
32
33
34
35 #define CF_EFL 336
36 #define CF_EFL_DIV 60
37
38 const int zoom_points = NUM_FL;
39
40 int get_effective_focal_length(int zp) {
41 return (CF_EFL*get_focal_length(zp))/CF_EFL_DIV;
42 }
43
44 int get_focal_length(int zp) {
45 if (zp < 0) zp = 0;
46 else if (zp >= NUM_FL) zp = NUM_FL-1;
47 return focus_len_table[zp*NUM_DATA];
48 }
49
50 int get_zoom_x(int zp) {
51 return get_focal_length(zp)*10/focus_len_table[0];
52 }
53
54 long get_vbatt_min()
55 {
56 return 2400;
57 }
58
59 long get_vbatt_max()
60 {
61 return 2700;