女人被狂躁到高潮视频免费无遮挡,内射人妻骚骚骚,免费人成小说在线观看网站,九九影院午夜理论片少妇,免费av永久免费网址

當(dāng)前位置:首頁 > 單片機 > 單片機
[導(dǎo)讀] 在實際的項目開發(fā)過程中,常常會遇到硬件電路的修改,然后修改的部分就需要修改驅(qū)動程序。想這樣需求該來該去是程序員們最煩悶的事情(重復(fù)勞動痛不欲生啊~)。為了避免或減少重復(fù)勞動,就需要在程序的

在實際的項目開發(fā)過程中,常常會遇到硬件電路的修改,然后修改的部分就需要修改驅(qū)動程序。想這樣需求該來該去是程序員們最煩悶的事情(重復(fù)勞動痛不欲生啊~)。為了避免或減少重復(fù)勞動,就需要在程序的架構(gòu)上下功夫。接下來以最常見的KEY驅(qū)動程序為例,進(jìn)行程序結(jié)構(gòu)設(shè)計。


1,開發(fā)環(huán)境

1,固件庫:STM32F4xx_DSP_StdPeriph_Lib_V1.8.0

2,編譯器:ARMCC V5.06

3,IDE:Keil uVision5

4,操作系統(tǒng):Windows 10 專業(yè)版


2,程序源碼

KEY.h文件

/**

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

* @file KEY.h

* @author XinLi

* @version v1.0

* @date 24-October-2017

* @brief Header file for KEY.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 __KEY_H

#define __KEY_H

#ifdef __cplusplus

extern "C" {

#endif

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

#include "stm32f4xx.h"

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

#define KEYn (3)

#define KEY1_RCC_AHB1Periph_GPIO RCC_AHB1Periph_GPIOC

#define KEY1_GPIO GPIOC

#define KEY1_GPIO_Pin GPIO_Pin_2

#define KEY2_RCC_AHB1Periph_GPIO RCC_AHB1Periph_GPIOC

#define KEY2_GPIO GPIOC

#define KEY2_GPIO_Pin GPIO_Pin_3

#define KEY3_RCC_AHB1Periph_GPIO RCC_AHB1Periph_GPIOC

#define KEY3_GPIO GPIOC

#define KEY3_GPIO_Pin GPIO_Pin_4

#define KEY_RCC_APB1Periph_TIM RCC_APB1Periph_TIM2

#define KEY_TIM TIM2

#define KEY_TIM_Prescaler (83) /*!< Clock divided to 1MHz. */

#define KEY_TIM_Period (4999) /*!< 5ms timer interrupt. */

#define KEY_TIM_IRQn TIM2_IRQn

#define KEY_TIM_IRQHandler TIM2_IRQHandler

#define KEY_TIM_IRQ_PreemptionPriority (0)

#define KEY_TIM_IRQ_SubPriority (0)

#define KEY_PRESS_STATUS Bit_SET

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

typedef enum

{

KEY_Pin1 = 0,

KEY_Pin2 = 1,

KEY_Pin3 = 2

}KEY_Pin;

typedef enum

{

KEY_NoPress = 0,

KEY_ShortPress = 1,

KEY_LongPress = 2

}KEY_Status;

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

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

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

void KEY_Init(void);

void KEY_DeInit(void);

KEY_Status KEY_GetStatus(KEY_Pin pin);

void KEY_SetShortPressCallback(KEY_Pin pin, void (*fun)(void));

void KEY_SetLongPressCallback(KEY_Pin pin, void (*fun)(void));

void KEY_ClearShortPressCallback(KEY_Pin pin);

void KEY_ClearLongPressCallback(KEY_Pin pin);

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

#ifdef __cplusplus

}

#endif

#endif /* __KEY_H */


KEY.c文件

/**

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

* @file KEY.c

* @author XinLi

* @version v1.0

* @date 24-October-2017

* @brief KEY 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 "KEY.h"

#include

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

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

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

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

static GPIO_TypeDef *KEY_GPIO[KEYn] = {KEY1_GPIO, KEY2_GPIO, KEY3_GPIO};

static uint16_t KEY_GPIO_Pin[KEYn] = {KEY1_GPIO_Pin, KEY2_GPIO_Pin, KEY3_GPIO_Pin};

static uint32_t KEY_RCC_AHB1Periph_GPIO[KEYn] = {KEY1_RCC_AHB1Periph_GPIO, KEY2_RCC_AHB1Periph_GPIO, KEY3_RCC_AHB1Periph_GPIO};

static __IO int keyInputHighCount[KEYn] = {0};

static __IO int keyInputLowCount[KEYn] = {0};

static __IO KEY_Status keyStatus[KEYn] = {KEY_NoPress, KEY_NoPress, KEY_NoPress};

static __IO KEY_Status keyGetStatus[KEYn] = {KEY_NoPress, KEY_NoPress, KEY_NoPress};

static __IO void (*keyShortPressCallback[KEYn])(void) = {NULL};

static __IO void (*keyLongPressCallback[KEYn])(void) = {NULL};

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

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

/**

* @brief Key initializes.

* @param None.

* @return None.

*/

