为啥配置成推挽,又配置成上下拉模式,不是只能一种模式吗
, GPIO_InitTypeDef GPIO_InitStructure;这两个有啥区别
GPIO_PuPd_UP;//GPIO_PuPd_down
EXTI_InitTypeDef EXTI_InitStructure;
//M0
GPIO_InitStructure.GPIO_Pin = GPIO_Pin_0;
GPIO_InitStructure.GPIO_Mode = GPIO_Mode_OUT;
GPIO_InitStructure.GPIO_OType = GPIO_OType_PP;
GPIO_InitStructure.GPIO_PuPd = GPIO_PuPd_UP;//GPIO_PuPd_down
GPIO_InitStructure.GPIO_Speed = GPIO_Speed_2MHz;
GPIO_Init(GPIOB, &GPIO_InitStructure);
配置成推挽输出,再设置上下拉是没用的。所以你可以不设置
一周热门 更多>