当前位置:首页 > 单片机 > 单片机
[导读] 在实际的项目开发过程中,常常会遇到硬件电路的修改,然后修改的部分就需要修改驱动程序。想这样需求该来该去是程序员们最烦闷的事情(重复劳动痛不欲生啊~)。为了避免或减少重复劳动,就需要在程序的

在实际的项目开发过程中,常常会遇到硬件电路的修改,然后修改的部分就需要修改驱动程序。想这样需求该来该去是程序员们最烦闷的事情(重复劳动痛不欲生啊~)。为了避免或减少重复劳动,就需要在程序的架构上下功夫。接下来以最常见的LED驱动程序为例,进行程序结构设计。


1,开发环境

1,固件库:STM32F4xx_DSP_StdPeriph_Lib_V1.8.0

2,编译器:ARMCC V5.06

3,IDE:Keil uVision5

4,操作系统:Windows 10 专业版


2,程序源码

LED.h文件

/**

******************************************************************************

* @file LED.h

* @author XinLi

* @version v1.0

* @date 24-October-2017

* @brief Header file for LED.c module.

******************************************************************************

* @attention

*

*

Copyright © 2017 XinLi

*

* This program is free software: you can redistribute it and/or modify

* it under the terms of the GNU General Public License as published by

* the Free Software Foundation, either version 3 of the License, or

* (at your option) any later version.

*

* This program is distributed in the hope that it will be useful,

* but WITHOUT ANY WARRANTY; without even the implied warranty of

* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the

* GNU General Public License for more details.

*

* You should have received a copy of the GNU General Public License

* along with this program. If not, see .

*

******************************************************************************

*/

#ifndef __LED_H

#define __LED_H

#ifdef __cplusplus

extern "C" {

#endif

/* Header includes -----------------------------------------------------------*/

#include "stm32f4xx.h"

/* Macro definitions ---------------------------------------------------------*/

#define LEDn (4)

#define LED1_RCC_AHB1Periph_GPIO RCC_AHB1Periph_GPIOC

#define LED1_GPIO GPIOC

#define LED1_GPIO_Pin GPIO_Pin_0

#define LED2_RCC_AHB1Periph_GPIO RCC_AHB1Periph_GPIOC

#define LED2_GPIO GPIOC

#define LED2_GPIO_Pin GPIO_Pin_1

#define LED3_RCC_AHB1Periph_GPIO RCC_AHB1Periph_GPIOB

#define LED3_GPIO GPIOB

#define LED3_GPIO_Pin GPIO_Pin_3

#define LED4_RCC_AHB1Periph_GPIO RCC_AHB1Periph_GPIOB

#define LED4_GPIO GPIOB

#define LED4_GPIO_Pin GPIO_Pin_4

/* Type definitions ----------------------------------------------------------*/

typedef enum

{

LED_Pin1 = 0,

LED_Pin2 = 1,

LED_Pin3 = 2,

LED_Pin4 = 3

}LED_Pin;

typedef enum

{

LED_Off = 0,

LED_On = 1

}LED_Status;

/* Variable declarations -----------------------------------------------------*/

/* Variable definitions ------------------------------------------------------*/

/* Function declarations -----------------------------------------------------*/

void LED_SetStatus(LED_Pin pin, LED_Status status);

LED_Status LED_GetStatus(LED_Pin pin);

/* Function definitions ------------------------------------------------------*/

#ifdef __cplusplus

}

#endif

#endif /* __LED_H */


LED.c文件

/**

******************************************************************************

* @file LED.c

* @author XinLi

* @version v1.0

* @date 24-October-2017

* @brief LED module driver.

******************************************************************************

* @attention

*

*

Copyright © 2017 XinLi

*

* This program is free software: you can redistribute it and/or modify

* it under the terms of the GNU General Public License as published by

* the Free Software Foundation, either version 3 of the License, or

* (at your option) any later version.

*

* This program is distributed in the hope that it will be useful,

* but WITHOUT ANY WARRANTY; without even the implied warranty of

* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the

* GNU General Public License for more details.

*

* You should have received a copy of the GNU General Public License

* along with this program. If not, see .

*

******************************************************************************

*/

/* Header includes -----------------------------------------------------------*/

#include "LED.h"

#include

/* Macro definitions ---------------------------------------------------------*/

/* Type definitions ----------------------------------------------------------*/

/* Variable declarations -----------------------------------------------------*/

/* Variable definitions ------------------------------------------------------*/

static GPIO_TypeDef *LED_GPIO[LEDn] = {LED1_GPIO, LED2_GPIO, LED3_GPIO, LED4_GPIO};

