Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我对机器人的 C 语言编程有疑问,我面临着如何在 keil c 中为嵌入式 c 编程定义 IC 89c51 的位点的困难
use sbit p1;用于指向第一个端口
use sbit p1;
在keil uVision中,如果你选择了AT89c51,在C文件中右击可以看到
插入“ #include <REGX51.h>”
#include <REGX51.h>
点击那个
将出现在 C 文件中,因为所有端口寄存器和各个引脚的地址都映射到变量,例如:端口 0 到 P0,P0.1 到 P0_1 等。然后您可以直接使用这些变量访问所有寄存器,包括端口寄存器和端口引脚