人生之旅
niutao.linux
全部博文(113)
Linux变频机制(0)
2013年(7)
2012年(5)
2011年(6)
2010年(8)
2009年(15)
2008年(72)
helianth
wangbaol
sitingti
乡下老曹
mournjus
sdydding
奥斯特洛
sunjiang
liurhyme
wb123456
dnybz
tarzan
zhangche
一牛科技
cynthia
wibnmo
YLD10
_nosay
分类: LINUX
2009-03-25 21:38:55
[root@FriendlyARM niutao]# insmod mini2440_niutao_led.ko [root@FriendlyARM niutao]# rm /dev/niutao_leds [root@FriendlyARM niutao]# mknod /dev/niutao_leds c 212 0 [root@FriendlyARM niutao]
#include "led.h" #include <sys/ioctl.h> #include <sys/types.h> #include <sys/stat.h> #include <fcntl.h> int main() { int fd, i; if ((fd = open("/dev/niutao_leds", O_RDWR)) == -1) { printf("open device error\n"); exit(1); } for (i = 5;;i++) { if (i == 9) { i = 4; continue; } ioctl(fd, LED_CTRL_ON, i); sleep(1); } close(fd); return 0; }
上一篇:Mini2440 LED灯驱动模块一
下一篇:linux下批量添加用户
登录 注册