大学生
最后登录1970-1-1
在线时间 小时
注册时间2013-11-26
|
//带参宏,可以像内联函数一样使用#define LED1(a) if (a) \ GPIO_SetBits(GPIOC,GPIO_Pin_3);\
else \ GPIO_ResetBits(GPIOC,GPIO_Pin_3)
a=1就执行第一句GPIO_SetBits(GPIOC,GPIO_Pin_3);
a=0就执行GPIO_ResetBits(GPIOC,GPIO_Pin_3)是吗?
不太懂给详细的讲解下,谢谢 |
|