MPLAB IDE 7.0,MCC编译器程序编译有问题!!
我用MPLAB IDE 7.0,MCC编译器开发PIC18F6585的单片机程序编译有问题!!我用MPLAB IDE 7.0,MCC编译器开发PIC18F6585的单片机程序编译有问题!!
程序中加入中断函数void interrupt aa(void) ,这样定义中断函数是否正确?
编译出错提示为
Make: The target "D:\PIC_test\c18_test\test1.o" is out of date.
Executing: "C:\MCC18\bin\mcc18.exe" -p=18F6585 "test1.c" -fo="test1.o" /i"C:\MCC18\h" -Ou- -Ot- -Ob- -Op- -Or- -Od- -Opa-
D:\PIC_test\c18_test\test1.c:19:Error: syntax error
Halting build on first failure as requested.
BUILD FAILED: Fri Jul 07 13:18:00 2006
到底是什么地方出了问题呀? 写中断函数必须要PRAGMA伪指令
#pragma interrupt aa
void aa(void)
{
}
页:
[1]