【E1689】STM32单片机实现IIS音频采集(串口助手接收)

2021-10-22 16:24:01      索炜达电子      1255     

项目编号:E1689

文件大小:392K

源码说明:带中文注释

开发环境:C编译器

简要概述:

搞了个IIS的麦克风,用32做个音频采集,把数据发往电脑,处理后可保存为wav格式,具体处理方式可查看wav格式的头文件。

目录│文件列表:

 └ IISchuankou

    │ EventRecorderStub.scvd

    │ Template.uvguix.l

    │ Template.uvguix.wyq

    │ Template.uvoptx

    │ Template.uvprojx

    │ wav.c

    │ wav.h

    │ waverecorder.c

    ├ ASM

    │  │ cortexm3_macro.s

    │  │ startup_stm32f10x_cl.s

    │  │ startup_stm32f10x_hd.s

    │  │ startup_stm32f10x_ld.s

    │  │ startup_stm32f10x_ld_vl.s

    │  │ startup_stm32f10x_md.s

    │  │ startup_stm32f10x_md_vl.s

    │  │ startup_stm32f10x_xl.s

    │  └ stm32f10x_startup.s

    ├ DebugConfig

    │  │ LY-STM32_STM32F103C8_1.0.0.dbgconf

    │  │ LY-STM32_STM32F103VE_1.0.0.dbgconf

    │  │ Template_STM32F103C8_1.0.0.dbgconf

    │  └ Template_STM32F103ZE_1.0.0.dbgconf

    ├ Lib

    │  │ libPDMFilter_CM3_Keil.lib

    │  ├ inc

    │  │  │ misc.h

    │  │  │ stm32f10x_adc.h

    │  │  │ stm32f10x_bkp.h

    │  │  │ stm32f10x_can.h

    │  │  │ stm32f10x_cec.h

    │  │  │ stm32f10x_conf.h

    │  │  │ stm32f10x_crc.h

    │  │  │ stm32f10x_dac.h

    │  │  │ stm32f10x_dbgmcu.h

    │  │  │ stm32f10x_dma.h

    │  │  │ stm32f10x_exti.h

    │  │  │ stm32f10x_flash.h

    │  │  │ stm32f10x_fsmc.h

    │  │  │ stm32f10x_gpio.h

    │  │  │ stm32f10x_i2c.h

    │  │  │ stm32f10x_iwdg.h

    │  │  │ stm32f10x_pwr.h

    │  │  │ stm32f10x_rcc.h

    │  │  │ stm32f10x_rtc.h

    │  │  │ stm32f10x_sdio.h

    │  │  │ stm32f10x_spi.h

    │  │  │ stm32f10x_tim.h

    │  │  │ stm32f10x_usart.h

    │  │  └ stm32f10x_wwdg.h

    │  └ SRC

    │     │ misc.c

    │     │ stm32f10x_adc.c

    │     │ stm32f10x_bkp.c

    │     │ stm32f10x_can.c

    │     │ stm32f10x_cec.c

    │     │ stm32f10x_crc.c

    │     │ stm32f10x_dac.c

    │     │ stm32f10x_dbgmcu.c

    │     │ stm32f10x_dma.c

    │     │ stm32f10x_exti.c

    │     │ stm32f10x_flash.c

    │     │ stm32f10x_fsmc.c

    │     │ stm32f10x_gpio.c

    │     │ stm32f10x_i2c.c

    │     │ stm32f10x_iwdg.c

    │     │ stm32f10x_pwr.c

    │     │ stm32f10x_rcc.c

    │     │ stm32f10x_rtc.c

    │     │ stm32f10x_sdio.c

    │     │ stm32f10x_spi.c

    │     │ stm32f10x_tim.c

    │     │ stm32f10x_usart.c

    │     │ stm32f10x_wwdg.c

    │     └ system_stm32f10x.c

    ├ LIST

    │  └ startup_stm32f10x_hd.s

    ├ OBJ

    │  │ 1.hex

    │  │ 12.hex

    │  │ 120.hex

    │  │ 123.hex

    │  │ 1234.hex

    │  └ LY-STM32.hex

    ├ System

    │  │ core_cm3.c

    │  │ core_cm3.h

    │  │ stm32f10x.h

    │  │ system_stm32f10x.c

    │  └ system_stm32f10x.h

    └ USR

       │ main.c

       │ pbdata.c

       │ pbdata.h

       │ PDM_Filter.h

       │ stm32f10x_dma.c

       │ stm32f10x_it.c

       │ stm32f10x_it.h

       │ stm32f10x_usart.c

       │ sys.c

       │ sys.h

       │ usart.c

       └ usart.h

TAGIIS
  • 9 次
  • 1 分