STM32库函数开发&按键库函数开发源码篇

发布时间:2024-06-04  

LED流水灯


led.h



#ifndef __LED_H

#define __LED_H



#include "stm32f4xx.h"





void Led_Init(void);



void Led1_Init(void);

void Led2_Init(void);

void Led3_Init(void);

void Led4_Init(void);



#endif

typedef struct

{

  uint32_t GPIO_Pin;              /* 指定要配置的GPIO引脚 */



  GPIOMode_TypeDef GPIO_Mode;     /* 指定选定接点的操作模式。*/



  GPIOSpeed_TypeDef GPIO_Speed;   /* 指定选定接点的速度。*/



  GPIOOType_TypeDef GPIO_OType;   /* 指定选定接点的操作输出类型。*/



  GPIOPuPd_TypeDef GPIO_PuPd;     /* 指定选定接点的操作上拉/下拉。*/

}GPIO_InitTypeDef;

led.c


#include "led.h"





// init 4 pin

void Led_Init(void)

{

  GPIO_InitTypeDef  GPIO_InitStruct;


  //使能GPIOE组时钟

  RCC_AHB1PeriphClockCmd(RCC_AHB1Periph_GPIOE, ENABLE);  

  //使能GPIOF组时钟

  RCC_AHB1PeriphClockCmd(RCC_AHB1Periph_GPIOF, ENABLE);



  // GPIOF pin9 pin10

  GPIO_InitStruct.GPIO_Pin  = GPIO_Pin_9|GPIO_Pin_10;    //引脚9/10

  GPIO_InitStruct.GPIO_Mode  = GPIO_Mode_OUT;  //输出模式

  GPIO_InitStruct.GPIO_OType  = GPIO_OType_PP;  //推挽输出

  GPIO_InitStruct.GPIO_PuPd  = GPIO_PuPd_UP;    //上拉

  GPIO_InitStruct.GPIO_Speed  = GPIO_Speed_50MHz; //速度 

  GPIO_Init(GPIOF, &GPIO_InitStruct);


  // GPIOE pin9 pin10

  GPIO_InitStruct.GPIO_Pin  = GPIO_Pin_13|GPIO_Pin_14;    //引脚13/14

  GPIO_InitStruct.GPIO_Mode  = GPIO_Mode_OUT;  //输出模式

  GPIO_InitStruct.GPIO_OType  = GPIO_OType_PP;  //推挽输出

  GPIO_InitStruct.GPIO_PuPd  = GPIO_PuPd_UP;    //上拉

  GPIO_InitStruct.GPIO_Speed  = GPIO_Speed_50MHz; //速度 

  GPIO_Init(GPIOE, &GPIO_InitStruct);



}





/*********************************

引脚说明:



LED0 -- PF9



**********************************/



void Led1_Init(void)

{

  GPIO_InitTypeDef  GPIO_InitStruct;



  //使能GPIOF组时钟

  RCC_AHB1PeriphClockCmd(RCC_AHB1Periph_GPIOF, ENABLE);  




  GPIO_InitStruct.GPIO_Pin  = GPIO_Pin_9;    //引脚9

  GPIO_InitStruct.GPIO_Mode  = GPIO_Mode_OUT;  //输出模式

  GPIO_InitStruct.GPIO_OType  = GPIO_OType_PP;  //推挽输出

  GPIO_InitStruct.GPIO_PuPd  = GPIO_PuPd_UP;    //上拉

  GPIO_InitStruct.GPIO_Speed  = GPIO_Speed_50MHz; //速度 

  GPIO_Init(GPIOF, &GPIO_InitStruct);


}

/*********************************

引脚说明:



LED2 -- PF10



**********************************/

void Led2_Init(void)

