Details | Last modification | View Log | RSS feed
Rev | Author | Line No. | Line |
---|---|---|---|
130 | ligi | 1 | #include "evdev_handler.h" |
483 | ligi | 2 | #include "config.h" |
130 | ligi | 3 | |
4 | int retval; |
||
5 | size_t read_bytes; /* how many bytes were read */ |
||
6 | struct input_event ev[64]; /* the events (up to 64 at once) */ |
||
7 | struct input_event led_event; |
||
8 | |||
9 | |||
10 | |||
11 | int counter; |
||
12 | |||
483 | ligi | 13 | int evdevs_count=0; |
14 | int file_select(struct direct *entry) |
||
15 | { |
||
16 | |||
17 | if ((strncmp(entry->d_name, "event",5))==0) |
||
18 | return (TRUE); |
||
19 | else |
||
20 | return(FALSE); |
||
21 | } |
||
22 | |||
23 | |||
24 | void collect_evdev_devices() |
||
25 | { |
||
26 | |||
484 | ligi | 27 | // char event_dev_path[]="/dev/input/"; |
483 | ligi | 28 | |
29 | struct direct **files; |
||
484 | ligi | 30 | evdevs_count = scandir(evdev_path, &files, file_select, NULL); |
483 | ligi | 31 | |
484 | ligi | 32 | printf("%d inputs found in %s\n" , evdevs_count,evdev_path); |
483 | ligi | 33 | |
34 | int i=0; |
||
486 | ligi | 35 | for (i=0;i<evdevs_count;++i) |
483 | ligi | 36 | { |
37 | |||
486 | ligi | 38 | printf("%s",files[i]->d_name); |
39 | sprintf(evdevs[i].fname,"%s%s",evdev_path,files[i]->d_name); |
||
483 | ligi | 40 | int act_fd; |
41 | |||
42 | if ((act_fd = open(evdevs[i].fname, O_RDONLY)) < 0) |
||
43 | { |
||
44 | printf(" cant open %s for reading!",evdevs[i].name); |
||
45 | |||
46 | } |
||
47 | else |
||
48 | { |
||
49 | if(ioctl(act_fd , EVIOCGNAME(sizeof(evdevs[i].name)), evdevs[i].name) < 0) { |
||
50 | perror("evdev ioctl"); |
||
51 | } |
||
52 | |||
53 | printf("EVDEV reports name: %s\n", evdevs[i].name); |
||
54 | close(act_fd); |
||
55 | } |
||
56 | |||
57 | |||
58 | /* |
||
59 | FILE *fp=NULL ; |
||
60 | |||
61 | sprintf(evdevs[i].fname,"/sys/class/input/%s/name",files[i-1]->d_name); |
||
62 | fp = fopen ( evdevs[i].fname, "r") ; |
||
63 | |||
64 | if (fp==NULL) |
||
65 | { |
||
66 | printf("cannot read %s\n",evdevs[i].fname); |
||
67 | // exit(1); |
||
68 | } |
||
69 | int ch=-2; |
||
70 | int str_pos=0; |
||
71 | while ( (ch!=-1) && (ch!='\n') ) |
||
72 | { |
||
73 | |||
74 | ch = fgetc ( fp ) ; |
||
75 | if ((ch!=13)&&(ch!=10))evdevs[i].name[str_pos++]=ch; |
||
76 | printf("%c",ch); |
||
77 | } |
||
78 | |||
79 | fclose(fp); |
||
80 | evdevs[i].name[str_pos++]=0; |
||
81 | */ |
||
82 | |||
83 | } |
||
84 | } |
||
85 | |||
86 | |||
87 | void print_event_str(int id) |
||
88 | { |
||
89 | switch ( id) |
||
90 | { |
||
91 | case EV_KEY : |
||
92 | printf("Keys or Button\n"); |
||
93 | break; |
||
94 | case EV_ABS : |
||
95 | printf("Absolute Axis\n"); |
||
96 | break; |
||
97 | case EV_LED : |
||
98 | printf("LED(s)\n"); |
||
99 | break; |
||
100 | case EV_REP : |
||
101 | printf("Repeat\n"); |
||
102 | break; |
||
103 | case EV_SYN : |
||
104 | printf("Sync?\n"); |
||
105 | break; |
||
106 | case EV_REL : |
||
107 | printf("Relative Axis\n"); |
||
108 | break; |
||
109 | case EV_MSC : |
||
110 | printf("Misc\n"); |
||
111 | break; |
||
112 | default: |
||
113 | printf("Unknown event type ( 0x%04hx)\n", id); |
||
114 | } |
||
115 | |||
116 | return ""; |
||
117 | } |
||
118 | |||
119 | int connect_evdev() |
||
130 | ligi | 120 | { |
121 | |||
483 | ligi | 122 | |
130 | ligi | 123 | struct input_devinfo { |
124 | uint16_t bustype; |
||
125 | uint16_t vendor; |
||
126 | uint16_t product; |
||
127 | uint16_t version; |
||
128 | }; |
||
129 | struct input_devinfo device_info; |
||
130 | |||
483 | ligi | 131 | int i; |
132 | for ( i =0 ; i< input_count;i++) |
||
130 | ligi | 133 | { |
483 | ligi | 134 | inputs[i].evdev_rel_axis = (int *) calloc( 100, sizeof( int ) ); |
135 | inputs[i].evdev_button = (char *)calloc( 500, sizeof( char ) ); |
||
130 | ligi | 136 | |
505 | ligi | 137 | |
138 | printf(" opening evdev %s\n",inputs[i].fname); |
||
483 | ligi | 139 | if ((inputs[i].evdev_out_fd = open(inputs[i].fname, O_WRONLY)) < 0) |
140 | { |
||
141 | printf(" cant open %s for writing\n",inputs[i].fname); |
||
142 | |||
143 | } |
||
144 | |||
145 | if ((inputs[i].evdev_in_fd = open(inputs[i].fname, O_RDONLY)) < 0) |
||
146 | { |
||
147 | printf(" cant open %s for reading!",inputs[i].fname); |
||
148 | return 0; |
||
149 | } |
||
130 | ligi | 150 | |
483 | ligi | 151 | ioctl(inputs[i].evdev_in_fd ,EVIOCGID,&device_info); |
130 | ligi | 152 | |
483 | ligi | 153 | printf("vendor 0x%04hx product 0x%04hx version 0x%04hx \n", |
154 | device_info.vendor, device_info.product, |
||
155 | device_info.version); |
||
130 | ligi | 156 | |
157 | |||
483 | ligi | 158 | uint8_t evtype_bitmask[EV_MAX/8 + 1]; |
159 | |||
160 | if(ioctl(inputs[i].evdev_in_fd , EVIOCGBIT(0, sizeof(evtype_bitmask)), evtype_bitmask) < 0) |
||
161 | perror("evdev ioctl"); |
||
162 | |||
163 | printf("Supported event types:\n"); |
||
164 | |||
165 | int i; |
||
166 | for (i = 0; i < EV_MAX; i++) { |
||
167 | if (test_bit(i, evtype_bitmask)) { |
||
168 | /* this means that the bit is set in the event types list */ |
||
169 | printf(" Event type 0x%02x ", i); |
||
170 | |||
171 | print_event_str(i); |
||
172 | }} |
||
173 | } |
||
130 | ligi | 174 | return 1; |
175 | } |
||
176 | |||
483 | ligi | 177 | /* |
130 | ligi | 178 | int init_evdevstatus_led() |
179 | { |
||
180 | led_event.type=EV_LED; |
||
181 | led_event.code = LED_MISC; |
||
182 | led_event.value = 1; |
||
183 | if (evdev_out_fd) |
||
184 | retval = write(evdev_out_fd, &led_event, sizeof(struct input_event)); |
||
185 | return 1; |
||
186 | } |
||
187 | |||
188 | int blink_evdev_led() |
||
189 | { |
||
190 | |||
191 | if (evdev_out_fd) |
||
192 | { |
||
193 | if (led_event.value) |
||
194 | led_event.value = 0; |
||
483 | ligi | 195 | else |
130 | ligi | 196 | led_event.value = 1 ; |
197 | |||
198 | retval = write(evdev_out_fd, &led_event, sizeof(struct input_event)); |
||
199 | } |
||
200 | return 1; |
||
201 | } |
||
483 | ligi | 202 | */ |
130 | ligi | 203 | |
204 | int poll_evdev() |
||
205 | { |
||
206 | |||
483 | ligi | 207 | printf("polling evdev\n"); |
208 | int i; |
||
209 | for ( i =0 ; i< input_count;i++) |
||
130 | ligi | 210 | { |
483 | ligi | 211 | struct timeval tv = {0,5}; |
130 | ligi | 212 | |
483 | ligi | 213 | fd_set rfds; |
214 | FD_ZERO(&rfds); |
||
215 | FD_SET(inputs[i].evdev_in_fd,&rfds); |
||
216 | |||
130 | ligi | 217 | |
483 | ligi | 218 | |
219 | retval = select(inputs[i].evdev_in_fd+1, &rfds, NULL, NULL, &tv); |
||
220 | |||
221 | if (retval==-1) |
||
222 | printf("error in select!!!!!!!!\n"); |
||
223 | else if (retval) |
||
130 | ligi | 224 | { |
483 | ligi | 225 | read_bytes = read(inputs[i].evdev_in_fd, ev, sizeof(struct input_event) * 64); |
226 | |||
227 | if (read_bytes < (int) sizeof(struct input_event)) { |
||
228 | perror("evtest: short read"); |
||
229 | exit (1); |
||
130 | ligi | 230 | |
483 | ligi | 231 | } |
232 | |||
233 | for (counter = 0; counter < (int) (read_bytes / sizeof(struct input_event)); counter++) |
||
234 | { |
||
505 | ligi | 235 | // print_event_str(ev[counter].type); |
236 | // printf(" code:%d val:%d \n",ev[counter].code,ev[counter].value); |
||
483 | ligi | 237 | |
238 | // if (ev[counter].type==EV_REL) evdev_rel_axis[ ev[counter].code]= ev[counter].value; |
||
239 | // for logitech problem |
||
240 | if (ev[counter].type==EV_REL) inputs[i].evdev_rel_axis[ ev[counter].code]= ev[counter].value; |
||
241 | if (ev[counter].type==EV_KEY) inputs[i].evdev_button[ ev[counter].code]= ev[counter].value; |
||
242 | } |
||
243 | |||
244 | |||
245 | for (counter=0;counter<20;counter++) |
||
246 | printf("A%d %d -" , counter, inputs[i].evdev_rel_axis[counter] ); |
||
247 | printf("\n"); |
||
248 | |||
249 | for (counter=0;counter<10;counter++) |
||
250 | printf("B%d %d -" , counter, inputs[i].evdev_button[counter] ); |
||
251 | // printf("input read done: nick:%d roll:%d gier:%d gas:%d\n",axis[3] , axis[4] , axis[5] , axis[2]); |
||
130 | ligi | 252 | } |
483 | ligi | 253 | else |
254 | printf("no data from evdev data from evdev: \n"); |
||
130 | ligi | 255 | } |
256 | return 1; |
||
257 | } |