STM32F4XX点亮LED灯-库函数版

作业:实现 LED 流水灯效果

main.c

#include "stm32f4xx.h"
#include "usart.h"
#include "delay.h"
#include "led.h"

int main(void)
{
	delay_init(168);
	LED_Init();
	
	while(1){
		GPIO_ResetBits(GPIOF,GPIO_Pin_9);	//LED9亮
		GPIO_SetBits(GPIOF,GPIO_Pin_10);		//LED10亮
		  
		delay_ms(5000);
		
		GPIO_SetBits(GPIOF,GPIO_Pin_9);
		GPIO_ResetBits(GPIOF,GPIO_Pin_10);
		delay_ms(5000);
	}
}

led.c

#include "stm32f4xx.h"
#include "led.h"

void LED_Init(void) {
	GPIO_InitTypeDef GPIO_InitStructure;
	RCC_AHB1PeriphClockCmd(RCC_AHB1Periph_GPIOF,ENABLE);
	
	GPIO_InitStructure.GPIO_Pin=GPIO_Pin_9;
	GPIO_InitStructure.GPIO_Mode=GPIO_Mode_OUT;
	GPIO_InitStructure.GPIO_OType=GPIO_OType_PP;
	GPIO_InitStructure.GPIO_Speed=GPIO_Speed_100MHz;
	GPIO_InitStructure.GPIO_PuPd=GPIO_PuPd_UP;
	GPIO_Init(GPIOF,&GPIO_InitStructure);
	
	GPIO_InitStructure.GPIO_Pin=GPIO_Pin_10;
	GPIO_InitStructure.GPIO_Mode=GPIO_Mode_OUT;
	GPIO_InitStructure.GPIO_OType=GPIO_OType_PP;
	GPIO_InitStructure.GPIO_Speed=GPIO_Speed_50MHz;
	GPIO_InitStructure.GPIO_PuPd=GPIO_PuPd_UP;
	GPIO_Init(GPIOF,&GPIO_InitStructure);
	
	GPIO_SetBits(GPIOF,GPIO_Pin_9|GPIO_Pin_10);
	GPIO_ResetBits(GPIOF,GPIO_Pin_9|GPIO_Pin_10);
	
}

led.h

#ifndef __LED_H		//在stm32f4xx.h中有,则不执行,无,执行

#define __LED_H
#include "sys.h"

//led端口定义
#define LED0 PFout(9) //
#define LED1 PFout(10) //

void LED_Init(void);

#endif	//判断是否要执行led.h

2020-1-1

你可能感兴趣的:(STM32F4开发学习)