下午好。 我的目标是编写一个简单的c程序,该程序在我的beagleboard-xm上运行,并且每100 ms在gpio引脚上打开一个led。我想用定时器中断来实现这个目的。 我正在尝试按照本教程
http://www.kunen.org/uC/beagle/omap_dmtimer.html
但是我想念一些东西。我需要一些内核操作吗? 我在beagleboard-xm上安装了本机gcc编译器,在Windows 7上安装了Code Sourcery交叉编译器,我可以构建简单的程序来操作leds,但是两个编译器都不能识别教程中使用的头文件:
#include <linux/module.h>
#include <linux/kernel.h>
#include <linux/init.h>
#include <linux/clk.h>
#include <linux/irq.h>
#include <linux/interrupt.h>
#include <asm/io.h>
#include <mach/dmtimer.h>
#include <linux/types.h>
任何建议都将非常感谢。 提前致谢 在这里,我发布了我用于GPIO操作的代码
#include <stdio.h>
#include<signal.h>
#include<unistd.h>
void sig_handler(int signo) {
if (signo == SIGINT) {
FILE *fp;
if ((fp = fopen("/sys/class/gpio/gpio157/direction", "w")) == NULL ) {
exit(1);
} else {
fprintf(fp, "low");
fclose(fp);
}
fp = fopen("/sys/class/gpio/unexport", "w");
fprintf(fp, "157");
fclose(fp);
printf("Closing and cleaning \n");
}
}
void main() {
FILE *fp;
printf("\n*************************************\n"
"* Welcome to PIN Blink program *\n"
"* ....blinking pin 22 on port GPIO *\n"
"* ....rate of 1 Hz............ *\n"
"**************************************\n");
if (signal(SIGINT, sig_handler) == SIG_ERR )
printf("\ncan't catch SIGINT\n");
fp = fopen("/sys/class/gpio/export", "w");
fprintf(fp, "157");
fclose(fp);
printf("...export file accessed, new pin now accessible\n");
while (1) {
if ((fp = fopen("/sys/class/gpio/gpio157/direction", "w")) == NULL ) {
printf("Error \n");
exit(1);
}
fprintf(fp, "high");
fclose(fp);
sleep(1);
if ((fp = fopen("/sys/class/gpio/gpio157/direction", "w")) == NULL ) {
printf("Error \n");
exit(1);
}
fprintf(fp, "low");
fclose(fp);
sleep(1);
}
}
答案 0 :(得分:1)
如果您希望能够从用户空间操作GPIO引脚,那么您必须构建一个内核驱动程序/模块来为您执行此操作。然后,您可以通过ioctl,proc或其他内核API将消息发送到驱动程序,以操作GPIO引脚。
本教程看起来像内核驱动程序示例。您无法使用这些标头构建常规用户空间程序。您需要构建一个示例“测试驱动程序”或执行我上面所述的操作。
在线有大量关于内核驱动程序的资源。这是你应该开始的。