【E276】STM32H7 USB CDC类HS作为Host FS作为Device进行通信

2021-08-17 22:48:21      索炜达电子      1005     

项目编号:E276

文件大小:54M

源码说明:带中文注释

开发环境:C编译器

简要概述:

STM32H7 USB CDC类HS作为Host FS作为Device进行通信

【E276】STM32H7 USB CDC类HS作为Host FS作为Device进行通信

目录│文件列表:

 └ STM32H7-CDC-HS-FS

    └ STM32H7-CDC-HS-FS

       │ .mxproject

       │ USB-CDC.ioc

       ├ Drivers

       │  ├ CMSIS

       │  │  ├ Core

       │  │  │  ├ Include

       │  │  │  │  │ cmsis_armcc.h

       │  │  │  │  │ cmsis_armclang.h

       │  │  │  │  │ cmsis_compiler.h

       │  │  │  │  │ cmsis_gcc.h

       │  │  │  │  │ cmsis_iccarm.h

       │  │  │  │  │ cmsis_version.h

       │  │  │  │  │ core_armv8mbl.h

       │  │  │  │  │ core_armv8mml.h

       │  │  │  │  │ core_cm0.h

       │  │  │  │  │ core_cm0plus.h

       │  │  │  │  │ core_cm1.h

       │  │  │  │  │ core_cm23.h

       │  │  │  │  │ core_cm3.h

       │  │  │  │  │ core_cm33.h

       │  │  │  │  │ core_cm4.h

       │  │  │  │  │ core_cm7.h

       │  │  │  │  │ core_sc000.h

       │  │  │  │  │ core_sc300.h

       │  │  │  │  │ mpu_armv7.h

       │  │  │  │  │ mpu_armv8.h

       │  │  │  │  └ tz_context.h

       │  │  │  └ Template

       │  │  │     └ ARMv8-M

       │  │  │        │ main_s.c

       │  │  │        └ tz_context.c

       │  │  ├ Core_A

       │  │  │  ├ Include

       │  │  │  │  │ cmsis_armcc.h

       │  │  │  │  │ cmsis_armclang.h

       │  │  │  │  │ cmsis_compiler.h

       │  │  │  │  │ cmsis_cp15.h

       │  │  │  │  │ cmsis_gcc.h

       │  │  │  │  │ cmsis_iccarm.h

       │  │  │  │  │ core_ca.h

       │  │  │  │  └ irq_ctrl.h

       │  │  │  └ Source

       │  │  │     └ irq_ctrl_gic.c

       │  │  ├ Device

       │  │  │  └ ST

       │  │  │     └ STM32H7xx

       │  │  │        ├ Include

       │  │  │        │  │ stm32h742xx.h

       │  │  │        │  │ stm32h743xx.h

       │  │  │        │  │ stm32h745xx.h

       │  │  │        │  │ stm32h747xx.h

       │  │  │        │  │ stm32h750xx.h

       │  │  │        │  │ stm32h753xx.h

       │  │  │        │  │ stm32h755xx.h

       │  │  │        │  │ stm32h757xx.h

       │  │  │        │  │ stm32h7a3xx.h

       │  │  │        │  │ stm32h7a3xxq.h

       │  │  │        │  │ stm32h7b0xx.h

       │  │  │        │  │ stm32h7b0xxq.h

       │  │  │        │  │ stm32h7b3xx.h

       │  │  │        │  │ stm32h7b3xxq.h

       │  │  │        │  │ stm32h7xx.h

       │  │  │        │  └ system_stm32h7xx.h

       │  │  │        └ Source

       │  │  │           └ Templates

       │  │  │              │ system_stm32h7xx.c

       │  │  │              │ system_stm32h7xx_dualcore_bootcm4_cm7gated.c

       │  │  │              │ system_stm32h7xx_dualcore_bootcm7_cm4gated.c

       │  │  │              │ system_stm32h7xx_dualcore_boot_cm4_cm7.c

       │  │  │              │ system_stm32h7xx_singlecore.c

       │  │  │              ├ arm

       │  │  │              │  │ startup_stm32h742xx.s

       │  │  │              │  │ startup_stm32h743xx.s

       │  │  │              │  │ startup_stm32h745xx.s

       │  │  │              │  │ startup_stm32h747xx.s

       │  │  │              │  │ startup_stm32h750xx.s

       │  │  │              │  │ startup_stm32h753xx.s

       │  │  │              │  │ startup_stm32h755xx.s

       │  │  │              │  │ startup_stm32h757xx.s

       │  │  │              │  │ startup_stm32h7a3xx.s

       │  │  │              │  │ startup_stm32h7a3xxq.s

       │  │  │              │  │ startup_stm32h7b0xx.s

       │  │  │              │  │ startup_stm32h7b0xxq.s

       │  │  │              │  │ startup_stm32h7b3xx.s

       │  │  │              │  └ startup_stm32h7b3xxq.s

       │  │  │              ├ gcc

       │  │  │              │  │ startup_stm32h742xx.s

       │  │  │              │  │ startup_stm32h743xx.s

       │  │  │              │  │ startup_stm32h745xx.s

       │  │  │              │  │ startup_stm32h747xx.s

       │  │  │              │  │ startup_stm32h750xx.s

       │  │  │              │  │ startup_stm32h753xx.s

       │  │  │              │  │ startup_stm32h755xx.s

       │  │  │              │  │ startup_stm32h757xx.s

       │  │  │              │  │ startup_stm32h7a3xx.s

       │  │  │              │  │ startup_stm32h7a3xxq.s

       │  │  │              │  │ startup_stm32h7b0xx.s

       │  │  │              │  │ startup_stm32h7b0xxq.s

       │  │  │              │  │ startup_stm32h7b3xx.s

       │  │  │              │  └ startup_stm32h7b3xxq.s

       │  │  │              └ iar

       │  │  │                 │ startup_stm32h742xx.s

       │  │  │                 │ startup_stm32h743xx.s

       │  │  │                 │ startup_stm32h745xx.s

       │  │  │                 │ startup_stm32h747xx.s

       │  │  │                 │ startup_stm32h750xx.s

       │  │  │                 │ startup_stm32h753xx.s

       │  │  │                 │ startup_stm32h755xx.s

       │  │  │                 │ startup_stm32h757xx.s

       │  │  │                 │ startup_stm32h7a3xx.s

       │  │  │                 │ startup_stm32h7a3xxq.s

       │  │  │                 │ startup_stm32h7b0xx.s

       │  │  │                 │ startup_stm32h7b0xxq.s

       │  │  │                 │ startup_stm32h7b3xx.s

       │  │  │                 │ startup_stm32h7b3xxq.s

       │  │  │                 └ linker

       │  │  │                    │ stm32h742xx_dtcmram.icf

       │  │  │                    │ stm32h742xx_flash.icf

       │  │  │                    │ stm32h742xx_flash_rw_sram1.icf

       │  │  │                    │ stm32h742xx_flash_rw_sram2.icf

       │  │  │                    │ stm32h742xx_sram1.icf

       │  │  │                    │ stm32h743xx_dtcmram.icf

       │  │  │                    │ stm32h743xx_flash.icf

       │  │  │                    │ stm32h743xx_flash_rw_sram1.icf

       │  │  │                    │ stm32h743xx_flash_rw_sram2.icf

       │  │  │                    │ stm32h743xx_sram1.icf

       │  │  │                    │ stm32h745xx_dtcmram_CM7.icf

       │  │  │                    │ stm32h745xx_flash_CM4.icf

       │  │  │                    │ stm32h745xx_flash_CM7.icf

       │  │  │                    │ stm32h745xx_flash_rw_sram1_CM7.icf

       │  │  │                    │ stm32h745xx_flash_rw_sram2_CM4.icf

       │  │  │                    │ stm32h745xx_sram1_CM7.icf

       │  │  │                    │ stm32h745xx_sram2_CM4.icf

       │  │  │                    │ stm32h747xx_dtcmram_CM7.icf

       │  │  │                    │ stm32h747xx_flash_CM4.icf

       │  │  │                    │ stm32h747xx_flash_CM7.icf

       │  │  │                    │ stm32h747xx_flash_rw_sram1_CM7.icf

       │  │  │                    │ stm32h747xx_flash_rw_sram2_CM4.icf

       │  │  │                    │ stm32h747xx_sram1_CM7.icf

       │  │  │                    │ stm32h747xx_sram2_CM4.icf

       │  │  │                    │ stm32h750xx_dtcmram.icf

       │  │  │                    │ stm32h750xx_flash.icf

       │  │  │                    │ stm32h750xx_flash_rw_sram1.icf

       │  │  │                    │ stm32h750xx_flash_rw_sram2.icf

       │  │  │                    │ stm32h750xx_sram1.icf

       │  │  │                    │ stm32h753xx_dtcmram.icf

       │  │  │                    │ stm32h753xx_flash.icf

       │  │  │                    │ stm32h753xx_flash_rw_sram1.icf

       │  │  │                    │ stm32h753xx_flash_rw_sram2.icf

       │  │  │                    │ stm32h753xx_sram1.icf

       │  │  │                    │ stm32h755xx_dtcmram_CM7.icf

       │  │  │                    │ stm32h755xx_flash_CM4.icf

       │  │  │                    │ stm32h755xx_flash_CM7.icf

       │  │  │                    │ stm32h755xx_flash_rw_sram1_CM7.icf

       │  │  │                    │ stm32h755xx_flash_rw_sram2_CM4.icf

       │  │  │                    │ stm32h755xx_sram1_CM7.icf

       │  │  │                    │ stm32h755xx_sram2_CM4.icf

       │  │  │                    │ stm32h757xx_dtcmram_CM7.icf

       │  │  │                    │ stm32h757xx_flash_CM4.icf

       │  │  │                    │ stm32h757xx_flash_CM7.icf

       │  │  │                    │ stm32h757xx_flash_rw_sram1_CM7.icf

       │  │  │                    │ stm32h757xx_flash_rw_sram2_CM4.icf

       │  │  │                    │ stm32h757xx_sram1_CM7.icf

       │  │  │                    │ stm32h757xx_sram2_CM4.icf

       │  │  │                    │ stm32h7a3xgq_flash.icf

       │  │  │                    │ stm32h7a3xgq_flash_rw_sram1.icf

       │  │  │                    │ stm32h7a3xgq_flash_rw_sram2.icf

       │  │  │                    │ stm32h7a3xg_flash.icf

       │  │  │                    │ stm32h7a3xg_flash_rw_sram1.icf

       │  │  │                    │ stm32h7a3xg_flash_rw_sram2.ic

TAGSTM32H7
  • 7 次
  • 1 分