|
- #include "stm32f10x.h"
- #include "Delay.h“
- int main()
- {
- RCC_APB2PeriphClockCmd(RCC_APB2Periph_GPIOB, ENABLE); //蜂鸣器
- GPIO_InitTypeDef GPIO_InitStructure;
- GPIO_InitStructure.GPIO_Mode = GPIO_Mode_Out_PP;
- GPIO_InitStructure.GPIO_Pin = GPIO_Pin_8;
- GPIO_InitStructure.GPIO_Speed = GPIO_Speed_50MHz;
- GPIO_Init(GPIOB, &GPIO_InitStructure); //蜂鸣器
- while(1)
- {
- GPIO_SetBits(GPIOB,GPIO_Pin_8);
- Delay_ms(500);
- GPIO_ResetBits(GPIOB,GPIO_Pin_8);
- Delay_ms(500);
- }
- }
复制代码
|
|