stm32库函数求大神?
时间:10-02
整理:3721RD
点击:
void RCC_PLLCmd(FunctionalState NewState)其中的FunctionalState NewState在库函数哪里定义的?一直没找到,求大神,小弟不胜感激,谢谢了
在 FunctionalState 上面点右键,选‘goto definition of 'FunctionalState'’。
我用的是keil 5.0.5.15,FunctionalState 在 startup_stm32f10x_hd.s 的521行定义:
typedef enum {DISABLE = 0, ENABLE = !DISABLE} FunctionalState;