老师我的是探索者板子,驱动蜂鸣器,可是程序烧进去后板子没有反应是怎么回事?
#include "stm32f4xx.h"
#include "usart.h"
#include "delay.h"
void BEEP_Init(void);
int main(void)
{
delay_init(168);
void BEEP_Init(void);
while(1)
{
GPIO_SetBits(GPIOF,GPIO_Pin_8);
delay_ms(500);
GPIO_ResetBits(GPIOF,GPIO_Pin_8);
delay_ms(500);
}
}
void BEEP_Init(void)
{
RCC_AHB1PeriphClockCmd(RCC_AHB1Periph_GPIOF,ENABLE);
GPIO_InitTypeDef GPIO_InitBEEP;
GPIO_InitBEEP.GPIO_Mode=GPIO_Mode_OUT;
GPIO_InitBEEP.GPIO_OType=GPIO_OType_PP;
GPIO_InitBEEP.GPIO_Pin=GPIO_Pin_8;
GPIO_InitBEEP.GPIO_PuPd=GPIO_PuPd_DOWN;
GPIO_InitBEEP.GPIO_Speed=GPIO_Speed_100MHz;
GPIO_Init(GPIOF,&GPIO_InitBEEP);
GPIO_ResetBits(GPIOF,GPIO_Pin_8);
}
友情提示: 此问题已得到解决,问题已经关闭,关闭后问题禁止继续编辑,回答。
一周热门 更多>