摘要:
GPIO 输入上拉,按键按下,pin接地,触发中断Key_Config 1 void Key_Config(void) 2 { 3 GPIO_InitTypeDef GPIO_InitStructure; 4 5 RCC_APB2PeriphClockCmd(RCC_APB2Periph_AFIO, ENABLE); 6 7 /* Configure KEY1 Button PC4*/ 8 RCC_APB2PeriphClockCmd(RCC_APB2Periph_GPIOC, ENABLE); 9 10 GPIO_InitStructure.GPIO_Mode = G... 阅读全文
摘要:
Usart1_Configvoid Usart1_Config(void){ GPIO_InitTypeDef GPIO_InitStructure; USART_InitTypeDef USART_InitStructure; //使能 PA AFIO总线 串口1 RCC_APB2PeriphClockCmd(RCC_APB2Periph_GPIOA| RCC_APB2Periph_AFIO| RCC_APB2Periph_USART1,ENABLE); ... 阅读全文
摘要:
Led_Configvoid Led_Config(void){ GPIO_InitTypeDef GPIO_InitStructure; /* Enable GPIOB, GPIOC and AFIO clock */ RCC_APB2PeriphClockCmd(RCC_APB2Periph_GPIOD | RCC_APB2Periph_AFIO , ENABLE); //RCC_APB2Periph_AFIO /* LEDs pins configuration */ GPIO_InitStructure.GPIO_Pin = GPIO_LED_ALL; G... 阅读全文