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

上一篇:OJ题:对称二叉树(C语言)


下一篇:超声波测距实验(基于STM32F407)