程序的一部分写下#define Out0 RC0 // o S0 output
#define Out1 RC1 // o S1 output
#define Out2 RC2 // o S2 output
#define Out3 RC3 // o S3 output
#define Led RB4 // o LearnOut Led
#define Vlow RB5 // o low battery
这个然后在保存为头文件了
主程里面用到了OUT1、OUT2等,并且主程序开始也include了这个头文件,可是build之后报错,报错显示为:Error [192] C:\Users\chongren\Desktop\PIC16F628A\main.c; 180.1 undefined identifier "RC0"等,这个素怎么回事的呀? |