关于F407引脚复用设置的一个小问题

2019-07-20 12:41发布

        //设置复用功能
        GPIO_PinAFConfig(GPIOA , GPIO_PinSource9 , GPIO_AF_USART1);
        GPIO_PinAFConfig(GPIOA , GPIO_PinSource10 , GPIO_AF_USART1);
       
        //初始化GPIO,模式设为复用模式
        GPIO_InitStructure.GPIO_Mode = GPIO_Mode_AF;
        GPIO_InitStructure.GPIO_OType = GPIO_OType_PP;
        GPIO_InitStructure.GPIO_Pin = GPIO_Pin_9 | GPIO_Pin_10;
        GPIO_InitStructure.GPIO_PuPd = GPIO_PuPd_UP;
        GPIO_InitStructure.GPIO_Speed = GPIO_Speed_50MHz;
        GPIO_Init(GPIOA , &GPIO_InitStructure);

友情提示: 此问题已得到解决,问题已经关闭,关闭后问题禁止继续编辑,回答。
该问题目前已经被作者或者管理员关闭, 无法添加新回复
2条回答
anronsen
1楼-- · 2019-07-20 14:05
 精彩回答 2  元偷偷看……
卑以自牧
2楼-- · 2019-07-20 14:17
手滑发出去了,我想问的是引脚复用的时候为啥不能用或运算同时设置两个引脚,GPIO_PinAFConfig(GPIOA , GPIO_PinSource10 | GPIO_PinSource9 , GPIO_AF_USART1);

一周热门 更多>