2021-10-22 16:24:01 索煒達(dá)電子 1254
項(xiàng)目編號(hào):E1689
文件大?。?92K
源碼說(shuō)明:帶中文注釋
開(kāi)發(fā)環(huán)境:C編譯器
簡(jiǎn)要概述:
搞了個(gè)IIS的麥克風(fēng),用32做個(gè)音頻采集,把數(shù)據(jù)發(fā)往電腦,處理后可保存為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