把两个IO口一个设置为上拉输出,一个设置为下拉输出,怎么改啊

2019-07-20 22:09发布

        GPIO_InitStructure.GPIO_Pin = GPIO_Pin_6|GPIO_Pin_7;        
        GPIO_InitStructure.GPIO_Mode = GPIO_Mode_AF;      
        GPIO_InitStructure.GPIO_Speed = GPIO_Speed_100MHz;       
        GPIO_InitStructure.GPIO_OType = GPIO_OType_PP;     
        GPIO_InitStructure.GPIO_PuPd = GPIO_PuPd_UP;        
        GPIO_Init(GPIOA,&GPIO_InitStructure);            



这段代码怎么改啊?把7改为下拉!

友情提示: 此问题已得到解决,问题已经关闭,关闭后问题禁止继续编辑,回答。
2条回答
DayDayUp
2019-07-21 02:03

        GPIO_InitStructure.GPIO_Pin = GPIO_Pin_6;        
        GPIO_InitStructure.GPIO_Mode = GPIO_Mode_AF;      
        GPIO_InitStructure.GPIO_Speed = GPIO_Speed_100MHz;        
        GPIO_InitStructure.GPIO_OType = GPIO_OType_PP;     
        GPIO_InitStructure.GPIO_PuPd = GPIO_PuPd_UP;        
        GPIO_Init(GPIOA,&GPIO_InitStructure);   

        GPIO_InitStructure.GPIO_Pin = GPIO_Pin_7;        
        GPIO_InitStructure.GPIO_Mode = GPIO_Mode_AF;      
        GPIO_InitStructure.GPIO_Speed = GPIO_Speed_100MHz;        
        GPIO_InitStructure.GPIO_OType = GPIO_OType_PP;     
        GPIO_InitStructure.GPIO_PuPd = GPIO_PuPd_DOWN;        
        GPIO_Init(GPIOA,&GPIO_InitStructure);   

一周热门 更多>