美文网首页
CPIO初始化

CPIO初始化

作者: 清亮2015 | 来源:发表于2018-08-31 20:42 被阅读0次

    STM32 点灯程序

    初始化GPIO:

    void led(void)
    {
      GPIO_InitTypeDef GPIO_InitStructure;
    
      //使能
        RCC_AHB1PeriphClockCmd(RCC_AHB1Periph_GPIOF, ENABLE);
      RCC_AHB1PeriphClockCmd(RCC_AHB1Periph_GPIOE, ENABLE);
        //led
        GPIO_InitStructure.GPIO_Pin = GPIO_Pin_9|GPIO_Pin_10; // 
        GPIO_InitStructure.GPIO_Mode = GPIO_Mode_OUT; // 输出模式
        GPIO_InitStructure.GPIO_OType = GPIO_OType_PP; // 推挽输出模式,增加输出电流
        GPIO_InitStructure.GPIO_Speed = GPIO_Speed_100MHz; // 引脚的的工作速度最高为100MHz,最低为2MHz,工作速度越高,功耗就越高
        GPIO_InitStructure.GPIO_PuPd = GPIO_PuPd_NOPULL; // 不需要上拉电阻
        GPIO_Init(GPIOF, &GPIO_InitStructure);//初始化端口F 
        GPIO_InitStructure.GPIO_Pin = GPIO_Pin_13|GPIO_Pin_14; // 
        GPIO_Init(GPIOE, &GPIO_InitStructure);//初始化端口F 
    
    }
    

    如果有#include "sys.h"头文件就

        PFout(9) = 0//实现灯亮
    

    如果没有#include "sys.h"头文件就

    GPIO_ResetBits(GPIOF, GPIO_Pin_9); //实现灯亮
    GPIO_SetBits(GPIOF, GPIO_Pin_9); //实现灯没灯
    
    

    相关文章

      网友评论

          本文标题:CPIO初始化

          本文链接:https://www.haomeiwen.com/subject/aomewftx.html