我用的是keil. 遇到到 PA.15 , PB.4 , PB.5 等无法设置输出状态. 在keil的调试状态就感觉无法正常设置.而引脚设置跟附近的一样,看起来没错. 但无法正常设置.其他的比如PB0~PB3等就没有问题. 初始化的语句:应该没有问题. /* Configure PB.0 --, PB.9 as Output push-pull */ GPIO_InitStructure.GPIO_Pin = GPIO_Pin_0 | GPIO_Pin_1 | GPIO_Pin_2 | GPIO_Pin_3 | GPIO_Pin_4 | GPIO_Pin_5 |GPIO_Pin_6 | GPIO_Pin_7 | GPIO_Pin_8 | GPIO_Pin_9 ; GPIO_InitStructure.GPIO_Speed = GPIO_Speed_10MHz; GPIO_InitStructure.GPIO_Mode = GPIO_Mode_Out_PP; GPIO_Init(GPIOB, &GPIO_InitStructure); |