2021-10-24 09:36:57 索煒達(dá)電子 811
項(xiàng)目編號(hào):E1720
文件大?。?49K
源碼說明:帶中文注釋
開發(fā)環(huán)境:C編譯器
簡(jiǎn)要概述:
STM32F4-Disco USB聲卡設(shè)計(jì)
目錄│文件列表:
└ STM32F4-USB-Sound-Card
│ .cproject
│ .mxproject
│ .project
│ CMakeLists.txt
│ CMakeLists_template.txt
│ CubeSTM32F4USBAudio.ioc
│ CubeSTM32F4USBAudio.xml
│ STM32F407VGTx_FLASH.ld
│ syscalls.c
├ Drivers
│ ├ BSP
│ │ ├ Board
│ │ │ │ stm32f4_discovery.c
│ │ │ │ stm32f4_discovery.h
│ │ │ │ stm32f4_discovery_audio.c
│ │ │ └ stm32f4_discovery_audio.h
│ │ └ Components
│ │ ├ Common
│ │ │ └ audio.h
│ │ └ cs43l22
│ │ │ cs43l22.c
│ │ │ cs43l22.h
│ │ └ Release_Notes.html
│ ├ CMSIS
│ │ ├ Device
│ │ │ └ ST
│ │ │ └ STM32F4xx
│ │ │ └ Include
│ │ │ │ stm32f407xx.h
│ │ │ │ stm32f4xx.h
│ │ │ └ system_stm32f4xx.h
│ │ └ Include
│ │ │ arm_common_tables.h
│ │ │ arm_const_structs.h
│ │ │ arm_math.h
│ │ │ cmsis_armcc.h
│ │ │ cmsis_armcc_V6.h
│ │ │ cmsis_gcc.h
│ │ │ core_cm0.h
│ │ │ core_cm0plus.h
│ │ │ core_cm3.h
│ │ │ core_cm4.h
│ │ │ core_cm7.h
│ │ │ core_cmFunc.h
│ │ │ core_cmInstr.h
│ │ │ core_cmSimd.h
│ │ │ core_sc000.h
│ │ └ core_sc300.h
│ └ STM32F4xx_HAL_Driver
│ ├ Inc
│ │ │ stm32f4xx_hal.h
│ │ │ stm32f4xx_hal_cortex.h
│ │ │ stm32f4xx_hal_def.h
│ │ │ stm32f4xx_hal_dma.h
│ │ │ stm32f4xx_hal_dma_ex.h
│ │ │ stm32f4xx_hal_flash.h
│ │ │ stm32f4xx_hal_flash_ex.h
│ │ │ stm32f4xx_hal_flash_ramfunc.h
│ │ │ stm32f4xx_hal_gpio.h
│ │ │ stm32f4xx_hal_gpio_ex.h
│ │ │ stm32f4xx_hal_i2c.h
│ │ │ stm32f4xx_hal_i2c_ex.h
│ │ │ stm32f4xx_hal_i2s.h
│ │ │ stm32f4xx_hal_i2s_ex.h
│ │ │ stm32f4xx_hal_pcd.h
│ │ │ stm32f4xx_hal_pcd_ex.h
│ │ │ stm32f4xx_hal_pwr.h
│ │ │ stm32f4xx_hal_pwr_ex.h
│ │ │ stm32f4xx_hal_rcc.h
│ │ │ stm32f4xx_hal_rcc_ex.h
│ │ │ stm32f4xx_hal_tim.h
│ │ │ stm32f4xx_hal_tim_ex.h
│ │ │ stm32f4xx_ll_usb.h
│ │ └ Legacy
│ │ └ stm32_hal_legacy.h
│ └ Src
│ │ stm32f4xx_hal.c
│ │ stm32f4xx_hal_cortex.c
│ │ stm32f4xx_hal_dma.c
│ │ stm32f4xx_hal_dma_ex.c
│ │ stm32f4xx_hal_flash.c
│ │ stm32f4xx_hal_flash_ex.c
│ │ stm32f4xx_hal_flash_ramfunc.c
│ │ stm32f4xx_hal_gpio.c
│ │ stm32f4xx_hal_i2c.c
│ │ stm32f4xx_hal_i2c_ex.c
│ │ stm32f4xx_hal_i2s.c
│ │ stm32f4xx_hal_i2s_ex.c
│ │ stm32f4xx_hal_pcd.c
│ │ stm32f4xx_hal_pcd_ex.c
│ │ stm32f4xx_hal_pwr.c
│ │ stm32f4xx_hal_pwr_ex.c
│ │ stm32f4xx_hal_rcc.c
│ │ stm32f4xx_hal_rcc_ex.c
│ │ stm32f4xx_hal_tim.c
│ │ stm32f4xx_hal_tim_ex.c
│ └ stm32f4xx_ll_usb.c
├ Inc
│ │ dma.h
│ │ gpio.h
│ │ i2c.h
│ │ i2s.h
│ │ main.h
│ │ stm32f4xx_hal_conf.h
│ │ stm32f4xx_it.h
│ │ usbd_audio_if.h
│ │ usbd_conf.h
│ │ usbd_desc.h
│ └ usb_device.h
├ Middlewares
│ └ ST
│ └ STM32_USB_Device_Library
│ ├ Class
│ │ └ AUDIO
│ │ ├ Inc
│ │ │ └ usbd_audio.h
│ │ └ Src
│ │ └ usbd_audio.c
│ └ Core
│ ├ Inc
│ │ │ usbd_core.h
│ │ │ usbd_ctlreq.h
│ │ │ usbd_def.h
│ │ └ usbd_ioreq.h
│ └ Src
│ │ usbd_core.c
│ │ usbd_ctlreq.c
│ └ usbd_ioreq.c
├ Src
│ │ dma.c
│ │ gpio.c
│ │ i2c.c
│ │ i2s.c
│ │ main.c
│ │ stm32f4xx_hal_msp.c
│ │ stm32f4xx_it.c
│ │ system_stm32f4xx.c
│ │ usbd_audio_if.c
│ │ usbd_conf.c
│ │ usbd_desc.c
│ └ usb_device.c
└ startup
└ startup_stm32f407xx.s