STM32 利用GPIOB点亮LED灯

文章目录

  • 1. bsp_led.h
  • 2.bsp_led.c
  • 3. main.c

1. bsp_led.h

#ifndef _BSP_LED_H
#define _BSP_LED_H

#include "stm32f10x.h"

#define LED_G_GPIO_PIN	GPIO_Pin_0  
#define LED_G_GPIO_PORT	GPIOB			
#define LED_G_GPIO_CLK	RCC_APB2Periph_GPIOB

#define ON 1
#define OFF 0

#define LED_G(a) if(a) GPIO_SetBits(LED_G_GPIO_PORT, LED_G_GPIO_PIN);else GPIO_ResetBits(LED_G_GPIO_PORT, LED_G_GPIO_PIN);

void LED_GPIO_CONFIG(void);
#endif /* _BSP_LED_H */

2.bsp_led.c

#include "bsp_led.h"

void LED_GPIO_CONFIG(void)
{
	//新建初始化结构体
	GPIO_InitTypeDef GPIO_InintStruct;
	
	//打开GPIOB->RCC端口的时钟
	RCC_APB2PeriphClockCmd(LED_G_GPIO_CLK, ENABLE); 
	//定义IO口引脚
	GPIO_InintStruct.GPIO_Pin = LED_G_GPIO_PIN;
	//配置IO口GPIOB->CRL为推挽输出模式
	GPIO_InintStruct.GPIO_Mode = GPIO_Mode_Out_PP;
	//配置IO口GPIOB->CRL为输出速度
	GPIO_InintStruct.GPIO_Speed = GPIO_Speed_50MHz; 
	
	
	//初始化
	GPIO_Init(LED_G_GPIO_PORT, &GPIO_InintStruct); 
}

3. main.c

#include "stm32f10x.h"
#include "bsp_led.h"

void delay(uint32_t count)
{
	for(; count!=0;count--);
	
}
int main(void)
{
	LED_GPIO_CONFIG();
	
	while(1)
	{
	LED_G(ON);
		delay(0xFFFFFF);
	LED_G(OFF);
		delay(0xFFFFFF);
	}
}

你可能感兴趣的:(STM32专栏)