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