学前班
最后登录1970-1-1
在线时间 小时
注册时间2017-3-12
|
- #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(GPIOC,GPIO_Pin_4);\
- else \
- GPIO_ResetBits(GPIOC,GPIO_Pin_4)
- #define LED3(a) if (a) \
- GPIO_SetBits(GPIOC,GPIO_Pin_3);\
- else \
- GPIO_ResetBits(GPIOC,GPIO_Pin_3)
复制代码 这个代码里面有对GPIO的分组 B和C 我尝试将所有的 代码都分在B组发现 流水灯 就没有流水的 效果 只有一个灯在亮 有没有大神 可以帮我 解决一下
|
|