This source file includes following definitions.
- get_usb_bit
- wrap_kbd_p1_f
- mykbd_task
- my_kbd_read_keys
- kbd_fetch_data
- get_touch_data
- chdk_process_touch
1 #include "lolevel.h"
2 #include "platform.h"
3 #include "keyboard.h"
4 #include "kbd_common.h"
5
6 long kbd_new_state[3] = { 0xFFFFFFFF, 0xFFFFFFFF, 0xFFFFFFFF };
7 long kbd_prev_state[3] = { 0xFFFFFFFF, 0xFFFFFFFF, 0xFFFFFFFF };
8 long kbd_mod_state[3] = { 0xFFFFFFFF, 0xFFFFFFFF, 0xFFFFFFFF };
9
10 extern void _GetKbdState(long*);
11
12 int get_usb_bit()
13 {
14 long usb_physw[3];
15 usb_physw[USB_IDX] = 0;
16 _kbd_read_keys_r2(usb_physw);
17 return(( usb_physw[USB_IDX] & USB_MASK)==USB_MASK) ;
18 }
19
20 KeyMap keymap[] = {
21
22
23
24 { 0, KEY_ZOOM_IN ,0x00002000 },
25 { 0, KEY_ZOOM_OUT ,0x00001000 },
26 { 1, KEY_DOWN ,0x00800000 },
27 { 1, KEY_UP ,0x00400000 },
28 { 1, KEY_SHOOT_FULL ,0x00300000 },
29 { 1, KEY_SHOOT_FULL_ONLY ,0x00200000 },
30 { 1, KEY_SHOOT_HALF ,0x00100000 },
31 { 1, KEY_SET ,0x08000000 },
32 { 1, KEY_MENU ,0x04000000 },
33 { 1, KEY_LEFT ,0x02000000 },
34 { 1, KEY_RIGHT ,0x01000000 },
35 { 1, KEY_PLAYBACK ,0x80000000 },
36
37 { 1, KEY_HELP ,0x20000000 },
38 { 1, KEY_VIDEO ,0x10000000 },
39 { 0, 0, 0 }
40 };
41
42
43 long __attribute__((naked,noinline)) wrap_kbd_p1_f() {
44 asm volatile(
45 "STMFD SP!, {R1-R7,LR} \n"
46 "MOV R5, #0 \n"
47 "BL my_kbd_read_keys \n"
48 "B _kbd_p1_f_cont \n"
49 );
50
51 return 0;
52 }
53
54 void __attribute__((noinline)) mykbd_task() {
55 while (physw_run) {
56 _SleepTask(physw_sleep_delay);
57 if (wrap_kbd_p1_f() == 1) {
58 _kbd_p2_f();
59 }
60 }
61 _ExitTask();
62 }
63
64 void my_kbd_read_keys() {
65 kbd_update_key_state();
66 kbd_update_physw_bits();
67
68 extern void state_check_for_movie_af();
69 state_check_for_movie_af();
70 }
71
72 void kbd_fetch_data(long *dst)
73 {
74 _GetKbdState(dst);
75 _kbd_read_keys_r2(dst);
76 }
77
78 #if 0
79
80
81
82
83
84
85
86 static unsigned short touchx = 0, touchy = 0;
87 static unsigned int touchcnt = 0;
88
89 void get_touch_data(unsigned short *x, unsigned short *y, unsigned int *cnt)
90 {
91 *x=touchx;
92 *y=touchy;
93 *cnt=touchcnt;
94 }
95
96
97
98 int chdk_process_touch()
99 {
100 touchcnt++;
101 extern unsigned short touch_screen_x, touch_screen_y;
102
103 touchx = ((touch_screen_x & 0x7FFF) >> 5) ^ 0x3FF;
104 touchy = ((touch_screen_y & 0x7FFF) >> 5) ^ 0x3FF;
105
106
107 return !camera_info.state.gui_mode_none;
108 }
109 #endif