stm32f030k6t6串口1配置

2019-07-14 15:26发布

STM32f030k6t6 串口1配置
PB6 PB7配置成串口1   怎么都不成


       RCC_AHBPeriphClockCmd(RCC_AHBPeriph_GPIOB, ENABLE);   
        RCC_APB2PeriphResetCmd(RCC_APB2Periph_USART1, ENABLE);
        


       GPIO_InitStructure.GPIO_Pin = GPIO_Pin_6 | GPIO_Pin_7;
        GPIO_InitStructure.GPIO_Mode = GPIO_Mode_AF;
        GPIO_InitStructure.GPIO_Speed = GPIO_Speed_50MHz;
        GPIO_InitStructure.GPIO_OType = GPIO_OType_PP;
        GPIO_InitStructure.GPIO_PuPd = GPIO_PuPd_UP;
        //GPIO_InitStructure.GPIO_PuPd = GPIO_PuPd_NOPULL;
        GPIO_Init(GPIOB, &GPIO_InitStructure);
        
        
        GPIO_PinAFConfig(GPIOB, GPIO_PinSource6, GPIO_AF_0);  
        GPIO_PinAFConfig(GPIOB, GPIO_PinSource7, GPIO_AF_0);  
友情提示: 此问题已得到解决,问题已经关闭,关闭后问题禁止继续编辑,回答。