LED 驱动程序
自己写了一个测试程序,用来测试开发板linux 3.0.1的les驱动程序(飞凌自带的,没有去修改)。运行测试程序,没有任何反映,串口也无信息输出。LED也没反映。以下是测试程序:
#include <sys/types.h>
#include <sys/stat.h>
#include <fcntl.h>
#include <stdio.h>
int main(int argc, char **argv)
{
int fd;
int val = 1;
fd = open("/dev/leds", O_RDWR);
if (fd < 0)
{
printf("can't open!\n");
}
ioctl(fd, &val, 4);
return 0;
} 楼主你看看开发板自带的测试程序能不能用啊
页:
[1]