#include<avr/io.h> #include<avr/delay.h> #include SET_1(a,b) a|(1<<b) //置1 #include CLE_0(a,b) a&~(1<<b) //清零
我在程序开始定义了“#include SET_1(a,b) a|(1<<b)”和“#include CLE_0(a,b) a&~(1<<b)”这两件语句,但stuio4编译不了,出现“gcc plug-in: Error: Object file not found on expected location E。。。。”请指教
|