{

  GPIO_InitTypeDef  GPIO_InitStruct;




  //使能GPIOF组时钟

  RCC_AHB1PeriphClockCmd(RCC_AHB1Periph_GPIOF, ENABLE);  




  GPIO_InitStruct.GPIO_Pin  = GPIO_Pin_10;    //引脚10

  GPIO_InitStruct.GPIO_Mode  = GPIO_Mode_OUT;  //输出模式

  GPIO_InitStruct.GPIO_OType  = GPIO_OType_PP;  //推挽输出

  GPIO_InitStruct.GPIO_PuPd  = GPIO_PuPd_UP;    //上拉

  GPIO_InitStruct.GPIO_Speed  = GPIO_Speed_50MHz; //速度 




  GPIO_Init(GPIOF, &GPIO_InitStruct);

  

}

/*********************************

引脚说明:



LED3 -- PE13



**********************************/

void Led3_Init(void)

{

  GPIO_InitTypeDef  GPIO_InitStruct;



  //使能GPIOE组时钟

  RCC_AHB1PeriphClockCmd(RCC_AHB1Periph_GPIOE, ENABLE);  




  GPIO_InitStruct.GPIO_Pin  = GPIO_Pin_13;    //引脚13

  GPIO_InitStruct.GPIO_Mode  = GPIO_Mode_OUT;  //输出模式

  GPIO_InitStruct.GPIO_OType  = GPIO_OType_PP;  //推挽输出

  GPIO_InitStruct.GPIO_PuPd  = GPIO_PuPd_UP;    //上拉

  GPIO_InitStruct.GPIO_Speed  = GPIO_Speed_50MHz; //速度 

  GPIO_Init(GPIOE, &GPIO_InitStruct);

}

/*********************************

引脚说明:



LED4 -- PE14



**********************************/

void Led4_Init(void)

{

  GPIO_InitTypeDef  GPIO_InitStruct;



  //使能GPIOE组时钟

  RCC_AHB1PeriphClockCmd(RCC_AHB1Periph_GPIOE, ENABLE);  




  GPIO_InitStruct.GPIO_Pin  = GPIO_Pin_14;    //引脚14

  GPIO_InitStruct.GPIO_Mode  = GPIO_Mode_OUT;  //输出模式

  GPIO_InitStruct.GPIO_OType  = GPIO_OType_PP;  //推挽输出

  GPIO_InitStruct.GPIO_PuPd  = GPIO_PuPd_UP;    //上拉

  GPIO_InitStruct.GPIO_Speed  = GPIO_Speed_50MHz; //速度 

  GPIO_Init(GPIOE, &GPIO_InitStruct);

}

main.c


#include "stm32f4xx.h"

#include "led.h"





// 延时

void delay(int n)

{

  int i,j;


  for(i=0; i< n; i++)

    for(j=0; j< 30000; j++);



}







int main(void)

{

//  Led1_Init();

//  Led2_Init();

//  Led3_Init();

//  Led4_Init();



  Led_Init();


  while(1)

  {



    //输出0  LED0灯亮

    GPIO_ResetBits(GPIOF, GPIO_Pin_9);

    delay(1000);


    //输出1  LED0灯灭

    GPIO_SetBits(GPIOF, GPIO_Pin_9);



    //输出0  LED1灯亮

    GPIO_ResetBits(GPIOF, GPIO_Pin_10);

    delay(1000);


    //输出1  LED1灯灭

    GPIO_SetBits(GPIOF, GPIO_Pin_10);



    //输出0  LED2灯亮

    GPIO_ResetBits(GPIOE, GPIO_Pin_13);

    delay(1000);


    //输出1  LED2灯灭

    GPIO_SetBits(GPIOE, GPIO_Pin_13);



    //输出0  LED3灯亮

    GPIO_ResetBits(GPIOE, GPIO_Pin_14);

    delay(1000);


    //输出1  LED3灯灭

    GPIO_SetBits(GPIOE, GPIO_Pin_14);



  }

  return 0;

}

按键控制灯


#ifndef __LED_H

#define __LED_H



#include "stm32f4xx.h"







