在好例子网,分享、交流、成长!
您当前所在位置:首页C/C++ 开发实例Android手机应用开发 → 基于stm32的全双工对讲机

基于stm32的全双工对讲机

Android手机应用开发

下载此实例
  • 开发语言:C/C++
  • 实例大小:8.00M
  • 下载次数:31
  • 浏览次数:583
  • 发布时间:2022-04-29
  • 实例类别:Android手机应用开发
  • 发 布 人:Arya liu
  • 文件格式:.zip
  • 所需积分:2
 相关标签: STM32 STM3 对讲机 stm 32

实例介绍

【实例简介】基于stm32的全双工对讲机

【实例截图】

from clipboard

【核心代码】

.
├── 例程
│   ├── STM32F103RE_SPEEX_ADDA_FC211AG_自编自解
│   │   └── STM32F103RE_SPEEX_ADDA_FC211AG
│   │       ├── Project
│   │       │   ├── Debug
│   │       │   │   ├── Exe
│   │       │   │   │   ├── STM32_SPEEX_FC211.out
│   │       │   │   │   └── STM32_SPEEX_FC211.sim
│   │       │   │   ├── List
│   │       │   │   └── Obj
│   │       │   │       ├── BSP.o
│   │       │   │       ├── STM32_SPEEX_FC211.pbd
│   │       │   │       ├── Voice_Dect.o
│   │       │   │       ├── bits.o
│   │       │   │       ├── buffer.o
│   │       │   │       ├── cb_search.o
│   │       │   │       ├── core_cm3.o
│   │       │   │       ├── exc_10_16_table.o
│   │       │   │       ├── exc_10_32_table.o
│   │       │   │       ├── exc_20_32_table.o
│   │       │   │       ├── exc_5_256_table.o
│   │       │   │       ├── exc_5_64_table.o
│   │       │   │       ├── exc_8_128_table.o
│   │       │   │       ├── fc211_ag.o
│   │       │   │       ├── fftwrap.o
│   │       │   │       ├── filterbank.o
│   │       │   │       ├── filters.o
│   │       │   │       ├── filters_cortexM3.o
│   │       │   │       ├── gain_table.o
│   │       │   │       ├── gain_table_lbr.o
│   │       │   │       ├── high_lsp_tables.o
│   │       │   │       ├── kiss_fft.o
│   │       │   │       ├── kiss_fftr.o
│   │       │   │       ├── lpc.o
│   │       │   │       ├── lsp.o
│   │       │   │       ├── lsp_tables_nb.o
│   │       │   │       ├── ltp.o
│   │       │   │       ├── ltp_cortexM3.o
│   │       │   │       ├── main.o
│   │       │   │       ├── mdf.o
│   │       │   │       ├── misc.o
│   │       │   │       ├── modes.o
│   │       │   │       ├── nb_celp.o
│   │       │   │       ├── preprocess.o
│   │       │   │       ├── quant_lsp.o
│   │       │   │       ├── speex.o
│   │       │   │       ├── speex_callbacks.o
│   │       │   │       ├── speex_header.o
│   │       │   │       ├── startup_stm32f10x_hd.o
│   │       │   │       ├── stm32f10x_adc.o
│   │       │   │       ├── stm32f10x_dac.o
│   │       │   │       ├── stm32f10x_flash.o
│   │       │   │       ├── stm32f10x_gpio.o
│   │       │   │       ├── stm32f10x_it.o
│   │       │   │       ├── stm32f10x_rcc.o
│   │       │   │       ├── stm32f10x_tim.o
│   │       │   │       ├── stm32f10x_usart.o
│   │       │   │       ├── system_stm32f10x.o
│   │       │   │       ├── uartdriver.o
│   │       │   │       ├── vocoder.o
│   │       │   │       ├── vq.o
│   │       │   │       ├── vq_cortexm3.o
│   │       │   │       └── window.o
│   │       │   ├── STM32F10x_FLASH.icf
│   │       │   ├── STM32_SPEEX_ADDA.eww
│   │       │   ├── STM32_SPEEX_FC211.dep
│   │       │   ├── STM32_SPEEX_FC211.ewd
│   │       │   ├── STM32_SPEEX_FC211.ewp
│   │       │   └── settings
│   │       │       ├── STM32_SPEEX_ADDA.wsdt
│   │       │       ├── STM32_SPEEX_FC211.cspy.bat
│   │       │       ├── STM32_SPEEX_FC211.dbgdt
│   │       │       ├── STM32_SPEEX_FC211.dni
│   │       │       └── STM32_SPEEX_FC211_Debug.jlink
│   │       └── Source
│   │           ├── APP
│   │           │   ├── inc
│   │           │   │   ├── BitBand.h
│   │           │   │   ├── Voice_Dect.h
│   │           │   │   ├── main.h
│   │           │   │   ├── stm32_includes.h
│   │           │   │   ├── stm32f10x_conf.h
│   │           │   │   ├── stm32f10x_it.h
│   │           │   │   ├── vocoder.h
│   │           │   │   └── voice.h
│   │           │   ├── readme.txt
│   │           │   └── src
│   │           │       ├── Voice_Dect.c
│   │           │       ├── main.c
│   │           │       ├── stm32f10x_it.c
│   │           │       └── vocoder.c
│   │           ├── BSP
│   │           │   ├── inc
│   │           │   │   └── BSP.h
│   │           │   └── src
│   │           │       └── BSP.c
│   │           ├── Driver
│   │           │   ├── inc
│   │           │   │   ├── fc211_ag.h
│   │           │   │   ├── lcd.h
│   │           │   │   └── uartdriver.h
│   │           │   └── src
│   │           │       ├── fc211_ag.c
│   │           │       ├── lcd.c
│   │           │       └── uartdriver.c
│   │           ├── Libraries
│   │           │   ├── CMSIS
│   │           │   │   ├── CM3
│   │           │   │   │   ├── CoreSupport
│   │           │   │   │   │   ├── core_cm3.c
│   │           │   │   │   │   └── core_cm3.h
│   │           │   │   │   └── DeviceSupport
│   │           │   │   │       └── ST
│   │           │   │   │           └── STM32F10x
│   │           │   │   │               ├── Release_Notes.html
│   │           │   │   │               ├── startup
│   │           │   │   │               │   ├── TrueSTUDIO
│   │           │   │   │               │   │   ├── startup_stm32f10x_cl.s
│   │           │   │   │               │   │   ├── startup_stm32f10x_hd.s
│   │           │   │   │               │   │   ├── startup_stm32f10x_hd_vl.s
│   │           │   │   │               │   │   ├── startup_stm32f10x_ld.s
│   │           │   │   │               │   │   ├── startup_stm32f10x_ld_vl.s
│   │           │   │   │               │   │   ├── startup_stm32f10x_md.s
│   │           │   │   │               │   │   ├── startup_stm32f10x_md_vl.s
│   │           │   │   │               │   │   └── startup_stm32f10x_xl.s
│   │           │   │   │               │   ├── arm
│   │           │   │   │               │   │   ├── startup_stm32f10x_cl.s
│   │           │   │   │               │   │   ├── startup_stm32f10x_hd.s
│   │           │   │   │               │   │   ├── startup_stm32f10x_hd_vl.s
│   │           │   │   │               │   │   ├── startup_stm32f10x_ld.s
│   │           │   │   │               │   │   ├── startup_stm32f10x_ld_vl.s
│   │           │   │   │               │   │   ├── startup_stm32f10x_md.s
│   │           │   │   │               │   │   ├── startup_stm32f10x_md_vl.s
│   │           │   │   │               │   │   └── startup_stm32f10x_xl.s
│   │           │   │   │               │   ├── gcc_ride7
│   │           │   │   │               │   │   ├── startup_stm32f10x_cl.s
│   │           │   │   │               │   │   ├── startup_stm32f10x_hd.s
│   │           │   │   │               │   │   ├── startup_stm32f10x_hd_vl.s
│   │           │   │   │               │   │   ├── startup_stm32f10x_ld.s
│   │           │   │   │               │   │   ├── startup_stm32f10x_ld_vl.s
│   │           │   │   │               │   │   ├── startup_stm32f10x_md.s
│   │           │   │   │               │   │   ├── startup_stm32f10x_md_vl.s
│   │           │   │   │               │   │   └── startup_stm32f10x_xl.s
│   │           │   │   │               │   └── iar
│   │           │   │   │               │       ├── startup_stm32f10x_cl.s
│   │           │   │   │               │       ├── startup_stm32f10x_hd.s
│   │           │   │   │               │       ├── startup_stm32f10x_hd_vl.s
│   │           │   │   │               │       ├── startup_stm32f10x_ld.s
│   │           │   │   │               │       ├── startup_stm32f10x_ld_vl.s
│   │           │   │   │               │       ├── startup_stm32f10x_md.s
│   │           │   │   │               │       ├── startup_stm32f10x_md_vl.s
│   │           │   │   │               │       └── startup_stm32f10x_xl.s
│   │           │   │   │               ├── stm32f10x.h
│   │           │   │   │               ├── system_stm32f10x.c
│   │           │   │   │               └── system_stm32f10x.h
│   │           │   │   ├── CMSIS debug support.htm
│   │           │   │   ├── CMSIS_changes.htm
│   │           │   │   ├── Documentation
│   │           │   │   │   └── CMSIS_Core.htm
│   │           │   │   └── License.doc
│   │           │   ├── STM32F10x_Speex_Lib
│   │           │   │   ├── STM32
│   │           │   │   │   ├── config.h
│   │           │   │   │   ├── config.h.bak
│   │           │   │   │   ├── include
│   │           │   │   │   │   └── speex
│   │           │   │   │   │       └── speex_config_types.h
│   │           │   │   │   └── libspeex
│   │           │   │   │       ├── arm
│   │           │   │   │       │   ├── filters_cortexM3.h
│   │           │   │   │       │   ├── ltp_cortexM3.h
│   │           │   │   │       │   └── vq_cortexM3.h
│   │           │   │   │       ├── cb_search.c
│   │           │   │   │       ├── cb_search_cortexM3.h
│   │           │   │   │       ├── filters.c
│   │           │   │   │       ├── gcc
│   │           │   │   │       │   ├── filters_cortexM3.h
│   │           │   │   │       │   ├── filters_cortexM3.s
│   │           │   │   │       │   ├── ltp_cortexM3.h
│   │           │   │   │       │   ├── ltp_cortexM3.s
│   │           │   │   │       │   └── vq_cortexm3.s
│   │           │   │   │       ├── iar
│   │           │   │   │       │   ├── filters_cortexM3.h
│   │           │   │   │       │   ├── filters_cortexM3.s
│   │           │   │   │       │   ├── ltp_cortexM3.h
│   │           │   │   │       │   ├── ltp_cortexM3.s
│   │           │   │   │       │   └── vq_cortexm3.s
│   │           │   │   │       ├── ltp.c
│   │           │   │   │       ├── modes.c
│   │           │   │   │       ├── nb_celp.c
│   │           │   │   │       ├── quant_lsp.c
│   │           │   │   │       └── vq.c
│   │           │   │   ├── include
│   │           │   │   │   └── speex
│   │           │   │   │       ├── speex.h
│   │           │   │   │       ├── speex_bits.h
│   │           │   │   │       ├── speex_buffer.h
│   │           │   │   │       ├── speex_callbacks.h
│   │           │   │   │       ├── speex_echo.h
│   │           │   │   │       ├── speex_header.h
│   │           │   │   │       ├── speex_jitter.h
│   │           │   │   │       ├── speex_preprocess.h
│   │           │   │   │       ├── speex_resampler.h
│   │           │   │   │       ├── speex_stereo.h
│   │           │   │   │       └── speex_types.h
│   │           │   │   └── libspeex
│   │           │   │       ├── _kiss_fft_guts.h
│   │           │   │       ├── arch.h
│   │           │   │       ├── bits.c
│   │           │   │       ├── buffer.c
│   │           │   │       ├── cb_search.h
│   │           │   │       ├── cb_search_arm4.h
│   │           │   │       ├── cb_search_bfin.h
│   │           │   │       ├── cb_search_sse.h
│   │           │   │       ├── exc_10_16_table.c
│   │           │   │       ├── exc_10_32_table.c
│   │           │   │       ├── exc_20_32_table.c
│   │           │   │       ├── exc_5_256_table.c
│   │           │   │       ├── exc_5_64_table.c
│   │           │   │       ├── exc_8_128_table.c
│   │           │   │       ├── fftwrap.c
│   │           │   │       ├── fftwrap.h
│   │           │   │       ├── filterbank.c
│   │           │   │       ├── filterbank.h
│   │           │   │       ├── filters.h
│   │           │   │       ├── filters_arm4.h
│   │           │   │       ├── filters_bfin.h
│   │           │   │       ├── filters_sse.h
│   │           │   │       ├── fixed_arm4.h
│   │           │   │       ├── fixed_arm5e.h
│   │           │   │       ├── fixed_bfin.h
│   │           │   │       ├── fixed_debug.h
│   │           │   │       ├── fixed_generic.h
│   │           │   │       ├── gain_table.c
│   │           │   │       ├── gain_table_lbr.c
│   │           │   │       ├── hexc_10_32_table.c
│   │           │   │       ├── hexc_table.c
│   │           │   │       ├── high_lsp_tables.c
│   │           │   │       ├── jitter.c
│   │           │   │       ├── kiss_fft.c
│   │           │   │       ├── kiss_fft.h
│   │           │   │       ├── kiss_fftr.c
│   │           │   │       ├── kiss_fftr.h
│   │           │   │       ├── lpc.c
│   │           │   │       ├── lpc.h
│   │           │   │       ├── lpc_bfin.h
│   │           │   │       ├── lsp.c
│   │           │   │       ├── lsp.h
│   │           │   │       ├── lsp_bfin.h
│   │           │   │       ├── lsp_tables_nb.c
│   │           │   │       ├── ltp.h
│   │           │   │       ├── ltp_arm4.h
│   │           │   │       ├── ltp_bfin.h
│   │           │   │       ├── ltp_sse.h
│   │           │   │       ├── math_approx.h
│   │           │   │       ├── mdf.c
│   │           │   │       ├── misc_bfin.h
│   │           │   │       ├── modes.h
│   │           │   │       ├── modes_wb.c
│   │           │   │       ├── nb_celp.h
│   │           │   │       ├── os_support.h
│   │           │   │       ├── os_support.h.bak
│   │           │   │       ├── preprocess.c
│   │           │   │       ├── pseudofloat.h
│   │           │   │       ├── quant_lsp.h
│   │           │   │       ├── quant_lsp_bfin.h
│   │           │   │       ├── resample.c
│   │           │   │       ├── sb_celp.c
│   │           │   │       ├── sb_celp.h
│   │           │   │       ├── smallft.c
│   │           │   │       ├── smallft.h
│   │           │   │       ├── speex.c
│   │           │   │       ├── speex_callbacks.c
│   │           │   │       ├── speex_header.c
│   │           │   │       ├── stack_alloc.h
│   │           │   │       ├── stereo.c
│   │           │   │       ├── testdenoise.c
│   │           │   │       ├── testecho.c
│   │           │   │       ├── testenc.c
│   │           │   │       ├── testenc_uwb.c
│   │           │   │       ├── testenc_wb.c
│   │           │   │       ├── vbr.c
│   │           │   │       ├── vbr.h
│   │           │   │       ├── vorbis_psy.h
│   │           │   │       ├── vq.h
│   │           │   │       ├── vq_arm4.h
│   │           │   │       ├── vq_bfin.h
│   │           │   │       ├── vq_sse.h
│   │           │   │       └── window.c
│   │           │   ├── STM32F10x_StdPeriph_Driver
│   │           │   │   ├── Release_Notes.html
│   │           │   │   ├── inc
│   │           │   │   │   ├── misc.h
│   │           │   │   │   ├── stm32f10x_adc.h
│   │           │   │   │   ├── stm32f10x_bkp.h
│   │           │   │   │   ├── stm32f10x_can.h
│   │           │   │   │   ├── stm32f10x_cec.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
│   │           │   └── startup_stm32f10x_hd.s
│   │           ├── uC-CPU
│   │           │   ├── ARM-Cortex-M3
│   │           │   │   ├── cpu.h
│   │           │   │   ├── cpu_a.asm
│   │           │   │   └── cpu_c.c
│   │           │   ├── cpu.h
│   │           │   ├── cpu_a.asm
│   │           │   ├── cpu_c.c
│   │           │   └── cpu_def.h
│   │           ├── uC-LIB
│   │           │   ├── Ports
│   │           │   │   └── ARM-Cortex-M3
│   │           │   │       ├── IAR
│   │           │   │       │   └── lib_mem_a.asm
│   │           │   │       └── RealView
│   │           │   │           └── lib_mem_a.asm
│   │           │   ├── lib_ascii.c
│   │           │   ├── lib_ascii.h
│   │           │   ├── lib_def.h
│   │           │   ├── lib_mem.c
│   │           │   ├── lib_mem.h
│   │           │   ├── lib_str.c
│   │           │   └── lib_str.h
│   │           └── uCOS-II
│   │               ├── Doc
│   │               │   ├── QuickRefChart-Color.PDF
│   │               │   ├── README.TXT
│   │               │   ├── ReleaseNotes.PDF
│   │               │   ├── Task-State-Diagram.pdf
│   │               │   ├── TaskAssignmentWorksheet.PDF
│   │               │   ├── WhatsNewSince-V200.PDF
│   │               │   ├── uCOS-II-CfgMan.PDF
│   │               │   └── uCOS-II-RefMan.PDF
│   │               ├── Ports
│   │               │   ├── arm-cortex-m3
│   │               │   │   ├── os_cpu.h
│   │               │   │   ├── os_cpu_a.asm
│   │               │   │   ├── os_cpu_c.c
│   │               │   │   └── os_dbg.c
│   │               │   ├── os_cpu.h
│   │               │   ├── os_cpu_a.asm
│   │               │   ├── os_cpu_a.asm.bak
│   │               │   ├── os_cpu_c.c
│   │               │   └── os_dbg.c
│   │               └── Source
│   │                   ├── os_core.c
│   │                   ├── os_flag.c
│   │                   ├── os_mbox.c
│   │                   ├── os_mem.c
│   │                   ├── os_mutex.c
│   │                   ├── os_q.c
│   │                   ├── os_sem.c
│   │                   ├── os_task.c
│   │                   ├── os_time.c
│   │                   ├── os_tmr.c
│   │                   └── ucos_ii.h
│   ├── STM32F103RE_SPEEX_ADDA_FC211AG发射程序
│   │   └── STM32F103RE_SPEEX_ADDA_FC211AG
│   │       ├── Project
│   │       │   ├── Debug
│   │       │   │   ├── Exe
│   │       │   │   │   ├── STM32_SPEEX_FC211.out
│   │       │   │   │   └── STM32_SPEEX_FC211.sim
│   │       │   │   ├── List
│   │       │   │   └── Obj
│   │       │   │       ├── BSP.o
│   │       │   │       ├── BSP.pbi
│   │       │   │       ├── STM32_SPEEX_FC211.pbd
│   │       │   │       ├── Voice_Dect.o
│   │       │   │       ├── Voice_Dect.pbi
│   │       │   │       ├── bits.o
│   │       │   │       ├── bits.pbi
│   │       │   │       ├── buffer.o
│   │       │   │       ├── buffer.pbi
│   │       │   │       ├── cb_search.o
│   │       │   │       ├── cb_search.pbi
│   │       │   │       ├── core_cm3.o
│   │       │   │       ├── core_cm3.pbi
│   │       │   │       ├── exc_10_16_table.o
│   │       │   │       ├── exc_10_32_table.o
│   │       │   │       ├── exc_10_32_table.pbi
│   │       │   │       ├── exc_20_32_table.o
│   │       │   │       ├── exc_5_256_table.o
│   │       │   │       ├── exc_5_64_table.o
│   │       │   │       ├── exc_8_128_table.o
│   │       │   │       ├── fc211_ag.o
│   │       │   │       ├── fc211_ag.pbi
│   │       │   │       ├── fftwrap.o
│   │       │   │       ├── fftwrap.pbi
│   │       │   │       ├── filterbank.o
│   │       │   │       ├── filterbank.pbi
│   │       │   │       ├── filters.o
│   │       │   │       ├── filters.pbi
│   │       │   │       ├── filters_cortexM3.o
│   │       │   │       ├── gain_table.o
│   │       │   │       ├── gain_table.pbi
│   │       │   │       ├── gain_table_lbr.o
│   │       │   │       ├── gain_table_lbr.pbi
│   │       │   │       ├── high_lsp_tables.o
│   │       │   │       ├── high_lsp_tables.pbi
│   │       │   │       ├── kiss_fft.o
│   │       │   │       ├── kiss_fft.pbi
│   │       │   │       ├── kiss_fftr.o
│   │       │   │       ├── kiss_fftr.pbi
│   │       │   │       ├── lpc.o
│   │       │   │       ├── lpc.pbi
│   │       │   │       ├── lsp.o
│   │       │   │       ├── lsp.pbi
│   │       │   │       ├── lsp_tables_nb.o
│   │       │   │       ├── lsp_tables_nb.pbi
│   │       │   │       ├── ltp.o
│   │       │   │       ├── ltp.pbi
│   │       │   │       ├── ltp_cortexM3.o
│   │       │   │       ├── main.o
│   │       │   │       ├── main.pbi
│   │       │   │       ├── mdf.o
│   │       │   │       ├── mdf.pbi
│   │       │   │       ├── misc.o
│   │       │   │       ├── misc.pbi
│   │       │   │       ├── modes.o
│   │       │   │       ├── modes.pbi
│   │       │   │       ├── nb_celp.o
│   │       │   │       ├── nb_celp.pbi
│   │       │   │       ├── preprocess.o
│   │       │   │       ├── preprocess.pbi
│   │       │   │       ├── quant_lsp.o
│   │       │   │       ├── quant_lsp.pbi
│   │       │   │       ├── speex.o
│   │       │   │       ├── speex.pbi
│   │       │   │       ├── speex_callbacks.o
│   │       │   │       ├── speex_callbacks.pbi
│   │       │   │       ├── speex_header.o
│   │       │   │       ├── speex_header.pbi
│   │       │   │       ├── startup_stm32f10x_hd.o
│   │       │   │       ├── stm32f10x_adc.o
│   │       │   │       ├── stm32f10x_adc.pbi
│   │       │   │       ├── stm32f10x_dac.o
│   │       │   │       ├── stm32f10x_dac.pbi
│   │       │   │       ├── stm32f10x_flash.o
│   │       │   │       ├── stm32f10x_flash.pbi
│   │       │   │       ├── stm32f10x_gpio.o
│   │       │   │       ├── stm32f10x_gpio.pbi
│   │       │   │       ├── stm32f10x_it.o
│   │       │   │       ├── stm32f10x_it.pbi
│   │       │   │       ├── stm32f10x_rcc.o
│   │       │   │       ├── stm32f10x_rcc.pbi
│   │       │   │       ├── stm32f10x_tim.o
│   │       │   │       ├── stm32f10x_tim.pbi
│   │       │   │       ├── stm32f10x_usart.o
│   │       │   │       ├── stm32f10x_usart.pbi
│   │       │   │       ├── system_stm32f10x.o
│   │       │   │       ├── system_stm32f10x.pbi
│   │       │   │       ├── uartdriver.o
│   │       │   │       ├── uartdriver.pbi
│   │       │   │       ├── vocoder.o
│   │       │   │       ├── vocoder.pbi
│   │       │   │       ├── vq.o
│   │       │   │       ├── vq.pbi
│   │       │   │       ├── vq_cortexm3.o
│   │       │   │       ├── window.o
│   │       │   │       └── window.pbi
│   │       │   ├── STM32F10x_FLASH.icf
│   │       │   ├── STM32_SPEEX_ADDA.eww
│   │       │   ├── STM32_SPEEX_FC211.dep
│   │       │   ├── STM32_SPEEX_FC211.ewd
│   │       │   ├── STM32_SPEEX_FC211.ewp
│   │       │   └── settings
│   │       │       ├── STM32_SPEEX_ADDA.wsdt
│   │       │       ├── STM32_SPEEX_FC211.cspy.bat
│   │       │       ├── STM32_SPEEX_FC211.dbgdt
│   │       │       ├── STM32_SPEEX_FC211.dni
│   │       │       └── STM32_SPEEX_FC211_Debug.jlink
│   │       └── Source
│   │           ├── APP
│   │           │   ├── inc
│   │           │   │   ├── BitBand.h
│   │           │   │   ├── Voice_Dect.h
│   │           │   │   ├── main.h
│   │           │   │   ├── stm32_includes.h
│   │           │   │   ├── stm32f10x_conf.h
│   │           │   │   ├── stm32f10x_it.h
│   │           │   │   ├── vocoder.h
│   │           │   │   └── voice.h
│   │           │   ├── readme.txt
│   │           │   └── src
│   │           │       ├── Voice_Dect.c
│   │           │       ├── main.c
│   │           │       ├── stm32f10x_it.c
│   │           │       └── vocoder.c
│   │           ├── BSP
│   │           │   ├── inc
│   │           │   │   └── BSP.h
│   │           │   └── src
│   │           │       └── BSP.c
│   │           ├── Driver
│   │           │   ├── inc
│   │           │   │   ├── fc211_ag.h
│   │           │   │   ├── lcd.h
│   │           │   │   └── uartdriver.h
│   │           │   └── src
│   │           │       ├── fc211_ag.c
│   │           │       ├── lcd.c
│   │           │       └── uartdriver.c
│   │           ├── Libraries
│   │           │   ├── CMSIS
│   │           │   │   ├── CM3
│   │           │   │   │   ├── CoreSupport
│   │           │   │   │   │   ├── core_cm3.c
│   │           │   │   │   │   └── core_cm3.h
│   │           │   │   │   └── DeviceSupport
│   │           │   │   │       └── ST
│   │           │   │   │           └── STM32F10x
│   │           │   │   │               ├── Release_Notes.html
│   │           │   │   │               ├── startup
│   │           │   │   │               │   ├── TrueSTUDIO
│   │           │   │   │               │   │   ├── startup_stm32f10x_cl.s
│   │           │   │   │               │   │   ├── startup_stm32f10x_hd.s
│   │           │   │   │               │   │   ├── startup_stm32f10x_hd_vl.s
│   │           │   │   │               │   │   ├── startup_stm32f10x_ld.s
│   │           │   │   │               │   │   ├── startup_stm32f10x_ld_vl.s
│   │           │   │   │               │   │   ├── startup_stm32f10x_md.s
│   │           │   │   │               │   │   ├── startup_stm32f10x_md_vl.s
│   │           │   │   │               │   │   └── startup_stm32f10x_xl.s
│   │           │   │   │               │   ├── arm
│   │           │   │   │               │   │   ├── startup_stm32f10x_cl.s
│   │           │   │   │               │   │   ├── startup_stm32f10x_hd.s
│   │           │   │   │               │   │   ├── startup_stm32f10x_hd_vl.s
│   │           │   │   │               │   │   ├── startup_stm32f10x_ld.s
│   │           │   │   │               │   │   ├── startup_stm32f10x_ld_vl.s
│   │           │   │   │               │   │   ├── startup_stm32f10x_md.s
│   │           │   │   │               │   │   ├── startup_stm32f10x_md_vl.s
│   │           │   │   │               │   │   └── startup_stm32f10x_xl.s
│   │           │   │   │               │   ├── gcc_ride7
│   │           │   │   │               │   │   ├── startup_stm32f10x_cl.s
│   │           │   │   │               │   │   ├── startup_stm32f10x_hd.s
│   │           │   │   │               │   │   ├── startup_stm32f10x_hd_vl.s
│   │           │   │   │               │   │   ├── startup_stm32f10x_ld.s
│   │           │   │   │               │   │   ├── startup_stm32f10x_ld_vl.s
│   │           │   │   │               │   │   ├── startup_stm32f10x_md.s
│   │           │   │   │               │   │   ├── startup_stm32f10x_md_vl.s
│   │           │   │   │               │   │   └── startup_stm32f10x_xl.s
│   │           │   │   │               │   └── iar
│   │           │   │   │               │       ├── startup_stm32f10x_cl.s
│   │           │   │   │               │       ├── startup_stm32f10x_hd.s
│   │           │   │   │               │       ├── startup_stm32f10x_hd_vl.s
│   │           │   │   │               │       ├── startup_stm32f10x_ld.s
│   │           │   │   │               │       ├── startup_stm32f10x_ld_vl.s
│   │           │   │   │               │       ├── startup_stm32f10x_md.s
│   │           │   │   │               │       ├── startup_stm32f10x_md_vl.s
│   │           │   │   │               │       └── startup_stm32f10x_xl.s
│   │           │   │   │               ├── stm32f10x.h
│   │           │   │   │               ├── system_stm32f10x.c
│   │           │   │   │               └── system_stm32f10x.h
│   │           │   │   ├── CMSIS debug support.htm
│   │           │   │   ├── CMSIS_changes.htm
│   │           │   │   ├── Documentation
│   │           │   │   │   └── CMSIS_Core.htm
│   │           │   │   └── License.doc
│   │           │   ├── STM32F10x_Speex_Lib
│   │           │   │   ├── STM32
│   │           │   │   │   ├── config.h
│   │           │   │   │   ├── config.h.bak
│   │           │   │   │   ├── include
│   │           │   │   │   │   └── speex
│   │           │   │   │   │       └── speex_config_types.h
│   │           │   │   │   └── libspeex
│   │           │   │   │       ├── arm
│   │           │   │   │       │   ├── filters_cortexM3.h
│   │           │   │   │       │   ├── ltp_cortexM3.h
│   │           │   │   │       │   └── vq_cortexM3.h
│   │           │   │   │       ├── cb_search.c
│   │           │   │   │       ├── cb_search_cortexM3.h
│   │           │   │   │       ├── filters.c
│   │           │   │   │       ├── gcc
│   │           │   │   │       │   ├── filters_cortexM3.h
│   │           │   │   │       │   ├── filters_cortexM3.s
│   │           │   │   │       │   ├── ltp_cortexM3.h
│   │           │   │   │       │   ├── ltp_cortexM3.s
│   │           │   │   │       │   └── vq_cortexm3.s
│   │           │   │   │       ├── iar
│   │           │   │   │       │   ├── filters_cortexM3.h
│   │           │   │   │       │   ├── filters_cortexM3.s
│   │           │   │   │       │   ├── ltp_cortexM3.h
│   │           │   │   │       │   ├── ltp_cortexM3.s
│   │           │   │   │       │   └── vq_cortexm3.s
│   │           │   │   │       ├── ltp.c
│   │           │   │   │       ├── modes.c
│   │           │   │   │       ├── nb_celp.c
│   │           │   │   │       ├── quant_lsp.c
│   │           │   │   │       └── vq.c
│   │           │   │   ├── include
│   │           │   │   │   └── speex
│   │           │   │   │       ├── speex.h
│   │           │   │   │       ├── speex_bits.h
│   │           │   │   │       ├── speex_buffer.h
│   │           │   │   │       ├── speex_callbacks.h
│   │           │   │   │       ├── speex_echo.h
│   │           │   │   │       ├── speex_header.h
│   │           │   │   │       ├── speex_jitter.h
│   │           │   │   │       ├── speex_preprocess.h
│   │           │   │   │       ├── speex_resampler.h
│   │           │   │   │       ├── speex_stereo.h
│   │           │   │   │       └── speex_types.h
│   │           │   │   └── libspeex
│   │           │   │       ├── _kiss_fft_guts.h
│   │           │   │       ├── arch.h
│   │           │   │       ├── bits.c
│   │           │   │       ├── buffer.c
│   │           │   │       ├── cb_search.h
│   │           │   │       ├── cb_search_arm4.h
│   │           │   │       ├── cb_search_bfin.h
│   │           │   │       ├── cb_search_sse.h
│   │           │   │       ├── exc_10_16_table.c
│   │           │   │       ├── exc_10_32_table.c
│   │           │   │       ├── exc_20_32_table.c
│   │           │   │       ├── exc_5_256_table.c
│   │           │   │       ├── exc_5_64_table.c
│   │           │   │       ├── exc_8_128_table.c
│   │           │   │       ├── fftwrap.c
│   │           │   │       ├── fftwrap.h
│   │           │   │       ├── filterbank.c
│   │           │   │       ├── filterbank.h
│   │           │   │       ├── filters.h
│   │           │   │       ├── filters_arm4.h
│   │           │   │       ├── filters_bfin.h
│   │           │   │       ├── filters_sse.h
│   │           │   │       ├── fixed_arm4.h
│   │           │   │       ├── fixed_arm5e.h
│   │           │   │       ├── fixed_bfin.h
│   │           │   │       ├── fixed_debug.h
│   │           │   │       ├── fixed_generic.h
│   │           │   │       ├── gain_table.c
│   │           │   │       ├── gain_table_lbr.c
│   │           │   │       ├── hexc_10_32_table.c
│   │           │   │       ├── hexc_table.c
│   │           │   │       ├── high_lsp_tables.c
│   │           │   │       ├── jitter.c
│   │           │   │       ├── kiss_fft.c
│   │           │   │       ├── kiss_fft.h
│   │           │   │       ├── kiss_fftr.c
│   │           │   │       ├── kiss_fftr.h
│   │           │   │       ├── lpc.c
│   │           │   │       ├── lpc.h
│   │           │   │       ├── lpc_bfin.h
│   │           │   │       ├── lsp.c
│   │           │   │       ├── lsp.h
│   │           │   │       ├── lsp_bfin.h
│   │           │   │       ├── lsp_tables_nb.c
│   │           │   │       ├── ltp.h
│   │           │   │       ├── ltp_arm4.h
│   │           │   │       ├── ltp_bfin.h
│   │           │   │       ├── ltp_sse.h
│   │           │   │       ├── math_approx.h
│   │           │   │       ├── mdf.c
│   │           │   │       ├── misc_bfin.h
│   │           │   │       ├── modes.h
│   │           │   │       ├── modes_wb.c
│   │           │   │       ├── nb_celp.h
│   │           │   │       ├── os_support.h
│   │           │   │       ├── os_support.h.bak
│   │           │   │       ├── preprocess.c
│   │           │   │       ├── pseudofloat.h
│   │           │   │       ├── quant_lsp.h
│   │           │   │       ├── quant_lsp_bfin.h
│   │           │   │       ├── resample.c
│   │           │   │       ├── sb_celp.c
│   │           │   │       ├── sb_celp.h
│   │           │   │       ├── smallft.c
│   │           │   │       ├── smallft.h
│   │           │   │       ├── speex.c
│   │           │   │       ├── speex_callbacks.c
│   │           │   │       ├── speex_header.c
│   │           │   │       ├── stack_alloc.h
│   │           │   │       ├── stereo.c
│   │           │   │       ├── testdenoise.c
│   │           │   │       ├── testecho.c
│   │           │   │       ├── testenc.c
│   │           │   │       ├── testenc_uwb.c
│   │           │   │       ├── testenc_wb.c
│   │           │   │       ├── vbr.c
│   │           │   │       ├── vbr.h
│   │           │   │       ├── vorbis_psy.h
│   │           │   │       ├── vq.h
│   │           │   │       ├── vq_arm4.h
│   │           │   │       ├── vq_bfin.h
│   │           │   │       ├── vq_sse.h
│   │           │   │       └── window.c
│   │           │   ├── STM32F10x_StdPeriph_Driver
│   │           │   │   ├── Release_Notes.html
│   │           │   │   ├── inc
│   │           │   │   │   ├── misc.h
│   │           │   │   │   ├── stm32f10x_adc.h
│   │           │   │   │   ├── stm32f10x_bkp.h
│   │           │   │   │   ├── stm32f10x_can.h
│   │           │   │   │   ├── stm32f10x_cec.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
│   │           │   └── startup_stm32f10x_hd.s
│   │           ├── uC-CPU
│   │           │   ├── ARM-Cortex-M3
│   │           │   │   ├── cpu.h
│   │           │   │   ├── cpu_a.asm
│   │           │   │   └── cpu_c.c
│   │           │   ├── cpu.h
│   │           │   ├── cpu_a.asm
│   │           │   ├── cpu_c.c
│   │           │   └── cpu_def.h
│   │           ├── uC-LIB
│   │           │   ├── Ports
│   │           │   │   └── ARM-Cortex-M3
│   │           │   │       ├── IAR
│   │           │   │       │   └── lib_mem_a.asm
│   │           │   │       └── RealView
│   │           │   │           └── lib_mem_a.asm
│   │           │   ├── lib_ascii.c
│   │           │   ├── lib_ascii.h
│   │           │   ├── lib_def.h
│   │           │   ├── lib_mem.c
│   │           │   ├── lib_mem.h
│   │           │   ├── lib_str.c
│   │           │   └── lib_str.h
│   │           └── uCOS-II
│   │               ├── Doc
│   │               │   ├── QuickRefChart-Color.PDF
│   │               │   ├── README.TXT
│   │               │   ├── ReleaseNotes.PDF
│   │               │   ├── Task-State-Diagram.pdf
│   │               │   ├── TaskAssignmentWorksheet.PDF
│   │               │   ├── WhatsNewSince-V200.PDF
│   │               │   ├── uCOS-II-CfgMan.PDF
│   │               │   └── uCOS-II-RefMan.PDF
│   │               ├── Ports
│   │               │   ├── arm-cortex-m3
│   │               │   │   ├── os_cpu.h
│   │               │   │   ├── os_cpu_a.asm
│   │               │   │   ├── os_cpu_c.c
│   │               │   │   └── os_dbg.c
│   │               │   ├── os_cpu.h
│   │               │   ├── os_cpu_a.asm
│   │               │   ├── os_cpu_a.asm.bak
│   │               │   ├── os_cpu_c.c
│   │               │   └── os_dbg.c
│   │               └── Source
│   │                   ├── os_core.c
│   │                   ├── os_flag.c
│   │                   ├── os_mbox.c
│   │                   ├── os_mem.c
│   │                   ├── os_mutex.c
│   │                   ├── os_q.c
│   │                   ├── os_sem.c
│   │                   ├── os_task.c
│   │                   ├── os_time.c
│   │                   ├── os_tmr.c
│   │                   └── ucos_ii.h
│   └── STM32F103RE_SPEEX_ADDA_FC211AG接收程序
│       ├── Project
│       │   ├── Debug
│       │   │   ├── Exe
│       │   │   │   ├── STM32_SPEEX_FC211.out
│       │   │   │   └── STM32_SPEEX_FC211.sim
│       │   │   ├── List
│       │   │   └── Obj
│       │   │       ├── BSP.o
│       │   │       ├── BSP.pbi
│       │   │       ├── Voice_Dect.o
│       │   │       ├── Voice_Dect.pbi
│       │   │       ├── bits.o
│       │   │       ├── bits.pbi
│       │   │       ├── buffer.o
│       │   │       ├── buffer.pbi
│       │   │       ├── cb_search.o
│       │   │       ├── cb_search.pbi
│       │   │       ├── core_cm3.o
│       │   │       ├── core_cm3.pbi
│       │   │       ├── exc_10_16_table.o
│       │   │       ├── exc_10_32_table.o
│       │   │       ├── exc_10_32_table.pbi
│       │   │       ├── exc_20_32_table.o
│       │   │       ├── exc_5_256_table.o
│       │   │       ├── exc_5_64_table.o
│       │   │       ├── exc_8_128_table.o
│       │   │       ├── fc211_ag.o
│       │   │       ├── fftwrap.o
│       │   │       ├── fftwrap.pbi
│       │   │       ├── filterbank.o
│       │   │       ├── filterbank.pbi
│       │   │       ├── filters.o
│       │   │       ├── filters.pbi
│       │   │       ├── filters_cortexM3.o
│       │   │       ├── gain_table.o
│       │   │       ├── gain_table.pbi
│       │   │       ├── gain_table_lbr.o
│       │   │       ├── gain_table_lbr.pbi
│       │   │       ├── high_lsp_tables.o
│       │   │       ├── high_lsp_tables.pbi
│       │   │       ├── kiss_fft.o
│       │   │       ├── kiss_fft.pbi
│       │   │       ├── kiss_fftr.o
│       │   │       ├── kiss_fftr.pbi
│       │   │       ├── lpc.o
│       │   │       ├── lpc.pbi
│       │   │       ├── lsp.o
│       │   │       ├── lsp.pbi
│       │   │       ├── lsp_tables_nb.o
│       │   │       ├── lsp_tables_nb.pbi
│       │   │       ├── ltp.o
│       │   │       ├── ltp.pbi
│       │   │       ├── ltp_cortexM3.o
│       │   │       ├── main.o
│       │   │       ├── main.pbi
│       │   │       ├── mdf.o
│       │   │       ├── mdf.pbi
│       │   │       ├── misc.o
│       │   │       ├── modes.o
│       │   │       ├── modes.pbi
│       │   │       ├── nb_celp.o
│       │   │       ├── nb_celp.pbi
│       │   │       ├── preprocess.o
│       │   │       ├── preprocess.pbi
│       │   │       ├── quant_lsp.o
│       │   │       ├── quant_lsp.pbi
│       │   │       ├── speex.o
│       │   │       ├── speex.pbi
│       │   │       ├── speex_callbacks.o
│       │   │       ├── speex_callbacks.pbi
│       │   │       ├── speex_header.o
│       │   │       ├── speex_header.pbi
│       │   │       ├── startup_stm32f10x_hd.o
│       │   │       ├── stm32f10x_adc.o
│       │   │       ├── stm32f10x_dac.o
│       │   │       ├── stm32f10x_flash.o
│       │   │       ├── stm32f10x_gpio.o
│       │   │       ├── stm32f10x_it.o
│       │   │       ├── stm32f10x_it.pbi
│       │   │       ├── stm32f10x_rcc.o
│       │   │       ├── stm32f10x_tim.o
│       │   │       ├── stm32f10x_usart.o
│       │   │       ├── system_stm32f10x.o
│       │   │       ├── system_stm32f10x.pbi
│       │   │       ├── uartdriver.o
│       │   │       ├── vocoder.o
│       │   │       ├── vocoder.pbi
│       │   │       ├── vq.o
│       │   │       ├── vq.pbi
│       │   │       ├── vq_cortexm3.o
│       │   │       └── window.o
│       │   ├── STM32F10x_FLASH.icf
│       │   ├── STM32_SPEEX_ADDA.eww
│       │   ├── STM32_SPEEX_FC211.dep
│       │   ├── STM32_SPEEX_FC211.ewd
│       │   ├── STM32_SPEEX_FC211.ewp
│       │   └── settings
│       │       ├── STM32_SPEEX_ADDA.wsdt
│       │       ├── STM32_SPEEX_FC211.cspy.bat
│       │       ├── STM32_SPEEX_FC211.dbgdt
│       │       ├── STM32_SPEEX_FC211.dni
│       │       └── STM32_SPEEX_FC211_Debug.jlink
│       └── Source
│           ├── APP
│           │   ├── inc
│           │   │   ├── BitBand.h
│           │   │   ├── Voice_Dect.h
│           │   │   ├── main.h
│           │   │   ├── stm32_includes.h
│           │   │   ├── stm32f10x_conf.h
│           │   │   ├── stm32f10x_it.h
│           │   │   ├── vocoder.h
│           │   │   └── voice.h
│           │   ├── readme.txt
│           │   └── src
│           │       ├── Voice_Dect.c
│           │       ├── main.c
│           │       ├── stm32f10x_it.c
│           │       └── vocoder.c
│           ├── BSP
│           │   ├── inc
│           │   │   └── BSP.h
│           │   └── src
│           │       └── BSP.c
│           ├── Driver
│           │   ├── inc
│           │   │   ├── fc211_ag.h
│           │   │   ├── lcd.h
│           │   │   └── uartdriver.h
│           │   └── src
│           │       ├── fc211_ag.c
│           │       ├── lcd.c
│           │       └── uartdriver.c
│           ├── Libraries
│           │   ├── CMSIS
│           │   │   ├── CM3
│           │   │   │   ├── CoreSupport
│           │   │   │   │   ├── core_cm3.c
│           │   │   │   │   └── core_cm3.h
│           │   │   │   └── DeviceSupport
│           │   │   │       └── ST
│           │   │   │           └── STM32F10x
│           │   │   │               ├── Release_Notes.html
│           │   │   │               ├── startup
│           │   │   │               │   ├── TrueSTUDIO
│           │   │   │               │   │   ├── startup_stm32f10x_cl.s
│           │   │   │               │   │   ├── startup_stm32f10x_hd.s
│           │   │   │               │   │   ├── startup_stm32f10x_hd_vl.s
│           │   │   │               │   │   ├── startup_stm32f10x_ld.s
│           │   │   │               │   │   ├── startup_stm32f10x_ld_vl.s
│           │   │   │               │   │   ├── startup_stm32f10x_md.s
│           │   │   │               │   │   ├── startup_stm32f10x_md_vl.s
│           │   │   │               │   │   └── startup_stm32f10x_xl.s
│           │   │   │               │   ├── arm
│           │   │   │               │   │   ├── startup_stm32f10x_cl.s
│           │   │   │               │   │   ├── startup_stm32f10x_hd.s
│           │   │   │               │   │   ├── startup_stm32f10x_hd_vl.s
│           │   │   │               │   │   ├── startup_stm32f10x_ld.s
│           │   │   │               │   │   ├── startup_stm32f10x_ld_vl.s
│           │   │   │               │   │   ├── startup_stm32f10x_md.s
│           │   │   │               │   │   ├── startup_stm32f10x_md_vl.s
│           │   │   │               │   │   └── startup_stm32f10x_xl.s
│           │   │   │               │   ├── gcc_ride7
│           │   │   │               │   │   ├── startup_stm32f10x_cl.s
│           │   │   │               │   │   ├── startup_stm32f10x_hd.s
│           │   │   │               │   │   ├── startup_stm32f10x_hd_vl.s
│           │   │   │               │   │   ├── startup_stm32f10x_ld.s
│           │   │   │               │   │   ├── startup_stm32f10x_ld_vl.s
│           │   │   │               │   │   ├── startup_stm32f10x_md.s
│           │   │   │               │   │   ├── startup_stm32f10x_md_vl.s
│           │   │   │               │   │   └── startup_stm32f10x_xl.s
│           │   │   │               │   └── iar
│           │   │   │               │       ├── startup_stm32f10x_cl.s
│           │   │   │               │       ├── startup_stm32f10x_hd.s
│           │   │   │               │       ├── startup_stm32f10x_hd_vl.s
│           │   │   │               │       ├── startup_stm32f10x_ld.s
│           │   │   │               │       ├── startup_stm32f10x_ld_vl.s
│           │   │   │               │       ├── startup_stm32f10x_md.s
│           │   │   │               │       ├── startup_stm32f10x_md_vl.s
│           │   │   │               │       └── startup_stm32f10x_xl.s
│           │   │   │               ├── stm32f10x.h
│           │   │   │               ├── system_stm32f10x.c
│           │   │   │               └── system_stm32f10x.h
│           │   │   ├── CMSIS debug support.htm
│           │   │   ├── CMSIS_changes.htm
│           │   │   ├── Documentation
│           │   │   │   └── CMSIS_Core.htm
│           │   │   └── License.doc
│           │   ├── STM32F10x_Speex_Lib
│           │   │   ├── STM32
│           │   │   │   ├── config.h
│           │   │   │   ├── config.h.bak
│           │   │   │   ├── include
│           │   │   │   │   └── speex
│           │   │   │   │       └── speex_config_types.h
│           │   │   │   └── libspeex
│           │   │   │       ├── arm
│           │   │   │       │   ├── filters_cortexM3.h
│           │   │   │       │   ├── ltp_cortexM3.h
│           │   │   │       │   └── vq_cortexM3.h
│           │   │   │       ├── cb_search.c
│           │   │   │       ├── cb_search_cortexM3.h
│           │   │   │       ├── filters.c
│           │   │   │       ├── gcc
│           │   │   │       │   ├── filters_cortexM3.h
│           │   │   │       │   ├── filters_cortexM3.s
│           │   │   │       │   ├── ltp_cortexM3.h
│           │   │   │       │   ├── ltp_cortexM3.s
│           │   │   │       │   └── vq_cortexm3.s
│           │   │   │       ├── iar
│           │   │   │       │   ├── filters_cortexM3.h
│           │   │   │       │   ├── filters_cortexM3.s
│           │   │   │       │   ├── ltp_cortexM3.h
│           │   │   │       │   ├── ltp_cortexM3.s
│           │   │   │       │   └── vq_cortexm3.s
│           │   │   │       ├── ltp.c
│           │   │   │       ├── modes.c
│           │   │   │       ├── nb_celp.c
│           │   │   │       ├── quant_lsp.c
│           │   │   │       └── vq.c
│           │   │   ├── include
│           │   │   │   └── speex
│           │   │   │       ├── speex.h
│           │   │   │       ├── speex_bits.h
│           │   │   │       ├── speex_buffer.h
│           │   │   │       ├── speex_callbacks.h
│           │   │   │       ├── speex_echo.h
│           │   │   │       ├── speex_header.h
│           │   │   │       ├── speex_jitter.h
│           │   │   │       ├── speex_preprocess.h
│           │   │   │       ├── speex_resampler.h
│           │   │   │       ├── speex_stereo.h
│           │   │   │       └── speex_types.h
│           │   │   └── libspeex
│           │   │       ├── _kiss_fft_guts.h
│           │   │       ├── arch.h
│           │   │       ├── bits.c
│           │   │       ├── buffer.c
│           │   │       ├── cb_search.h
│           │   │       ├── cb_search_arm4.h
│           │   │       ├── cb_search_bfin.h
│           │   │       ├── cb_search_sse.h
│           │   │       ├── exc_10_16_table.c
│           │   │       ├── exc_10_32_table.c
│           │   │       ├── exc_20_32_table.c
│           │   │       ├── exc_5_256_table.c
│           │   │       ├── exc_5_64_table.c
│           │   │       ├── exc_8_128_table.c
│           │   │       ├── fftwrap.c
│           │   │       ├── fftwrap.h
│           │   │       ├── filterbank.c
│           │   │       ├── filterbank.h
│           │   │       ├── filters.h
│           │   │       ├── filters_arm4.h
│           │   │       ├── filters_bfin.h
│           │   │       ├── filters_sse.h
│           │   │       ├── fixed_arm4.h
│           │   │       ├── fixed_arm5e.h
│           │   │       ├── fixed_bfin.h
│           │   │       ├── fixed_debug.h
│           │   │       ├── fixed_generic.h
│           │   │       ├── gain_table.c
│           │   │       ├── gain_table_lbr.c
│           │   │       ├── hexc_10_32_table.c
│           │   │       ├── hexc_table.c
│           │   │       ├── high_lsp_tables.c
│           │   │       ├── jitter.c
│           │   │       ├── kiss_fft.c
│           │   │       ├── kiss_fft.h
│           │   │       ├── kiss_fftr.c
│           │   │       ├── kiss_fftr.h
│           │   │       ├── lpc.c
│           │   │       ├── lpc.h
│           │   │       ├── lpc_bfin.h
│           │   │       ├── lsp.c
│           │   │       ├── lsp.h
│           │   │       ├── lsp_bfin.h
│           │   │       ├── lsp_tables_nb.c
│           │   │       ├── ltp.h
│           │   │       ├── ltp_arm4.h
│           │   │       ├── ltp_bfin.h
│           │   │       ├── ltp_sse.h
│           │   │       ├── math_approx.h
│           │   │       ├── mdf.c
│           │   │       ├── misc_bfin.h
│           │   │       ├── modes.h
│           │   │       ├── modes_wb.c
│           │   │       ├── nb_celp.h
│           │   │       ├── os_support.h
│           │   │       ├── os_support.h.bak
│           │   │       ├── preprocess.c
│           │   │       ├── pseudofloat.h
│           │   │       ├── quant_lsp.h
│           │   │       ├── quant_lsp_bfin.h
│           │   │       ├── resample.c
│           │   │       ├── sb_celp.c
│           │   │       ├── sb_celp.h
│           │   │       ├── smallft.c
│           │   │       ├── smallft.h
│           │   │       ├── speex.c
│           │   │       ├── speex_callbacks.c
│           │   │       ├── speex_header.c
│           │   │       ├── stack_alloc.h
│           │   │       ├── stereo.c
│           │   │       ├── testdenoise.c
│           │   │       ├── testecho.c
│           │   │       ├── testenc.c
│           │   │       ├── testenc_uwb.c
│           │   │       ├── testenc_wb.c
│           │   │       ├── vbr.c
│           │   │       ├── vbr.h
│           │   │       ├── vorbis_psy.h
│           │   │       ├── vq.h
│           │   │       ├── vq_arm4.h
│           │   │       ├── vq_bfin.h
│           │   │       ├── vq_sse.h
│           │   │       └── window.c
│           │   ├── STM32F10x_StdPeriph_Driver
│           │   │   ├── Release_Notes.html
│           │   │   ├── inc
│           │   │   │   ├── misc.h
│           │   │   │   ├── stm32f10x_adc.h
│           │   │   │   ├── stm32f10x_bkp.h
│           │   │   │   ├── stm32f10x_can.h
│           │   │   │   ├── stm32f10x_cec.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
│           │   └── startup_stm32f10x_hd.s
│           ├── uC-CPU
│           │   ├── ARM-Cortex-M3
│           │   │   ├── cpu.h
│           │   │   ├── cpu_a.asm
│           │   │   └── cpu_c.c
│           │   ├── cpu.h
│           │   ├── cpu_a.asm
│           │   ├── cpu_c.c
│           │   └── cpu_def.h
│           ├── uC-LIB
│           │   ├── Ports
│           │   │   └── ARM-Cortex-M3
│           │   │       ├── IAR
│           │   │       │   └── lib_mem_a.asm
│           │   │       └── RealView
│           │   │           └── lib_mem_a.asm
│           │   ├── lib_ascii.c
│           │   ├── lib_ascii.h
│           │   ├── lib_def.h
│           │   ├── lib_mem.c
│           │   ├── lib_mem.h
│           │   ├── lib_str.c
│           │   └── lib_str.h
│           └── uCOS-II
│               ├── Doc
│               │   ├── QuickRefChart-Color.PDF
│               │   ├── README.TXT
│               │   ├── ReleaseNotes.PDF
│               │   ├── Task-State-Diagram.pdf
│               │   ├── TaskAssignmentWorksheet.PDF
│               │   ├── WhatsNewSince-V200.PDF
│               │   ├── uCOS-II-CfgMan.PDF
│               │   └── uCOS-II-RefMan.PDF
│               ├── Ports
│               │   ├── arm-cortex-m3
│               │   │   ├── os_cpu.h
│               │   │   ├── os_cpu_a.asm
│               │   │   ├── os_cpu_c.c
│               │   │   └── os_dbg.c
│               │   ├── os_cpu.h
│               │   ├── os_cpu_a.asm
│               │   ├── os_cpu_a.asm.bak
│               │   ├── os_cpu_c.c
│               │   └── os_dbg.c
│               └── Source
│                   ├── os_core.c
│                   ├── os_flag.c
│                   ├── os_mbox.c
│                   ├── os_mem.c
│                   ├── os_mutex.c
│                   ├── os_q.c
│                   ├── os_sem.c
│                   ├── os_task.c
│                   ├── os_time.c
│                   ├── os_tmr.c
│                   └── ucos_ii.h
├── 程序源码
│   └── SpeexVocoder_STM32F103-STK
│       ├── EWARMv5
│       │   ├── Backup of SpeexVocoder_STM32F103-STK.ewd
│       │   ├── Backup of SpeexVocoder_STM32F103-STK.ewp
│       │   ├── STM32F10x_FLASH.icf
│       │   ├── SpeexVocoder_STM32F103-STK
│       │   │   ├── Exe
│       │   │   │   ├── SpeexVocoder_STM32-SK.out
│       │   │   │   ├── SpeexVocoder_STM32-SK.sim
│       │   │   │   ├── SpeexVocoder_STM32F103-STK.out
│       │   │   │   └── SpeexVocoder_STM32F103-STK.sim
│       │   │   ├── List
│       │   │   └── Obj
│       │   │       ├── SpeexVocoder_STM32F103-STK.pbd
│       │   │       ├── bits.o
│       │   │       ├── buffer.o
│       │   │       ├── cb_search.o
│       │   │       ├── core_cm3.o
│       │   │       ├── exc_10_32_table.o
│       │   │       ├── filters.o
│       │   │       ├── filters_cortexM3.o
│       │   │       ├── gain_table.o
│       │   │       ├── gain_table_lbr.o
│       │   │       ├── high_lsp_tables.o
│       │   │       ├── lcd.o
│       │   │       ├── lpc.o
│       │   │       ├── lsp.o
│       │   │       ├── lsp_tables_nb.o
│       │   │       ├── ltp.o
│       │   │       ├── ltp_cortexM3.o
│       │   │       ├── main.o
│       │   │       ├── misc.o
│       │   │       ├── modes.o
│       │   │       ├── nb_celp.o
│       │   │       ├── quant_lsp.o
│       │   │       ├── speex.o
│       │   │       ├── speex_callbacks.o
│       │   │       ├── speex_header.o
│       │   │       ├── startup_stm32f10x_hd.o
│       │   │       ├── startup_stm32f10x_md.o
│       │   │       ├── stm32f10x_adc.o
│       │   │       ├── stm32f10x_dac.o
│       │   │       ├── stm32f10x_flash.o
│       │   │       ├── stm32f10x_gpio.o
│       │   │       ├── stm32f10x_it.o
│       │   │       ├── stm32f10x_rcc.o
│       │   │       ├── stm32f10x_spi.o
│       │   │       ├── stm32f10x_tim.o
│       │   │       ├── stm32f10x_usart.o
│       │   │       ├── system_stm32f10x.o
│       │   │       ├── vocoder.o
│       │   │       ├── vq.o
│       │   │       ├── vq_cortexm3.o
│       │   │       └── window.o
│       │   ├── SpeexVocoder_STM32F103-STK.dep
│       │   ├── SpeexVocoder_STM32F103-STK.ewd
│       │   ├── SpeexVocoder_STM32F103-STK.ewp
│       │   ├── SpeexVocoder_STM32F103-STK.eww
│       │   └── settings
│       │       ├── SpeexVocoder_STM32F103-STK.cspy.bat
│       │       ├── SpeexVocoder_STM32F103-STK.dbgdt
│       │       ├── SpeexVocoder_STM32F103-STK.dni
│       │       ├── SpeexVocoder_STM32F103-STK.wsdt
│       │       └── SpeexVocoder_STM32F103-STK_SpeexVocoder_STM32F103-STK.jlink
│       ├── RIDE
│       │   ├── SpeexVocoder_STM32F103-STK.rapp
│       │   └── SpeexVocoder_STM32F103-STK.rprj
│       ├── RVMDK
│       │   ├── SpeexVocoder_STM32F103-STK.Opt
│       │   └── SpeexVocoder_STM32F103-STK.Uv2
│       ├── inc
│       │   ├── lcd.h
│       │   ├── main.h
│       │   ├── stm32f10x_conf.h
│       │   ├── stm32f10x_it.h
│       │   ├── vocoder.h
│       │   └── voice.h
│       ├── readme.txt
│       └── src
│           ├── lcd.c
│           ├── main.c
│           ├── stm32f10x_it.c
│           └── vocoder.c
├── 原理图和PCB源文件.zip
└── 好例子网_STM32F103RBT6设计全双工音频对讲机评估板PDF原理图PCB 3DF封装库 单片机软件源码文件.zip