static uint16_t LED_GPIO_Pin[LEDn] = {LED1_GPIO_Pin, LED2_GPIO_Pin, LED3_GPIO_Pin, LED4_GPIO_Pin};

static uint32_t LED_RCC_AHB1Periph_GPIO[LEDn] = {LED1_RCC_AHB1Periph_GPIO, LED2_RCC_AHB1Periph_GPIO, LED3_RCC_AHB1Periph_GPIO, LED4_RCC_AHB1Periph_GPIO};

static __IO LED_Status ledStatus[LEDn] = {LED_Off, LED_Off, LED_Off, LED_Off};

/* Function declarations -----------------------------------------------------*/

static void LED_Init(void);

/* Function definitions ------------------------------------------------------*/

/**

* @brief Led initializes.

* @param None.

* @return None.

*/

static void LED_Init(void)

{

static bool init_flag = false;

if(init_flag == false)

{

init_flag = true;

for(int i = 0; i < LEDn; i++)

{

GPIO_InitTypeDef GPIO_InitStructure = {0};

RCC_AHB1PeriphClockCmd(LED_RCC_AHB1Periph_GPIO[i], ENABLE);

GPIO_InitStructure.GPIO_Pin = LED_GPIO_Pin[i];

GPIO_InitStructure.GPIO_Mode = GPIO_Mode_OUT;

GPIO_InitStructure.GPIO_Speed = GPIO_Speed_100MHz;

GPIO_InitStructure.GPIO_OType = GPIO_OType_PP;

GPIO_InitStructure.GPIO_PuPd = GPIO_PuPd_UP;

GPIO_Init(LED_GPIO[i], &GPIO_InitStructure);

GPIO_WriteBit(LED_GPIO[i], LED_GPIO_Pin[i], (BitAction)LED_Off);

}

}

}

/**

* @brief Set led status.

* @param [in] pin: That led.

* @param [in] status: Led status.

* @return None.

*/

void LED_SetStatus(LED_Pin pin, LED_Status status)

{

if(status != ledStatus[pin])

{

ledStatus[pin] = status;

LED_Init();

GPIO_WriteBit(LED_GPIO[pin], LED_GPIO_Pin[pin], (BitAction)status);

}

}

/**

* @brief Get led status.

* @param [in] pin: That led.

* @return Led status.

*/

LED_Status LED_GetStatus(LED_Pin pin)

{

return ledStatus[pin];

}


main.c文件

/**

******************************************************************************

* @file main.c

* @author XinLi

* @version v1.0

* @date 24-October-2017

* @brief Main program body.

***************************

本站声明: 本文章由作者或相关机构授权发布,目的在于传递更多信息,并不代表本站赞同其观点,本站亦不保证或承诺内容真实性等。需要转载请联系该专栏作者,如若文章内容侵犯您的权益,请及时联系本站删除。
换一批
延伸阅读

为增进大家对LED显示屏的认识,本文将对节能LED显示屏的设计予以介绍。

关键字: LED 指数 显示屏

为增进大家对LED显示屏的认识,本文将对LED显示屏的部件组成、LED显示屏的选型技巧予以介绍。

关键字: LED 指数 显示屏

LED显示屏的身影。为增进大家对LED显示屏的认识,本文将对LED灯珠对LED显示屏的影响予以介绍。

关键字: LED 指数 显示屏

LED显示屏将是下述内容的主要介绍对象,通过这篇文章,小编希望大家可以对它的相关情况以及信息有所认识和了解,详细内容如下。

关键字: LED 显示屏

今天,小编将在这篇文章中为大家带来led显示屏的有关报道,通过阅读这篇文章,大家可以对它具备清晰的认识,主要内容如下。

关键字: LED 显示屏 LED显示屏

LED(Light Emitting Diode)与LCD(Liquid Crystal Display)是当今显示技术领域的两大重要分支,各自凭借独特的优势在消费电子、广告传媒、工业控制、家用电器等多个领域占据着主导地...

关键字: LED LCD

作为温度依赖性低、广角发射且光线均匀的光源,有助于汽车驾驶辅助技术提升

关键字: VCSEL LED 红外光源

爱德万测试集团 (公司总部:东京都千代田区、代表董事:Douglas Lefever、以下简称为“爱德万测试”) 与东丽工程株式会社 (总公司:东京都中央区、代表董事总经理:岩出卓、以下简称为“东丽工程”) 此番宣布,签...

关键字: LED 显示屏

为增进大家对LED路灯的认识,本文将对LED路灯、LED路灯的选购要点、LED路灯使用成本予以介绍。

关键字: LED 指数 路灯

为增进大家对LED路灯的认识,本文将对LED路灯的两点设计要求予以介绍。

关键字: LED 指数 路灯
关闭
关闭