#define LED0_ON    GPIO_ResetBits(GPIOF, GPIO_Pin_9)

#define LED0_OFF  GPIO_SetBits(GPIOF, GPIO_Pin_9)





void Led_Init(void);



#endif



/* ================================================ */



#include "led.h"





/*********************************

引脚说明:



LED0 -- PF9

LED1 -- PF10

LED2 -- PE13

LED3 -- PE14



**********************************/

void Led_Init(void)

{

  GPIO_InitTypeDef  GPIO_InitStruct;


  //使能GPIOE组时钟

  RCC_AHB1PeriphClockCmd(RCC_AHB1Periph_GPIOE, ENABLE);    

  //使能GPIOF组时钟

  RCC_AHB1PeriphClockCmd(RCC_AHB1Periph_GPIOF, ENABLE);  




  GPIO_InitStruct.GPIO_Pin  = GPIO_Pin_9|GPIO_Pin_10;    //引脚9 10

  GPIO_InitStruct.GPIO_Mode  = GPIO_Mode_OUT;  //输出模式

  GPIO_InitStruct.GPIO_OType  = GPIO_OType_PP;  //推挽输出

  GPIO_InitStruct.GPIO_PuPd  = GPIO_PuPd_UP;    //上拉

  GPIO_InitStruct.GPIO_Speed  = GPIO_Speed_50MHz; //速度 

  GPIO_Init(GPIOF, &GPIO_InitStruct);


  GPIO_InitStruct.GPIO_Pin  = GPIO_Pin_13|GPIO_Pin_14;    //引脚13 14

  GPIO_InitStruct.GPIO_Mode  = GPIO_Mode_OUT;  //输出模式

  GPIO_InitStruct.GPIO_OType  = GPIO_OType_PP;  //推挽输出

  GPIO_InitStruct.GPIO_PuPd  = GPIO_PuPd_UP;    //上拉

  GPIO_InitStruct.GPIO_Speed  = GPIO_Speed_50MHz; //速度 

  GPIO_Init(GPIOE, &GPIO_InitStruct);  


  GPIO_SetBits(GPIOF, GPIO_Pin_9);

  GPIO_SetBits(GPIOF, GPIO_Pin_10);

  GPIO_SetBits(GPIOE, GPIO_Pin_13);

  GPIO_SetBits(GPIOE, GPIO_Pin_14);



}

#ifndef __KEY_H

#define __KEY_H



#include "stm32f4xx.h"







void Key_Init(void);



#endif



#include "key.h"





/*********************************

引脚说明:



KEY0--PA0



**********************************/

void Key_Init(void)

{

  GPIO_InitTypeDef  GPIO_InitStruct;



  //使能GPIOA组时钟

  RCC_AHB1PeriphClockCmd(RCC_AHB1Periph_GPIOA, ENABLE);



  GPIO_InitStruct.GPIO_Pin  = GPIO_Pin_0;    //引脚0

  GPIO_InitStruct.GPIO_Mode  = GPIO_Mode_IN;    //输入模式

  GPIO_InitStruct.GPIO_PuPd  = GPIO_PuPd_UP;    //上拉

  GPIO_Init(GPIOA, &GPIO_InitStruct);  



}

main.c


#include "stm32f4xx.h"

#include "led.h"

#include "key.h"





void delay(int n)

{

  int i,j;


  for(i=0; i< n; i++)

    for(j=0; j< 30000; j++);



}







int main(void)

