本帖最后由 282751386 于 2018-6-25 21:54 编辑
STM32F103VCT6 配置双向IO口
GPIO_InitTypeDef GPIO_InitStructure;
RCC_APB2PeriphClockCmd(RCC_APB2Periph_GPIOD, ENABLE);
GPIO_InitStructure.GPIO_Mode = GPIO_Mode_Out_OD; 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_Init(GPIOD, &GPIO_InitStructure);
这个PD0-PD7配置成双向了,同时这8个脚接了上拉电阻,可以当双向的了,
但是PD8-PD15那8个脚没有接上拉电阻,输出不正常,求解???????
|