色婷婷AⅤ一区二区三区|亚洲精品第一国产综合亚AV|久久精品官方网视频|日本28视频香蕉

          新聞中心

          STM32F051R8T6的GPIO配置

          作者: 時間:2016-11-10 來源:網(wǎng)絡(luò) 收藏
          GPIO輸入模式

          void GPIO_Configuration(void)
          {
          GPIO_InitTypeDef GPIO_InitStructure;

          本文引用地址:http://cafeforensic.com/article/201611/317512.htm

          RCC_AHBPeriphClockCmd(RCC_AHBPeriph_GPIOC, ENABLE);

          GPIO_InitStructure.GPIO_Pin = GPIO_Pin_14;
          GPIO_InitStructure.GPIO_Mode = GPIO_Mode_IN;
          GPIO_InitStructure.GPIO_PuPd = GPIO_PuPd_DOWN;;
          GPIO_InitStructure.GPIO_Speed = GPIO_Speed_50MHz;
          GPIO_Init(GPIOC, &GPIO_InitStructure);
          }

          GPIO輸出模式

          void GPIO_Configuration(void)
          {
          GPIO_InitTypeDef GPIO_InitStructure;

          RCC_AHBPeriphClockCmd(RCC_AHBPeriph_GPIOC, ENABLE);


          /************************* LED *************************/
          GPIO_InitStructure.GPIO_Pin = GPIO_Pin_2;
          GPIO_InitStructure.GPIO_Mode = GPIO_Mode_OUT;
          GPIO_InitStructure.GPIO_OType = GPIO_OType_PP;
          GPIO_InitStructure.GPIO_PuPd = GPIO_PuPd_NOPULL;
          GPIO_InitStructure.GPIO_Speed = GPIO_Speed_50MHz;
          GPIO_Init(GPIOD, &GPIO_InitStructure);
          GPIO_WriteBit(GPIOD, GPIO_Pin_2, Bit_RESET);
          }



          關(guān)鍵詞: STM32F051R8T6GPIO配

          評論


          技術(shù)專區(qū)

          關(guān)閉