{


  unsigned char count = 0;


  Key_Init();

  Led_Init();


  while(1)

  {

    /*

    //应用场景1

    //判断按键是否按下 按下为低电平

    if(GPIO_ReadInputDataBit(GPIOA, GPIO_Pin_0) == Bit_RESET)

    {

      //大约延时20ms 起到消抖作用

      delay(20);

      //判断按键是否按下 按下为低电平

      if(GPIO_ReadInputDataBit(GPIOA, GPIO_Pin_0) == Bit_RESET)

      {

        //灯状态变更

        GPIO_ToggleBits(GPIOF, GPIO_Pin_9);

        count++;

      }    


    }  

    //根据按键时长实现不同的功能 

    if(count == 50)

    {

      GPIO_ResetBits(GPIOE, GPIO_Pin_14);

    }

    */


    //应用场景2  比如输入银行密码

    //判断按键是否按下 按下为低电平

    if(GPIO_ReadInputDataBit(GPIOA, GPIO_Pin_0) == Bit_RESET)

    {

      //大约延时15ms 起到消抖作用

      delay(15);

      //判断按键是否按下 按下为低电平

      if(GPIO_ReadInputDataBit(GPIOA, GPIO_Pin_0) == Bit_RESET)

      {

        //等待按键松开

        while(GPIO_ReadInputDataBit(GPIOA, GPIO_Pin_0) == Bit_RESET);

        //灯状态变更

        GPIO_ToggleBits(GPIOF, GPIO_Pin_9);


      }    


    }  




  }

  return 0;

}

按键中断


#ifndef __EXTI_H

#define __EXTI_H



#include "stm32f4xx.h"





void Exti_PA0_Init(void);



#endif



#include "exti.h"



/*********************************

引脚说明:



KEY0--PA0(选择下降沿触发)





**********************************/



void Exti_PA0_Init(void)

{

  GPIO_InitTypeDef  GPIO_InitStruct;

  EXTI_InitTypeDef  EXTI_InitStruct;

  NVIC_InitTypeDef  NVIC_InitStruct;


  //使能SYSCFG及GPIOA时钟:

  RCC_APB2PeriphClockCmd(RCC_APB2Periph_SYSCFG, ENABLE);

  //使能GPIOA组时钟

  RCC_AHB1PeriphClockCmd(RCC_AHB1Periph_GPIOA, ENABLE);




  //初始化IO口为输入。

  GPIO_InitStruct.GPIO_Pin  = GPIO_Pin_0;    //引脚0

文章来源于:电子工程世界    原文链接
本站所有转载文章系出于传递更多信息之目的,且明确注明来源,不希望被转载的媒体或个人可与我们联系,我们将立即进行删除处理。

我们与500+贴片厂合作,完美满足客户的定制需求。为品牌提供定制化的推广方案、专属产品特色页,多渠道推广,SEM/SEO精准营销以及与公众号的联合推广...详细>>

利用葫芦芯平台的卓越技术服务和新产品推广能力,原厂代理能轻松打入消费物联网(IOT)、信息与通信(ICT)、汽车及新能源汽车、工业自动化及工业物联网、装备及功率电子...详细>>

充分利用其强大的电子元器件采购流量,创新性地为这些物料提供了一个全新的窗口。我们的高效数字营销技术,不仅可以助你轻松识别与连接到需求方,更能够极大地提高“闲置物料”的处理能力,通过葫芦芯平台...详细>>

我们的目标很明确:构建一个全方位的半导体产业生态系统。成为一家全球领先的半导体互联网生态公司。目前,我们已成功打造了智能汽车、智能家居、大健康医疗、机器人和材料等五大生态领域。更为重要的是...详细>>

我们深知加工与定制类服务商的价值和重要性,因此,我们倾力为您提供最顶尖的营销资源。在我们的平台上,您可以直接接触到100万的研发工程师和采购工程师,以及10万的活跃客户群体...详细>>

凭借我们强大的专业流量和尖端的互联网数字营销技术,我们承诺为原厂提供免费的产品资料推广服务。无论是最新的资讯、技术动态还是创新产品,都可以通过我们的平台迅速传达给目标客户...详细>>

我们不止于将线索转化为潜在客户。葫芦芯平台致力于形成业务闭环,从引流、宣传到最终销售,全程跟进,确保每一个potential lead都得到妥善处理,从而大幅提高转化率。不仅如此...详细>>