Rev 1389 | Go to most recent revision | Details | Last modification | View Log | RSS feed
Rev | Author | Line No. | Line |
---|---|---|---|
1363 | mauro | 1 | |
2 | /* |
||
3 | * Project: S.Ha.R.K. |
||
4 | * |
||
5 | * Coordinators: Giorgio Buttazzo <giorgio@sssup.it> |
||
6 | * |
||
7 | * Authors : Mauro Marinoni <mauro.marinoni@unipv.it> |
||
8 | * (see authors.txt for full list of hartik's authors) |
||
9 | * |
||
10 | * ReTiS Lab (Scuola Superiore S.Anna - Pisa - Italy) |
||
11 | * |
||
12 | * http://www.sssup.it |
||
13 | * http://retis.sssup.it |
||
14 | * http://shark.sssup.it |
||
15 | */ |
||
16 | |||
17 | /* |
||
18 | * Copyright (C) 2000 Paolo Gai |
||
19 | * |
||
20 | * This program is free software; you can redistribute it and/or modify |
||
21 | * it under the terms of the GNU General Public License as published by |
||
22 | * the Free Software Foundation; either version 2 of the License, or |
||
23 | * (at your option) any later version. |
||
24 | * |
||
25 | * This program is distributed in the hope that it will be useful, |
||
26 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
||
27 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
||
28 | * GNU General Public License for more details. |
||
29 | * |
||
30 | * You should have received a copy of the GNU General Public License |
||
31 | * along with this program; if not, write to the Free Software |
||
32 | * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA |
||
33 | * |
||
34 | */ |
||
35 | |||
36 | #include <kernel/kern.h> |
||
37 | #include <kernel/func.h> |
||
38 | #include <stdlib.h> |
||
39 | #include <string.h> |
||
40 | |||
41 | #include <drivers/shark_linuxc26.h> |
||
42 | #include <drivers/shark_input26.h> |
||
43 | #include <drivers/shark_mouse26.h> |
||
44 | #include <drivers/shark_keyb26.h> |
||
45 | #include <drivers/shark_spk26.h> |
||
46 | |||
47 | void my_sysclose(KEY_EVT *e) |
||
48 | { |
||
49 | mouse_txtcursor(DISABLE); |
||
50 | |||
51 | MOUSE26_close(); |
||
52 | KEYB26_close(); |
||
53 | INPUT26_close(); |
||
54 | |||
55 | kern_printf("S.Ha.R.K. closed.\n\n"); |
||
56 | sys_end(); |
||
57 | } |
||
58 | |||
59 | TASK my_putxy(void *arg) { |
||
60 | |||
61 | int x, y, z; |
||
62 | unsigned long btn; |
||
63 | |||
64 | clear(); |
||
65 | |||
66 | while (1) { |
||
67 | mouse_getpos(&x, &y, &z, &btn); |
||
68 | place(10, 10); |
||
69 | printk("X: %2d - Y: %2d - Z: %3d - Btn: %4d\n", x, y, z, (int)btn); |
||
70 | |||
71 | task_endcycle(); |
||
72 | } |
||
73 | } |
||
74 | |||
75 | int main(int argc, char **argv) |
||
76 | { |
||
77 | SOFT_TASK_MODEL mp; |
||
78 | PID pid; |
||
79 | KEY_EVT ev; |
||
80 | |||
81 | ev.ascii = 'c'; |
||
82 | ev.scan = KEY_C; |
||
83 | ev.status = KEY_PRESSED; |
||
84 | ev.flag = CNTL_BIT; |
||
85 | keyb_hook(ev, my_sysclose, FALSE); |
||
86 | ev.flag = CNTR_BIT; |
||
87 | keyb_hook(ev, my_sysclose, FALSE); |
||
88 | |||
89 | mouse_txtcursor(ENABLE); |
||
90 | |||
91 | soft_task_default_model(mp); |
||
92 | soft_task_def_level(mp,2); |
||
93 | soft_task_def_ctrl_jet(mp); |
||
94 | soft_task_def_met(mp,700); |
||
95 | soft_task_def_period(mp,1000); |
||
96 | //soft_task_def_aperiodic(mp); |
||
97 | soft_task_def_usemath(mp); |
||
98 | pid = task_create("Mouse_Print", my_putxy, &mp, NULL); |
||
99 | if (pid == NIL) { |
||
100 | perror("Could not create task <Mouse_Print>"); |
||
101 | my_sysclose(NULL); |
||
102 | } else |
||
103 | task_activate(pid); |
||
104 | |||
105 | while ( (sys_gettime(NULL)/1000) < 20000); |
||
106 | my_sysclose(NULL); |
||
107 | |||
108 | //while(1); |
||
109 | |||
110 | return 0; |
||
111 | } |