This source file includes following definitions.
- startup
- get_effective_focal_length
- get_focal_length
- get_zoom_x
- get_vbatt_min
- get_vbatt_max
- screen_opened
- screen_rotated
1 #include "lolevel.h"
2 #include "platform.h"
3 #include "core.h"
4 #include "keyboard.h"
5
6 extern long link_bss_start;
7 extern long link_bss_end;
8 extern void boot();
9
10 void startup() {
11 long *bss = &link_bss_start;
12
13 if ((long)&link_bss_end > (MEMISOSTART + MEMISOSIZE)) {
14 started();
15 shutdown();
16 }
17
18 while (bss<&link_bss_end)
19 *bss++ = 0;
20 boot();
21 }
22
23 #define NUM_FL 101
24 #define NUM_DATA 2
25 extern int focus_len_table[NUM_FL*NUM_DATA];
26
27
28
29
30
31
32 #define CF_EFL 273
33 #define CF_EFL_DIV 100
34
35 const int zoom_points = NUM_FL;
36
37 int get_effective_focal_length(int zp) {
38 return (CF_EFL*get_focal_length(zp))/CF_EFL_DIV;
39 }
40
41 int get_focal_length(int zp) {
42 if (zp < 0) zp = 0;
43 else if (zp >= NUM_FL) zp = NUM_FL-1;
44 return focus_len_table[zp*NUM_DATA];
45 }
46
47 int get_zoom_x(int zp) {
48 return get_focal_length(zp)*10/focus_len_table[0];
49 }
50
51 long get_vbatt_min()
52 {
53 return 2980;
54 }
55
56 long get_vbatt_max()
57 {
58 return 4000;
59 }
60
61
62 int screen_opened(void) {
63 return (physw_status[0] & 0x00002000);
64 }
65
66
67 int screen_rotated(void) {
68 return !(physw_status[0] & 0x10000000);
69 }