资源简介
STM32驱动蜂鸣器,实现播放歌曲功能,蜂鸣器数据接收端接GPIOC.5即可直接使用。
代码片段和文件信息
#include “stm32f10x.h“
#include “stm32lib.h“
/********************************************************************************************************
**函数信息 :void GPIOInit(void) // WAN.CG // 2010.12.8
**功能描述 :GPIO初始化函数,初始化实验用到的所有GPIO口
**输入参数 :无
**输出参数 :无
**调用提示 :RCC_APB2PeriphClockCmd();GPIO_Init()
********************************************************************************************************/
void GPIOInit(void)
{
GPIO_InitTypeDef GPIO_InitStructure;
RCC_APB2PeriphClockCmd(RCC_APB2Periph_GPIOB | RCC_APB2Periph_AFIO ENABLE); //开启GPIOB端口以及复用功能
/* //PB3配置为输出;LED
GPIO_InitStructure.GPIO_Pin = GPIO_Pin_3; //选择第端口3
GPIO_InitStructure.GPIO_Mode = GPIO_Mode_Out_PP; //开漏输出
GPIO_InitStructure.GPIO_Speed = GPIO_Speed_50MHz; //50M时钟速度
GPIO_Init(GPIOB &GPIO_InitStructure); //GPIO配置函数 */
GPIO_PinRemapConfig(GPIO_PartialRemap_TIM3 ENABLE); //部分映射,将TIM3_CH1映射到PB5
GPIO_InitStructure.GPIO_Pin = GPIO_Pin_5; //选择引脚5
GPIO_InitStructure.GPIO_Speed = GPIO_Speed_50MHz; //输出频率最大50MHz
GPIO_InitStructure.GPIO_Mode = GPIO_Mode_AF_PP; //复用推挽输出
GPIO_Init(GPIOB&GPIO_InitStructure);
}
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 3578 2018-10-12 16:30 STM32--music\STM32驱动蜂鸣器播放歌曲\debug\DebugInFlash\core_cm3.crf
文件 129 2018-10-12 16:30 STM32--music\STM32驱动蜂鸣器播放歌曲\debug\DebugInFlash\core_cm3.d
文件 10412 2018-10-12 16:30 STM32--music\STM32驱动蜂鸣器播放歌曲\debug\DebugInFlash\core_cm3.o
文件 19 2012-12-02 15:34 STM32--music\STM32驱动蜂鸣器播放歌曲\debug\DebugInFlash\ExtDll.iex
文件 337056 2018-10-12 16:30 STM32--music\STM32驱动蜂鸣器播放歌曲\debug\DebugInFlash\GPIO.axf
文件 345897 2018-10-12 16:30 STM32--music\STM32驱动蜂鸣器播放歌曲\debug\DebugInFlash\gpio.crf
文件 1895 2018-10-12 16:30 STM32--music\STM32驱动蜂鸣器播放歌曲\debug\DebugInFlash\gpio.d
文件 20616 2018-10-12 16:30 STM32--music\STM32驱动蜂鸣器播放歌曲\debug\DebugInFlash\GPIO.hex
文件 55177 2018-10-12 16:30 STM32--music\STM32驱动蜂鸣器播放歌曲\debug\DebugInFlash\GPIO.htm
文件 1425 2018-10-12 16:30 STM32--music\STM32驱动蜂鸣器播放歌曲\debug\DebugInFlash\GPIO.lnp
文件 377280 2018-10-12 16:30 STM32--music\STM32驱动蜂鸣器播放歌曲\debug\DebugInFlash\gpio.o
文件 3555 2018-10-12 16:35 STM32--music\STM32驱动蜂鸣器播放歌曲\debug\DebugInFlash\GPIO.plg
文件 479 2012-11-28 16:55 STM32--music\STM32驱动蜂鸣器播放歌曲\debug\DebugInFlash\GPIO.sct
文件 4115 2012-12-02 15:44 STM32--music\STM32驱动蜂鸣器播放歌曲\debug\DebugInFlash\GPIO.tra
文件 479 2012-10-21 12:55 STM32--music\STM32驱动蜂鸣器播放歌曲\debug\DebugInFlash\GPIO_sct.Bak
文件 347226 2018-10-12 16:30 STM32--music\STM32驱动蜂鸣器播放歌曲\debug\DebugInFlash\main.crf
文件 1984 2018-10-12 16:30 STM32--music\STM32驱动蜂鸣器播放歌曲\debug\DebugInFlash\main.d
文件 382840 2018-10-12 16:30 STM32--music\STM32驱动蜂鸣器播放歌曲\debug\DebugInFlash\main.o
文件 222247 2018-10-12 16:30 STM32--music\STM32驱动蜂鸣器播放歌曲\debug\DebugInFlash\misc.crf
文件 341 2018-10-12 16:30 STM32--music\STM32驱动蜂鸣器播放歌曲\debug\DebugInFlash\misc.d
文件 234612 2018-10-12 16:30 STM32--music\STM32驱动蜂鸣器播放歌曲\debug\DebugInFlash\misc.o
文件 53 2018-10-12 16:30 STM32--music\STM32驱动蜂鸣器播放歌曲\debug\DebugInFlash\os_cpu_a.d
文件 1776 2018-10-12 16:30 STM32--music\STM32驱动蜂鸣器播放歌曲\debug\DebugInFlash\os_cpu_a.o
文件 51 2018-10-12 16:30 STM32--music\STM32驱动蜂鸣器播放歌曲\debug\DebugInFlash\startup.d
文件 5908 2018-10-12 16:30 STM32--music\STM32驱动蜂鸣器播放歌曲\debug\DebugInFlash\startup.o
文件 245549 2018-10-12 16:30 STM32--music\STM32驱动蜂鸣器播放歌曲\debug\DebugInFlash\stm32f10x_adc.crf
文件 490 2018-10-12 16:30 STM32--music\STM32驱动蜂鸣器播放歌曲\debug\DebugInFlash\stm32f10x_adc.d
文件 265400 2018-10-12 16:30 STM32--music\STM32驱动蜂鸣器播放歌曲\debug\DebugInFlash\stm32f10x_adc.o
文件 232727 2018-10-12 16:30 STM32--music\STM32驱动蜂鸣器播放歌曲\debug\DebugInFlash\stm32f10x_bkp.crf
文件 490 2018-10-12 16:30 STM32--music\STM32驱动蜂鸣器播放歌曲\debug\DebugInFlash\stm32f10x_bkp.d
............此处省略159个文件信息
- 上一篇:机器学习那些事.pdf
- 下一篇:phdhe_3988422.zip
相关资源
- STM32F103 串口DMA+空闲中断接收(修复版
- STM32F103C8T6定时器TIM4双通道PWM输出
- STM32F103+Modbus通信源码
- STM32 LCD FFT音乐频普效果
- MAG3110电子罗盘代码基于STM32
- openpilot飞控程序
- stm32f103上移植fatfs文件系统
- STM32,MPU6050(硬件IIC)
- STM32双通道DMA数据
- STM32温湿度光照采集程序IIC
- STM32固件库使用手册中文版
- FPGA电子琴
- 基于stm32的示波器程序
- 基于tmc2660的步进电机S加减速曲线设计
- 思岚激光雷达数据读取
- 智能宠物喂食器 程序
- stm32f103c8t6最小系统版PWM程序
- stm32带引脚图.pdf
- stm32基本例程 PWM输出实验
- STM32控制舵机任意角度转动0--180度 M
- stm32f407+dm9161驱动程序
- STM32最简单的蜂鸣器程序
- stm32f103串口接收数据后发送数组的数
- STM32 数控电源原理图和程序
- 扭扭车平衡车原理图免费stm32 rct6
- hx711串口stm32例程
- stm32 f429 disco 示波器程序
- 基于STM32的ISD1700控制
- 正点原子stm32f407探索者LD3320语音识别
- stm32控制nfcPN532模块进行P2P点对点通信
评论
共有 条评论