|
发表于 2003-10-25 15:05:40
|
显示全部楼层
是扬声器吗?
参考一下:
http://www.fanqiang.com/a4/b8/20010809/1200011095.html
- #include <stdio.h>
- #include <stdlib.h>
- #include <unistd.h>
- #include <fcntl.h>
- #include <linux/kd.h>
- int
- main()
- {
- int fd;
- int freq = 1000;
- int delay = 2000000; /* 2秒 */
- if((fd = open("/dev/console", O_WRONLY)) < 0){
- fprintf(stderr, "cannot open /dev/console\n");
- exit(-1);
- }
- ioctl(fd, KIOCSOUND, 1190000 / freq);
- usleep(delay);
- ioctl(fd, KIOCSOUND, 0);
- exit(0);
- }
复制代码 |
|