引用: 引用 3 楼 anchorite27 的回复:
在main.c中添加extern volatile unsigned char AA;
作一下声明即可:)
引用: 引用 5 楼 sunxinyu 的回复:
建议每个.c文件对应一个.H文件。针对你的这个问题,可以写一个display.h头文件。里面写上
#ifndef? DISPLAY_H
#define? DISPLAY_H
extern volatile unsigned char AA;
#endif
然后在你的main.c里面
#include "display.h"
这样组织文件结构清晰,使用方便。
引用: 引用 3 楼 anchorite27 的回复:
在main.c中添加extern volatile unsigned char AA;
作一下声明即可:)
引用: 引用 11 楼 hallowwar 的回复:
#ifndef? DISPLAY_H
#define? DISPLAY_H
这个东西不明白,见过很多次,(display.h 等于 DISPLAY_H)