学前班
最后登录1970-1-1
在线时间 小时
注册时间2015-10-26
|
楼主 |
发表于 2015-10-27 16:43:36
|
显示全部楼层
/* 带参宏,可以像内联函数一样使用 */
#define LED1(a) if (a) \
GPIO_SetBits(GPIOB,GPIO_Pin_0);\
else \
GPIO_ResetBits(GPIOB,GPIO_Pin_0)
#define LED2(a) if (a) \
GPIO_SetBits(GPIOF,GPIO_Pin_7);\
else \
GPIO_ResetBits(GPIOF,GPIO_Pin_7)
#define LED3(a) if (a) \
GPIO_SetBits(GPIOF,GPIO_Pin_8);\
else \
GPIO_ResetBits(GPIOF,GPIO_Pin_8)
使用库函数操作的,改了也不对啊。 |
|