This source file includes following definitions.
- lens_get_focus_pos
- lens_get_focus_pos_from_lens
- lens_get_target_distance
- DoMFLock
- UnlockMF
1 #include "../generic/wrappers.c"
2
3 long lens_get_focus_pos()
4 {
5 return _GetFocusLensSubjectDistance();
6 }
7
8 long lens_get_focus_pos_from_lens()
9 {
10 return _GetFocusLensSubjectDistanceFromLens();
11 }
12
13
14 long lens_get_target_distance()
15 {
16 return _GetCurrentTargetDistance();
17 }
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47 int DoMFLock(void)
48 {
49 if (!camera_info.state.mode_play) {
50 _PT_MFOn();
51 return(1);
52 }
53 return(0);
54 }
55
56 int UnlockMF(void)
57 {
58 if (!camera_info.state.mode_play) {
59 _PT_MFOff();
60 return(1);
61 }
62 return(0);
63 }