This repository has been archived by the owner on Mar 3, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
setimps2.c
80 lines (69 loc) · 1.52 KB
/
setimps2.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
#include <config.h>
#include <stdlib.h>
#include <stdio.h>
#include <sys/stat.h>
#include <sys/types.h>
#ifdef HAVE_FCNTL_H
#include <fcntl.h>
#endif
#include <string.h>
#ifdef HAVE_UNISTD_H
#include <unistd.h>
#endif
#include <time.h>
#include <termios.h>
char readps2(int fd)
{
char ch;
while(read(fd,&ch,1) && (ch==(char)0xfa || ch==(char)0xaa))
{
fprintf(stderr,"<%02X>",ch&0xff);
}
fprintf(stderr,"[%02X]",ch&0xff);
return(ch);
}
int main(int argc, char **argv)
{
int fd;
char ch,
getdevtype=0xf2,
disabledev=0xf5,
setimps2[6]={0xf3,200,0xf3,100,0xf3,80},
setupmore[7]={0xf6,0xe6,0xf4,0xf3,100,0xe8,3},
resetps2=0xff;
if(argc>1)
fd=open(argv[1],O_RDWR);
else
fd=open("/dev/mouse",O_RDWR);
fprintf(stderr,"write disable\n");
write(fd,&disabledev,1);
tcflush(fd, TCIFLUSH);
write(fd,&getdevtype,1);
sleep(1);
ch=readps2(fd);
fprintf(stderr,"device type=%02X(%4d)\n",ch&0xff,ch);
write(fd,&resetps2,1);
sleep(1);
//ch=readps2(fd);
//fprintf(stderr,"reset response=%02X(%4d)\n",ch&0xff,ch);
fprintf(stderr,"reset complete\n");
tcflush(fd, TCIFLUSH);
write(fd,&getdevtype,1);
sleep(1);
ch=readps2(fd);
fprintf(stderr,"device type=%02X(%4d)\n",ch&0xff,ch);
write(fd,&setimps2,6);
//write(fd,&setupmore,7);
tcflush(fd, TCIFLUSH);
write(fd,&getdevtype,1);
sleep(1);
ch=readps2(fd);
fprintf(stderr,"device type=%02X(%4d)\n",ch&0xff,ch);
tcflush(fd, TCIFLUSH);
write(fd,&getdevtype,1);
sleep(1);
ch=readps2(fd);
fprintf(stderr,"device type=%02X(%4d)\n",ch&0xff,ch);
close(fd);
return(0);
}