#define FT_WR_DIR(a) (P4DIR|=BIT6):(P4DIR&=~BIT6)#define FT_WR(a) (P4OUT|=BIT6):(P4OUT&=~BIT6)
来源:学生作业帮助网 编辑:六六作业网 时间:2024/11/06 08:21:07
#defineFT_WR_DIR(a)(P4DIR|=BIT6):(P4DIR&=~BIT6)#defineFT_WR(a)(P4OUT|=BIT6):(P4OUT&=~BIT6)#defineFT_
#define FT_WR_DIR(a) (P4DIR|=BIT6):(P4DIR&=~BIT6)#define FT_WR(a) (P4OUT|=BIT6):(P4OUT&=~BIT6)
#define FT_WR_DIR(a) (P4DIR|=BIT6):(P4DIR&=~BIT6)
#define FT_WR(a) (P4OUT|=BIT6):(P4OUT&=~BIT6)
#define FT_WR_DIR(a) (P4DIR|=BIT6):(P4DIR&=~BIT6)#define FT_WR(a) (P4OUT|=BIT6):(P4OUT&=~BIT6)
BIT6应该也是一个宏定义, #define BIT6 0x20
第一句:
根据a的值确定将P4DIR的bit6置1还是清0
第二句:
根据a的值确定将P4OUT的bit6置1还是清0
#define FT_WR_DIR(a) (P4DIR|=BIT6):(P4DIR&=~BIT6)#define FT_WR(a) (P4OUT|=BIT6):(P4OUT&=~BIT6)
#define F(a)
#define A B
#define LT(a,b) ((a)
#define
define what is a motel
how do you define a love poem?
define what is a student's association
disablity doesn't define a person
求表达式B/B的值?#define A 3+2 #define B A*A
#define A ((a *)b) 是什么意思uCon = GPIO->rGPIOMCON;#define GPIO ((volatile oGPIO_REGS *)GPIO_BASE)
写出下列程序段的输出结果.#define A 10 #define B (A
C语言中 #define N 30 #define IFADOB(A,B) ((A)&&(B,0))
#define a 8 与 #define b方格方格2 有什么不同?
A job doesn't define you.怎么翻译define,整个句子怎么理解呢?
C语言中:#define SUB(a) (a)-(a)
#define max(a,b) a>b?a:b中的?和:
# define A 3 # define B(a) (( A + 1 )*a ) M x = 3*( A + B( 7 ) ) ;# define A 3# define B(a) (( A + 1 )*a )Mx = 3*( A + B( 7 ) ) ;这个要怎么解答