其他分享
首页 > 其他分享> > STM32中各部分配置代码

STM32中各部分配置代码

作者:互联网

1.led.c的配置


#include "stm32f10x.h"
#include "led.h"

void Init_LED(void)
{
    GPIO_InitTypeDef GPIO_InitStruct;

  RCC_APB2PeriphClockCmd(RCC_APB2Periph_GPIOE, ENABLE);
  RCC_APB2PeriphClockCmd(RCC_APB2Periph_GPIOB, ENABLE);
  GPIO_InitStruct.GPIO_Pin=GPIO_Pin_5;
  GPIO_InitStruct.GPIO_Speed=GPIO_Speed_50MHz;
   GPIO_InitStruct.GPIO_Mode=GPIO_Mode_Out_PP;
    
    GPIO_Init(GPIOB,&GPIO_InitStruct);
    GPIO_Init(GPIOE,&GPIO_InitStruct);
    
    GPIO_SetBits(GPIOB,GPIO_Pin_5);
    GPIO_SetBits(GPIOE,GPIO_Pin_5);    
}
2.beep.c的配置


#include "stm32f10x.h"
#include "beep.h"

void Init_BEEP(void)
{
    GPIO_InitTypeDef GPIO_InitS;  
    RCC_APB2PeriphClockCmd(RCC_APB2Periph_GPIOB,ENABLE);
    GPIO_InitS.GPIO_Mode=GPIO_Mode_AF_PP;
    GPIO_Init

标签:代码,配置,STM32,Init,InitStruct,GPIO,include,void,RCC
来源: https://blog.csdn.net/qq_46467631/article/details/120422206