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.
是否可以使用#pragma将TRIS寄存器设置为 1/0 并将PORT寄存器设置为 ON/OFF? 我知道这个问题可能听起来过于简单,但是,我渴望得到确认。
#pragma
TRIS
PORT
该#pragma指令是 C 标准指定的方法,用于向编译器提供超出语言本身传达的信息的附加信息。 如果要设置/重置端口寄存器,则必须在程序运行时进行。就像是:
TRISA = 0x00;
所以简单的答案是:不,你不能