void KEY_Init(void)

{

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

{

GPIO_InitTypeDef GPIO_InitStructure = {0};

RCC_AHB1PeriphClockCmd(KEY_RCC_AHB1Periph_GPIO[i], ENABLE);

GPIO_InitStructure.GPIO_Pin = KEY_GPIO_Pin[i];

GPIO_InitStructure.GPIO_Mode = GPIO_Mode_IN;

GPIO_InitStructure.GPIO_OType = GPIO_OType_PP;

GPIO_Init(KEY_GPIO[i], &GPIO_InitStructure);

keyInputHighCount[i]

本站聲明: 本文章由作者或相關(guān)機構(gòu)授權(quán)發(fā)布,目的在于傳遞更多信息,并不代表本站贊同其觀點,本站亦不保證或承諾內(nèi)容真實性等。需要轉(zhuǎn)載請聯(lián)系該專欄作者,如若文章內(nèi)容侵犯您的權(quán)益,請及時聯(lián)系本站刪除。
換一批
延伸閱讀

LED驅(qū)動電源的輸入包括高壓工頻交流(即市電)、低壓直流、高壓直流、低壓高頻交流(如電子變壓器的輸出)等。

關(guān)鍵字: 驅(qū)動電源

在工業(yè)自動化蓬勃發(fā)展的當(dāng)下,工業(yè)電機作為核心動力設(shè)備,其驅(qū)動電源的性能直接關(guān)系到整個系統(tǒng)的穩(wěn)定性和可靠性。其中,反電動勢抑制與過流保護是驅(qū)動電源設(shè)計中至關(guān)重要的兩個環(huán)節(jié),集成化方案的設(shè)計成為提升電機驅(qū)動性能的關(guān)鍵。

關(guān)鍵字: 工業(yè)電機 驅(qū)動電源

LED 驅(qū)動電源作為 LED 照明系統(tǒng)的 “心臟”,其穩(wěn)定性直接決定了整個照明設(shè)備的使用壽命。然而,在實際應(yīng)用中,LED 驅(qū)動電源易損壞的問題卻十分常見,不僅增加了維護成本,還影響了用戶體驗。要解決這一問題,需從設(shè)計、生...

關(guān)鍵字: 驅(qū)動電源 照明系統(tǒng) 散熱

根據(jù)LED驅(qū)動電源的公式,電感內(nèi)電流波動大小和電感值成反比,輸出紋波和輸出電容值成反比。所以加大電感值和輸出電容值可以減小紋波。

關(guān)鍵字: LED 設(shè)計 驅(qū)動電源

電動汽車(EV)作為新能源汽車的重要代表,正逐漸成為全球汽車產(chǎn)業(yè)的重要發(fā)展方向。電動汽車的核心技術(shù)之一是電機驅(qū)動控制系統(tǒng),而絕緣柵雙極型晶體管(IGBT)作為電機驅(qū)動系統(tǒng)中的關(guān)鍵元件,其性能直接影響到電動汽車的動力性能和...

關(guān)鍵字: 電動汽車 新能源 驅(qū)動電源

在現(xiàn)代城市建設(shè)中,街道及停車場照明作為基礎(chǔ)設(shè)施的重要組成部分,其質(zhì)量和效率直接關(guān)系到城市的公共安全、居民生活質(zhì)量和能源利用效率。隨著科技的進(jìn)步,高亮度白光發(fā)光二極管(LED)因其獨特的優(yōu)勢逐漸取代傳統(tǒng)光源,成為大功率區(qū)域...

關(guān)鍵字: 發(fā)光二極管 驅(qū)動電源 LED

LED通用照明設(shè)計工程師會遇到許多挑戰(zhàn),如功率密度、功率因數(shù)校正(PFC)、空間受限和可靠性等。

關(guān)鍵字: LED 驅(qū)動電源 功率因數(shù)校正

在LED照明技術(shù)日益普及的今天,LED驅(qū)動電源的電磁干擾(EMI)問題成為了一個不可忽視的挑戰(zhàn)。電磁干擾不僅會影響LED燈具的正常工作,還可能對周圍電子設(shè)備造成不利影響,甚至引發(fā)系統(tǒng)故障。因此,采取有效的硬件措施來解決L...

關(guān)鍵字: LED照明技術(shù) 電磁干擾 驅(qū)動電源

開關(guān)電源具有效率高的特性,而且開關(guān)電源的變壓器體積比串聯(lián)穩(wěn)壓型電源的要小得多,電源電路比較整潔,整機重量也有所下降,所以,現(xiàn)在的LED驅(qū)動電源

關(guān)鍵字: LED 驅(qū)動電源 開關(guān)電源

LED驅(qū)動電源是把電源供應(yīng)轉(zhuǎn)換為特定的電壓電流以驅(qū)動LED發(fā)光的電壓轉(zhuǎn)換器,通常情況下:LED驅(qū)動電源的輸入包括高壓工頻交流(即市電)、低壓直流、高壓直流、低壓高頻交流(如電子變壓器的輸出)等。

關(guān)鍵字: LED 隧道燈 驅(qū)動電源
關(guān)閉