2021-08-15 17:34:47 索煒達電子 860
項目編號:E130
文件大?。?.8M
源碼說明:帶中文注釋
開發(fā)環(huán)境:C編譯
簡要概述:
使用STM32F103C8T6 MCU的WS2812B二極管
文件列表:
目錄│文件列表:
└ WS2812B_STM32_HAL
│ .cproject
│ .gitignore
│ .mxproject
│ .project
│ LICENSE
│ README.md
│ STM32F103C8Tx_FLASH.ld
│ WS2812B_C8 Debug.launch
│ WS2812B_C8.ioc
├ .settings
│ └ language.settings.xml
├ Core
│ ├ Inc
│ │ │ dma.h
│ │ │ gpio.h
│ │ │ main.h
│ │ │ spi.h
│ │ │ stm32f1xx_hal_conf.h
│ │ │ stm32f1xx_it.h
│ │ │ usb_parsing.h
│ │ │ ws2812b.h
│ │ └ ws2812b_fx.h
│ ├ Src
│ │ │ dma.c
│ │ │ gpio.c
│ │ │ main.c
│ │ │ spi.c
│ │ │ stm32f1xx_hal_msp.c
│ │ │ stm32f1xx_it.c
│ │ │ syscalls.c
│ │ │ sysmem.c
│ │ │ system_stm32f1xx.c
│ │ │ usb_parsing.c
│ │ │ ws2812b.c
│ │ └ ws2812b_fx.c
│ └ Startup
│ └ startup_stm32f103c8tx.s
├ Drivers
│ ├ CMSIS
│ │ ├ Device
│ │ │ └ ST
│ │ │ └ STM32F1xx
│ │ │ └ Include
│ │ │ │ stm32f103xb.h
│ │ │ │ stm32f1xx.h
│ │ │ └ system_stm32f1xx.h
│ │ └ 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
│ └ STM32F1xx_HAL_Driver
│ ├ Inc
│ │ │ stm32f1xx_hal.h
│ │ │ stm32f1xx_hal_cortex.h
│ │ │ stm32f1xx_hal_def.h
│ │ │ stm32f1xx_hal_dma.h
│ │ │ stm32f1xx_hal_dma_ex.h
│ │ │ stm32f1xx_hal_exti.h
│ │ │ stm32f1xx_hal_flash.h
│ │ │ stm32f1xx_hal_flash_ex.h
│ │ │ stm32f1xx_hal_gpio.h
│ │ │ stm32f1xx_hal_gpio_ex.h
│ │ │ stm32f1xx_hal_pcd.h
│ │ │ stm32f1xx_hal_pcd_ex.h
│ │ │ stm32f1xx_hal_pwr.h
│ │ │ stm32f1xx_hal_rcc.h
│ │ │ stm32f1xx_hal_rcc_ex.h
│ │ │ stm32f1xx_hal_spi.h
│ │ │ stm32f1xx_hal_tim.h
│ │ │ stm32f1xx_hal_tim_ex.h
│ │ │ stm32f1xx_ll_usb.h
│ │ └ Legacy
│ │ └ stm32_hal_legacy.h
│ └ Src
│ │ stm32f1xx_hal.c
│ │ stm32f1xx_hal_cortex.c
│ │ stm32f1xx_hal_dma.c
│ │ stm32f1xx_hal_exti.c
│ │ stm32f1xx_hal_flash.c
│ │ stm32f1xx_hal_flash_ex.c
│ │ stm32f1xx_hal_gpio.c
│ │ stm32f1xx_hal_gpio_ex.c
│ │ stm32f1xx_hal_pcd.c
│ │ stm32f1xx_hal_pcd_ex.c
│ │ stm32f1xx_hal_pwr.c
│ │ stm32f1xx_hal_rcc.c
│ │ stm32f1xx_hal_rcc_ex.c
│ │ stm32f1xx_hal_spi.c
│ │ stm32f1xx_hal_tim.c
│ │ stm32f1xx_hal_tim_ex.c
│ └ stm32f1xx_ll_usb.c
├ Middlewares
│ └ ST
│ └ STM32_USB_Device_Library
│ ├ Class
│ │ └ CDC
│ │ ├ Inc
│ │ │ └ usbd_cdc.h
│ │ └ Src
│ │ └ usbd_cdc.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
└ USB_DEVICE
├ App
│ │ usbd_cdc_if.c
│ │ usbd_cdc_if.h
│ │ usbd_desc.c
│ │ usbd_desc.h
│ │ usb_device.c
│ └ usb_device.h
└ Target
│ usbd_conf.c
└ usbd_conf.h