183 directories, 1162 files


标签: STM32 STM3 对讲机 stm 32

实例下载地址

基于stm32的全双工对讲机

不能下载?内容有错? 点击这里报错 + 投诉 + 提问

好例子网口号:伸出你的我的手 — 分享

网友评论

发表评论

(您的评论需要经过审核才能显示)

查看所有0条评论>>

小贴士

感谢您为本站写下的评论,您的评论对其它用户来说具有重要的参考价值,所以请认真填写。

  • 类似“顶”、“沙发”之类没有营养的文字,对勤劳贡献的楼主来说是令人沮丧的反馈信息。
  • 相信您也不想看到一排文字/表情墙,所以请不要反馈意义不大的重复字符,也请尽量不要纯表情的回复。
  • 提问之前请再仔细看一遍楼主的说明,或许是您遗漏了。
  • 请勿到处挖坑绊人、招贴广告。既占空间让人厌烦,又没人会搭理,于人于己都无利。

关于好例子网

本站旨在为广大IT学习爱好者提供一个非营利性互相学习交流分享平台。本站所有资源都可以被免费获取学习研究。本站资源来自网友分享,对搜索内容的合法性不具有预见性、识别性、控制性,仅供学习研究,请务必在下载后24小时内给予删除,不得用于其他任何用途,否则后果自负。基于互联网的特殊性,平台无法对用户传输的作品、信息、内容的权属或合法性、安全性、合规性、真实性、科学性、完整权、有效性等进行实质审查;无论平台是否已进行审查,用户均应自行承担因其传输的作品、信息、内容而可能或已经产生的侵权或权属纠纷等法律责任。本站所有资源不代表本站的观点或立场,基于网友分享,根据中国法律《信息网络传播权保护条例》第二十二与二十三条之规定,若资源存在侵权或相关问题请联系本站客服人员,点此联系我们。关于更多版权及免责申明参见 版权及免责申明

;
报警