H
haha4000
Unregistered / Unconfirmed
GUEST, unregistred user!
本人在LINUX下想用中断来接收串口数据但碰到了问题,资料说通过:request_irq()来设置中断,但是GCC却编译出错,举一个小例子:
file:1.c
#include <linux/kernel.h>
#include <linux/sched.h>
#include <linux/interrupt.h>
void * comm()
{
}
main()
{
request_irq(9,comm,SA_INTERRUPT,"aaa",NULL);
}
编译时:
gcc -o 1.exe 1.c
出现大量头文件的错误,请各位高手指导,
我的邮箱是:hello111.student@sina.com
谢谢!!
file:1.c
#include <linux/kernel.h>
#include <linux/sched.h>
#include <linux/interrupt.h>
void * comm()
{
}
main()
{
request_irq(9,comm,SA_INTERRUPT,"aaa",NULL);
}
编译时:
gcc -o 1.exe 1.c
出现大量头文件的错误,请各位高手指导,
我的邮箱是:hello111.student@sina.com
谢谢!!