日本黄色一级经典视频|伊人久久精品视频|亚洲黄色色周成人视频九九九|av免费网址黄色小短片|黄色Av无码亚洲成年人|亚洲1区2区3区无码|真人黄片免费观看|无码一级小说欧美日免费三级|日韩中文字幕91在线看|精品久久久无码中文字幕边打电话

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

在實際的項目開發(fā)過程中,常常會遇到硬件電路的修改,然后修改的部分就需要修改驅(qū)動程序。想這樣需求該來該去是程序員們最煩悶的事情(重復(fù)勞動痛不欲生啊~)。為了避免或減少重復(fù)勞動,就需要在程序的架構(gòu)上下功夫。接下來以最常見的無源蜂鳴器驅(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,程序源碼

BUZZ.h文件

/**

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

* @file BUZZ.h

* @author XinLi

* @version v1.0

* @date 24-October-2017

* @brief Header file for BUZZ.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 __BUZZ_H

#define __BUZZ_H

#ifdef __cplusplus

extern "C" {

#endif

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

#include "stm32f4xx.h"

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

#define BUZZ_RCC_AHB1Periph_GPIO RCC_AHB1Periph_GPIOB

#define BUZZ_GPIO GPIOB

#define BUZZ_GPIO_Pin GPIO_Pin_8

#define BUZZ_GPIO_PinSource GPIO_PinSource8

#define BUZZ_GPIO_AF_TIM GPIO_AF_TIM4

#define BUZZ_RCC_APB1Periph_TIM RCC_APB1Periph_TIM4

#define BUZZ_TIM TIM4

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

#define BUZZ_TIM_Period (249) /*!< 250us timer interrupt. */

#define BUZZ_TIM_OCPolarity TIM_OCPolarity_High

#define BUZZ_TIM_OCInit TIM_OC3Init

#define BUZZ_TIM_OCPreloadConfig TIM_OC3PreloadConfig

#define BUZZ_TIM_SetCompare TIM_SetCompare3

#define BUZZ_TIM_IRQn TIM4_IRQn

#define BUZZ_TIM_IRQHandler TIM4_IRQHandler

#define BUZZ_TIM_IRQ_PreemptionPriority (0)

#define BUZZ_TIM_IRQ_SubPriority (0)

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

typedef enum

{

BUZZ_Off = 0,

BUZZ_Ring = 1,

BUZZ_Drip = 2,

BUZZ_Warning = 3,

BUZZ_Danger = 4

}BUZZ_Status;

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

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

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

void BUZZ_SetStatus(BUZZ_Status status);

BUZZ_Status BUZZ_GetStatus(void);

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

#ifdef __cplusplus

}

#endif

#endif /* __BUZZ_H */


BUZZ.c文件

/**

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

* @file BUZZ.c

* @author XinLi

* @version v1.0

* @date 24-October-2017

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

#include

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

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

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

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

static __IO BUZZ_Status buzzStatus = BUZZ_Off;

static __IO int buzzCount = 0;

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

static void BUZZ_PwmInit(void);

static void BUZZ_NvicInit(void);

static void BUZZ_Init(void);

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

/**

* @brief Buzz pwm initializes.

* @param None.

* @return None.

*/

static void BUZZ_PwmInit(void)

{

GPIO_InitTypeDef GPIO_InitStructure = {0};

TIM_TimeBaseInitTypeDef TIM_TimeBaseStructure = {0};

TIM_OCInitTypeDef TIM_OCInitStructure = {0};

RCC_AHB1PeriphClockCmd(BUZZ_RCC_AHB1Periph_GPIO, ENABLE);

RCC_APB1PeriphClockCmd(BUZZ_RCC_APB1Periph_TIM, ENABLE);

GPIO_InitStructure.GPIO_Pin = BUZZ_GPIO_Pin;

GPIO_InitStructure.GPIO_Mode = GPIO_Mode_AF;

GPIO_InitStructure.GPIO_Speed = GPIO_Speed_100MHz;

GPIO_InitStructure.GPIO_OType = GPIO_OType_PP;

GPIO_InitStructure.GPIO_PuPd = GPIO_PuPd_UP;

GPIO_Init(BUZZ_GPIO, &GPIO_InitStructure);

GPIO_PinAFConfig(BUZZ_GPIO, BUZZ_GPIO_PinSource, BUZZ_GPIO_AF_TIM);

TIM_TimeBaseStructure.TIM_Prescaler = BUZZ_TIM_Prescaler;

TIM_TimeBaseStructure.TIM_CounterMode = TIM_CounterMode_Up;

TIM_TimeBaseStructure.TIM_Period = BUZZ_TIM_Period;

TIM_TimeBaseStructure.TIM_ClockDivision = TIM_CKD_DIV1;

TIM_TimeBaseInit(BUZZ_TIM, &TIM_TimeBaseStructure);

TIM_OCInitStructure.TIM_OCMode = TIM_OCMode_PWM1;

TIM_OCInitStructure.TIM_OutputState = TIM_OutputState_Enable;

TIM_OCInitStructure.TIM_Pulse = 0;

TIM_OCInitStructure.TIM_OCPolarity = BUZZ_TIM_OCPolarity;

BUZZ_TIM_OCInit(BUZZ_TIM, &TIM_OCInitStructure);

BUZZ_TIM_OCPreloadConfig(BUZZ_TIM, TIM_OCPreload_Enable);

TIM_ARRPreloadConfig(BUZZ_TIM, ENABLE);

TIM_ITConfig(BUZZ_TIM, TIM_IT_Update, ENABLE);

TIM_Cmd(BUZZ_TIM, ENABLE);

}

/**

* @brief Buzz nvic initializes.

* @param None.

* @return None.

*/

static void BUZZ_NvicInit(void)

{

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