This source file includes following definitions.
- startup
- get_effective_focal_length
- get_focal_length
- get_zoom_x
- rec_switch_state
- get_vbatt_min
- get_vbatt_max
1 #include "camera.h"
2 #include "lolevel.h"
3 #include "platform.h"
4 #include "core.h"
5 #include "keyboard.h"
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
27 boot();
28 }
29
30
31 #define NUM_FL 8
32 #define NUM_DATA 3
33 extern int focus_len_table[NUM_FL*NUM_DATA];
34
35
36
37
38
39
40 #define CF_EFL 350
41 #define CF_EFL_DIV 58
42
43 const int zoom_points = NUM_FL;
44
45 int get_effective_focal_length(int zp) {
46 return (CF_EFL*get_focal_length(zp))/CF_EFL_DIV;
47 }
48
49 int get_focal_length(int zp) {
50 if (zp < 0) zp = 0;
51 else if (zp >= NUM_FL) zp = NUM_FL-1;
52 return focus_len_table[zp*NUM_DATA];
53 }
54
55 int get_zoom_x(int zp) {
56 return get_focal_length(zp)*10/focus_len_table[0];
57 }
58
59 #if 0
60 int rec_switch_state(void) {
61
62 return (physw_status[1] & 0x02000000);
63 }
64 #endif
65
66 long get_vbatt_min()
67 {
68 return 2300;
69 }
70
71 long get_vbatt_max()
72 {
73 return 2550;
74 }
75