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
|
#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))
{
printf("<%02X>",ch&0xff);
fflush(stdout);
}
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);
tcflush(fd, TCIFLUSH);
write(fd,&getdevtype,1);
sleep(1);
ch=readps2(fd);
printf("device type=%02X(%4d)\n",ch&0xff,ch);
close(fd);
return(0);
}
|