STM32做读卡程序,需要支持7816接口,USART1的TX 怎么设GPIO_Mode_AF_OD模式呢?
以前是这样完成的,在103上,但现在没有定义这个了,只GPIO_Mode_AF
/* Configure USART3 Tx (PB.10) as alternate func
tion open-drain */
GPIO_InitStructure.GPIO_Pin = GPIO_Pin_10;
GPIO_InitStructure.GPIO_Mode = GPIO_Mode_AF_OD;
GPIO_Init(GPIOB, &GPIO_InitStructure);
GPIO_InitStructure.GPIO_OType = GPIO_OType_OD;
GPIO_InitStructure.GPIO_PuPd = GPIO_PuPd_NOPULL;
等于 GPIO_Mode_AF_OD
一周热门 更多>