Changeset 582a0b8 in mainline for uspace/srv/hid
- Timestamp:
- 2017-05-08T19:20:39Z (9 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- d2c8533
- Parents:
- 73db198
- Location:
- uspace/srv/hid
- Files:
-
- 6 edited
-
input/input.c (modified) (1 diff)
-
input/port/niagara.c (modified) (1 diff)
-
input/port/ski.c (modified) (2 diffs)
-
isdv4_tablet/isdv4.c (modified) (2 diffs)
-
output/proto/vt100.c (modified) (1 diff)
-
s3c24xx_ts/s3c24xx_ts.c (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
uspace/srv/hid/input/input.c
r73db198 r582a0b8 44 44 #include <config.h> 45 45 #include <stdio.h> 46 #include <unistd.h>47 46 #include <stdlib.h> 48 47 #include <ns.h> -
uspace/srv/hid/input/port/niagara.c
r73db198 r582a0b8 135 135 while (1) { 136 136 niagara_key_pressed(); 137 usleep(POLL_INTERVAL);137 thread_usleep(POLL_INTERVAL); 138 138 } 139 139 } -
uspace/srv/hid/input/port/ski.c
r73db198 r582a0b8 37 37 38 38 #include <stdlib.h> 39 #include <unistd.h>40 39 #include <sys/types.h> 41 40 #include <thread.h> … … 97 96 } 98 97 99 usleep(POLL_INTERVAL);98 thread_usleep(POLL_INTERVAL); 100 99 } 101 100 } -
uspace/srv/hid/isdv4_tablet/isdv4.c
r73db198 r582a0b8 31 31 #include <stdlib.h> 32 32 #include <mem.h> 33 #include <thread.h> 33 34 34 35 #include "isdv4.h" … … 377 378 return EIO; 378 379 379 usleep(250000); /* 250 ms */380 thread_usleep(250000); /* 250 ms */ 380 381 381 382 // FIXME: Read all possible garbage before sending commands -
uspace/srv/hid/output/proto/vt100.c
r73db198 r582a0b8 34 34 #include <errno.h> 35 35 #include <stdio.h> 36 #include < unistd.h>36 #include <stddef.h> 37 37 #include <malloc.h> 38 38 #include <io/color.h> -
uspace/srv/hid/s3c24xx_ts/s3c24xx_ts.c
r73db198 r582a0b8 43 43 #include <ipc/mouseev.h> 44 44 #include <async.h> 45 #include <unistd.h>46 45 #include <stdio.h> 47 46 #include <stdlib.h>
Note:
See TracChangeset
for help on using the changeset viewer.
