CPIO初始化

2018-08-31  本文已影响0人  清亮2015

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); //实现灯没灯

上一篇下一篇

猜你喜欢

热点阅读