项目场景:
今天往GD32的系统板里加入六个按键,在DEMO程序的基础上要做一些修改。在对时钟使能的时候,习惯的用STM32的方法。加|线隔开两个GPIO口,结果报出warning: #188-D: enumerated type mixed with another type的警告。强迫症尽量不要有警告……
rcu_periph_clock_enable(RCU_GPIOB|RCU_GPIOC);
解决方案:
解决方案也很简单,咱分开写两行就行了。意想不到吧!
rcu_periph_clock_enable(RCU_GPIOB);
rcu_periph_clock_enable(RCU_GPIOC);