├── .gitattributes ├── .gitignore ├── LICENSE ├── README.md └── Stm32f103c8_ws281x_spi-dma ├── Board ├── HC-SR501 │ ├── human_induction.c │ └── human_induction.h ├── JSN-SR04T │ ├── jsn-sr04t.c │ └── jsn-sr04t.h ├── beep │ ├── beep.c │ └── beep.h ├── flash │ ├── flash.c │ ├── flash.h │ └── 新建文件夹 │ │ ├── flash.c │ │ └── flash.h ├── key │ ├── key.c │ └── key.h ├── led │ ├── led.c │ └── led.h ├── max6675 │ ├── max6675.c │ └── max6675.h ├── photoresistor │ ├── photoresistor.c │ └── photoresistor.h ├── relay │ ├── relay.c │ └── relay.h └── ws2812 │ ├── ws2812.c │ └── ws2812.h ├── Chip ├── chip │ ├── chip.c │ └── chip.h ├── delay │ ├── delay.c │ └── delay.h ├── spi │ ├── spi.c │ └── spi.h ├── timer │ ├── timer.c │ └── timer.h └── usart │ ├── usart.c │ └── usart.h ├── Doc └── readme.txt ├── Libraries ├── CMSIS │ ├── core_cm3.c │ ├── core_cm3.h │ ├── startup │ │ ├── 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 └── STM32F10x_StdPeriph_Driver │ ├── 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 ├── Project ├── DebugConfig │ └── Target_1_STM32F103C8.dbgconf ├── JLinkSettings.ini ├── Objects │ └── stm32c8t6_template.hex ├── stm32c8t6_template.uvguix.xiaoyuan ├── stm32c8t6_template.uvoptx └── stm32c8t6_template.uvprojx ├── User ├── main.c ├── stm32f10x_conf.h ├── stm32f10x_it.c └── stm32f10x_it.h └── keilkilll.bat /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apex-yuan/STM32f103_WS2812/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apex-yuan/STM32f103_WS2812/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apex-yuan/STM32f103_WS2812/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apex-yuan/STM32f103_WS2812/HEAD/README.md -------------------------------------------------------------------------------- /Stm32f103c8_ws281x_spi-dma/Board/HC-SR501/human_induction.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apex-yuan/STM32f103_WS2812/HEAD/Stm32f103c8_ws281x_spi-dma/Board/HC-SR501/human_induction.c -------------------------------------------------------------------------------- /Stm32f103c8_ws281x_spi-dma/Board/HC-SR501/human_induction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apex-yuan/STM32f103_WS2812/HEAD/Stm32f103c8_ws281x_spi-dma/Board/HC-SR501/human_induction.h -------------------------------------------------------------------------------- /Stm32f103c8_ws281x_spi-dma/Board/JSN-SR04T/jsn-sr04t.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apex-yuan/STM32f103_WS2812/HEAD/Stm32f103c8_ws281x_spi-dma/Board/JSN-SR04T/jsn-sr04t.c -------------------------------------------------------------------------------- /Stm32f103c8_ws281x_spi-dma/Board/JSN-SR04T/jsn-sr04t.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apex-yuan/STM32f103_WS2812/HEAD/Stm32f103c8_ws281x_spi-dma/Board/JSN-SR04T/jsn-sr04t.h -------------------------------------------------------------------------------- /Stm32f103c8_ws281x_spi-dma/Board/beep/beep.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apex-yuan/STM32f103_WS2812/HEAD/Stm32f103c8_ws281x_spi-dma/Board/beep/beep.c -------------------------------------------------------------------------------- /Stm32f103c8_ws281x_spi-dma/Board/beep/beep.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apex-yuan/STM32f103_WS2812/HEAD/Stm32f103c8_ws281x_spi-dma/Board/beep/beep.h -------------------------------------------------------------------------------- /Stm32f103c8_ws281x_spi-dma/Board/flash/flash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apex-yuan/STM32f103_WS2812/HEAD/Stm32f103c8_ws281x_spi-dma/Board/flash/flash.c -------------------------------------------------------------------------------- /Stm32f103c8_ws281x_spi-dma/Board/flash/flash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apex-yuan/STM32f103_WS2812/HEAD/Stm32f103c8_ws281x_spi-dma/Board/flash/flash.h -------------------------------------------------------------------------------- /Stm32f103c8_ws281x_spi-dma/Board/flash/新建文件夹/flash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apex-yuan/STM32f103_WS2812/HEAD/Stm32f103c8_ws281x_spi-dma/Board/flash/新建文件夹/flash.c -------------------------------------------------------------------------------- /Stm32f103c8_ws281x_spi-dma/Board/flash/新建文件夹/flash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apex-yuan/STM32f103_WS2812/HEAD/Stm32f103c8_ws281x_spi-dma/Board/flash/新建文件夹/flash.h -------------------------------------------------------------------------------- /Stm32f103c8_ws281x_spi-dma/Board/key/key.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apex-yuan/STM32f103_WS2812/HEAD/Stm32f103c8_ws281x_spi-dma/Board/key/key.c -------------------------------------------------------------------------------- /Stm32f103c8_ws281x_spi-dma/Board/key/key.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apex-yuan/STM32f103_WS2812/HEAD/Stm32f103c8_ws281x_spi-dma/Board/key/key.h -------------------------------------------------------------------------------- /Stm32f103c8_ws281x_spi-dma/Board/led/led.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apex-yuan/STM32f103_WS2812/HEAD/Stm32f103c8_ws281x_spi-dma/Board/led/led.c -------------------------------------------------------------------------------- /Stm32f103c8_ws281x_spi-dma/Board/led/led.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apex-yuan/STM32f103_WS2812/HEAD/Stm32f103c8_ws281x_spi-dma/Board/led/led.h -------------------------------------------------------------------------------- /Stm32f103c8_ws281x_spi-dma/Board/max6675/max6675.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apex-yuan/STM32f103_WS2812/HEAD/Stm32f103c8_ws281x_spi-dma/Board/max6675/max6675.c -------------------------------------------------------------------------------- /Stm32f103c8_ws281x_spi-dma/Board/max6675/max6675.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apex-yuan/STM32f103_WS2812/HEAD/Stm32f103c8_ws281x_spi-dma/Board/max6675/max6675.h -------------------------------------------------------------------------------- /Stm32f103c8_ws281x_spi-dma/Board/photoresistor/photoresistor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apex-yuan/STM32f103_WS2812/HEAD/Stm32f103c8_ws281x_spi-dma/Board/photoresistor/photoresistor.c -------------------------------------------------------------------------------- /Stm32f103c8_ws281x_spi-dma/Board/photoresistor/photoresistor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apex-yuan/STM32f103_WS2812/HEAD/Stm32f103c8_ws281x_spi-dma/Board/photoresistor/photoresistor.h -------------------------------------------------------------------------------- /Stm32f103c8_ws281x_spi-dma/Board/relay/relay.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apex-yuan/STM32f103_WS2812/HEAD/Stm32f103c8_ws281x_spi-dma/Board/relay/relay.c -------------------------------------------------------------------------------- /Stm32f103c8_ws281x_spi-dma/Board/relay/relay.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apex-yuan/STM32f103_WS2812/HEAD/Stm32f103c8_ws281x_spi-dma/Board/relay/relay.h -------------------------------------------------------------------------------- /Stm32f103c8_ws281x_spi-dma/Board/ws2812/ws2812.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apex-yuan/STM32f103_WS2812/HEAD/Stm32f103c8_ws281x_spi-dma/Board/ws2812/ws2812.c -------------------------------------------------------------------------------- /Stm32f103c8_ws281x_spi-dma/Board/ws2812/ws2812.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apex-yuan/STM32f103_WS2812/HEAD/Stm32f103c8_ws281x_spi-dma/Board/ws2812/ws2812.h -------------------------------------------------------------------------------- /Stm32f103c8_ws281x_spi-dma/Chip/chip/chip.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apex-yuan/STM32f103_WS2812/HEAD/Stm32f103c8_ws281x_spi-dma/Chip/chip/chip.c -------------------------------------------------------------------------------- /Stm32f103c8_ws281x_spi-dma/Chip/chip/chip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apex-yuan/STM32f103_WS2812/HEAD/Stm32f103c8_ws281x_spi-dma/Chip/chip/chip.h -------------------------------------------------------------------------------- /Stm32f103c8_ws281x_spi-dma/Chip/delay/delay.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apex-yuan/STM32f103_WS2812/HEAD/Stm32f103c8_ws281x_spi-dma/Chip/delay/delay.c -------------------------------------------------------------------------------- /Stm32f103c8_ws281x_spi-dma/Chip/delay/delay.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apex-yuan/STM32f103_WS2812/HEAD/Stm32f103c8_ws281x_spi-dma/Chip/delay/delay.h -------------------------------------------------------------------------------- /Stm32f103c8_ws281x_spi-dma/Chip/spi/spi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apex-yuan/STM32f103_WS2812/HEAD/Stm32f103c8_ws281x_spi-dma/Chip/spi/spi.c -------------------------------------------------------------------------------- /Stm32f103c8_ws281x_spi-dma/Chip/spi/spi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apex-yuan/STM32f103_WS2812/HEAD/Stm32f103c8_ws281x_spi-dma/Chip/spi/spi.h -------------------------------------------------------------------------------- /Stm32f103c8_ws281x_spi-dma/Chip/timer/timer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apex-yuan/STM32f103_WS2812/HEAD/Stm32f103c8_ws281x_spi-dma/Chip/timer/timer.c -------------------------------------------------------------------------------- /Stm32f103c8_ws281x_spi-dma/Chip/timer/timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apex-yuan/STM32f103_WS2812/HEAD/Stm32f103c8_ws281x_spi-dma/Chip/timer/timer.h -------------------------------------------------------------------------------- /Stm32f103c8_ws281x_spi-dma/Chip/usart/usart.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apex-yuan/STM32f103_WS2812/HEAD/Stm32f103c8_ws281x_spi-dma/Chip/usart/usart.c -------------------------------------------------------------------------------- /Stm32f103c8_ws281x_spi-dma/Chip/usart/usart.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apex-yuan/STM32f103_WS2812/HEAD/Stm32f103c8_ws281x_spi-dma/Chip/usart/usart.h -------------------------------------------------------------------------------- /Stm32f103c8_ws281x_spi-dma/Doc/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apex-yuan/STM32f103_WS2812/HEAD/Stm32f103c8_ws281x_spi-dma/Doc/readme.txt -------------------------------------------------------------------------------- /Stm32f103c8_ws281x_spi-dma/Libraries/CMSIS/core_cm3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apex-yuan/STM32f103_WS2812/HEAD/Stm32f103c8_ws281x_spi-dma/Libraries/CMSIS/core_cm3.c -------------------------------------------------------------------------------- /Stm32f103c8_ws281x_spi-dma/Libraries/CMSIS/core_cm3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apex-yuan/STM32f103_WS2812/HEAD/Stm32f103c8_ws281x_spi-dma/Libraries/CMSIS/core_cm3.h -------------------------------------------------------------------------------- /Stm32f103c8_ws281x_spi-dma/Libraries/CMSIS/startup/startup_stm32f10x_cl.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apex-yuan/STM32f103_WS2812/HEAD/Stm32f103c8_ws281x_spi-dma/Libraries/CMSIS/startup/startup_stm32f10x_cl.s -------------------------------------------------------------------------------- /Stm32f103c8_ws281x_spi-dma/Libraries/CMSIS/startup/startup_stm32f10x_hd.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apex-yuan/STM32f103_WS2812/HEAD/Stm32f103c8_ws281x_spi-dma/Libraries/CMSIS/startup/startup_stm32f10x_hd.s -------------------------------------------------------------------------------- /Stm32f103c8_ws281x_spi-dma/Libraries/CMSIS/startup/startup_stm32f10x_hd_vl.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apex-yuan/STM32f103_WS2812/HEAD/Stm32f103c8_ws281x_spi-dma/Libraries/CMSIS/startup/startup_stm32f10x_hd_vl.s -------------------------------------------------------------------------------- /Stm32f103c8_ws281x_spi-dma/Libraries/CMSIS/startup/startup_stm32f10x_ld.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apex-yuan/STM32f103_WS2812/HEAD/Stm32f103c8_ws281x_spi-dma/Libraries/CMSIS/startup/startup_stm32f10x_ld.s -------------------------------------------------------------------------------- /Stm32f103c8_ws281x_spi-dma/Libraries/CMSIS/startup/startup_stm32f10x_ld_vl.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apex-yuan/STM32f103_WS2812/HEAD/Stm32f103c8_ws281x_spi-dma/Libraries/CMSIS/startup/startup_stm32f10x_ld_vl.s -------------------------------------------------------------------------------- /Stm32f103c8_ws281x_spi-dma/Libraries/CMSIS/startup/startup_stm32f10x_md.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apex-yuan/STM32f103_WS2812/HEAD/Stm32f103c8_ws281x_spi-dma/Libraries/CMSIS/startup/startup_stm32f10x_md.s -------------------------------------------------------------------------------- /Stm32f103c8_ws281x_spi-dma/Libraries/CMSIS/startup/startup_stm32f10x_md_vl.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apex-yuan/STM32f103_WS2812/HEAD/Stm32f103c8_ws281x_spi-dma/Libraries/CMSIS/startup/startup_stm32f10x_md_vl.s -------------------------------------------------------------------------------- /Stm32f103c8_ws281x_spi-dma/Libraries/CMSIS/startup/startup_stm32f10x_xl.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apex-yuan/STM32f103_WS2812/HEAD/Stm32f103c8_ws281x_spi-dma/Libraries/CMSIS/startup/startup_stm32f10x_xl.s -------------------------------------------------------------------------------- /Stm32f103c8_ws281x_spi-dma/Libraries/CMSIS/stm32f10x.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apex-yuan/STM32f103_WS2812/HEAD/Stm32f103c8_ws281x_spi-dma/Libraries/CMSIS/stm32f10x.h -------------------------------------------------------------------------------- /Stm32f103c8_ws281x_spi-dma/Libraries/CMSIS/system_stm32f10x.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apex-yuan/STM32f103_WS2812/HEAD/Stm32f103c8_ws281x_spi-dma/Libraries/CMSIS/system_stm32f10x.c -------------------------------------------------------------------------------- /Stm32f103c8_ws281x_spi-dma/Libraries/CMSIS/system_stm32f10x.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apex-yuan/STM32f103_WS2812/HEAD/Stm32f103c8_ws281x_spi-dma/Libraries/CMSIS/system_stm32f10x.h -------------------------------------------------------------------------------- /Stm32f103c8_ws281x_spi-dma/Libraries/STM32F10x_StdPeriph_Driver/inc/misc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apex-yuan/STM32f103_WS2812/HEAD/Stm32f103c8_ws281x_spi-dma/Libraries/STM32F10x_StdPeriph_Driver/inc/misc.h -------------------------------------------------------------------------------- /Stm32f103c8_ws281x_spi-dma/Libraries/STM32F10x_StdPeriph_Driver/inc/stm32f10x_adc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apex-yuan/STM32f103_WS2812/HEAD/Stm32f103c8_ws281x_spi-dma/Libraries/STM32F10x_StdPeriph_Driver/inc/stm32f10x_adc.h -------------------------------------------------------------------------------- /Stm32f103c8_ws281x_spi-dma/Libraries/STM32F10x_StdPeriph_Driver/inc/stm32f10x_bkp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apex-yuan/STM32f103_WS2812/HEAD/Stm32f103c8_ws281x_spi-dma/Libraries/STM32F10x_StdPeriph_Driver/inc/stm32f10x_bkp.h -------------------------------------------------------------------------------- /Stm32f103c8_ws281x_spi-dma/Libraries/STM32F10x_StdPeriph_Driver/inc/stm32f10x_can.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apex-yuan/STM32f103_WS2812/HEAD/Stm32f103c8_ws281x_spi-dma/Libraries/STM32F10x_StdPeriph_Driver/inc/stm32f10x_can.h -------------------------------------------------------------------------------- /Stm32f103c8_ws281x_spi-dma/Libraries/STM32F10x_StdPeriph_Driver/inc/stm32f10x_cec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apex-yuan/STM32f103_WS2812/HEAD/Stm32f103c8_ws281x_spi-dma/Libraries/STM32F10x_StdPeriph_Driver/inc/stm32f10x_cec.h -------------------------------------------------------------------------------- /Stm32f103c8_ws281x_spi-dma/Libraries/STM32F10x_StdPeriph_Driver/inc/stm32f10x_crc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apex-yuan/STM32f103_WS2812/HEAD/Stm32f103c8_ws281x_spi-dma/Libraries/STM32F10x_StdPeriph_Driver/inc/stm32f10x_crc.h -------------------------------------------------------------------------------- /Stm32f103c8_ws281x_spi-dma/Libraries/STM32F10x_StdPeriph_Driver/inc/stm32f10x_dac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apex-yuan/STM32f103_WS2812/HEAD/Stm32f103c8_ws281x_spi-dma/Libraries/STM32F10x_StdPeriph_Driver/inc/stm32f10x_dac.h -------------------------------------------------------------------------------- /Stm32f103c8_ws281x_spi-dma/Libraries/STM32F10x_StdPeriph_Driver/inc/stm32f10x_dbgmcu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apex-yuan/STM32f103_WS2812/HEAD/Stm32f103c8_ws281x_spi-dma/Libraries/STM32F10x_StdPeriph_Driver/inc/stm32f10x_dbgmcu.h -------------------------------------------------------------------------------- /Stm32f103c8_ws281x_spi-dma/Libraries/STM32F10x_StdPeriph_Driver/inc/stm32f10x_dma.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apex-yuan/STM32f103_WS2812/HEAD/Stm32f103c8_ws281x_spi-dma/Libraries/STM32F10x_StdPeriph_Driver/inc/stm32f10x_dma.h -------------------------------------------------------------------------------- /Stm32f103c8_ws281x_spi-dma/Libraries/STM32F10x_StdPeriph_Driver/inc/stm32f10x_exti.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apex-yuan/STM32f103_WS2812/HEAD/Stm32f103c8_ws281x_spi-dma/Libraries/STM32F10x_StdPeriph_Driver/inc/stm32f10x_exti.h -------------------------------------------------------------------------------- /Stm32f103c8_ws281x_spi-dma/Libraries/STM32F10x_StdPeriph_Driver/inc/stm32f10x_flash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apex-yuan/STM32f103_WS2812/HEAD/Stm32f103c8_ws281x_spi-dma/Libraries/STM32F10x_StdPeriph_Driver/inc/stm32f10x_flash.h -------------------------------------------------------------------------------- /Stm32f103c8_ws281x_spi-dma/Libraries/STM32F10x_StdPeriph_Driver/inc/stm32f10x_fsmc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apex-yuan/STM32f103_WS2812/HEAD/Stm32f103c8_ws281x_spi-dma/Libraries/STM32F10x_StdPeriph_Driver/inc/stm32f10x_fsmc.h -------------------------------------------------------------------------------- /Stm32f103c8_ws281x_spi-dma/Libraries/STM32F10x_StdPeriph_Driver/inc/stm32f10x_gpio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apex-yuan/STM32f103_WS2812/HEAD/Stm32f103c8_ws281x_spi-dma/Libraries/STM32F10x_StdPeriph_Driver/inc/stm32f10x_gpio.h -------------------------------------------------------------------------------- /Stm32f103c8_ws281x_spi-dma/Libraries/STM32F10x_StdPeriph_Driver/inc/stm32f10x_i2c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apex-yuan/STM32f103_WS2812/HEAD/Stm32f103c8_ws281x_spi-dma/Libraries/STM32F10x_StdPeriph_Driver/inc/stm32f10x_i2c.h -------------------------------------------------------------------------------- /Stm32f103c8_ws281x_spi-dma/Libraries/STM32F10x_StdPeriph_Driver/inc/stm32f10x_iwdg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apex-yuan/STM32f103_WS2812/HEAD/Stm32f103c8_ws281x_spi-dma/Libraries/STM32F10x_StdPeriph_Driver/inc/stm32f10x_iwdg.h -------------------------------------------------------------------------------- /Stm32f103c8_ws281x_spi-dma/Libraries/STM32F10x_StdPeriph_Driver/inc/stm32f10x_pwr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apex-yuan/STM32f103_WS2812/HEAD/Stm32f103c8_ws281x_spi-dma/Libraries/STM32F10x_StdPeriph_Driver/inc/stm32f10x_pwr.h -------------------------------------------------------------------------------- /Stm32f103c8_ws281x_spi-dma/Libraries/STM32F10x_StdPeriph_Driver/inc/stm32f10x_rcc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apex-yuan/STM32f103_WS2812/HEAD/Stm32f103c8_ws281x_spi-dma/Libraries/STM32F10x_StdPeriph_Driver/inc/stm32f10x_rcc.h -------------------------------------------------------------------------------- /Stm32f103c8_ws281x_spi-dma/Libraries/STM32F10x_StdPeriph_Driver/inc/stm32f10x_rtc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apex-yuan/STM32f103_WS2812/HEAD/Stm32f103c8_ws281x_spi-dma/Libraries/STM32F10x_StdPeriph_Driver/inc/stm32f10x_rtc.h -------------------------------------------------------------------------------- /Stm32f103c8_ws281x_spi-dma/Libraries/STM32F10x_StdPeriph_Driver/inc/stm32f10x_sdio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apex-yuan/STM32f103_WS2812/HEAD/Stm32f103c8_ws281x_spi-dma/Libraries/STM32F10x_StdPeriph_Driver/inc/stm32f10x_sdio.h -------------------------------------------------------------------------------- /Stm32f103c8_ws281x_spi-dma/Libraries/STM32F10x_StdPeriph_Driver/inc/stm32f10x_spi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apex-yuan/STM32f103_WS2812/HEAD/Stm32f103c8_ws281x_spi-dma/Libraries/STM32F10x_StdPeriph_Driver/inc/stm32f10x_spi.h -------------------------------------------------------------------------------- /Stm32f103c8_ws281x_spi-dma/Libraries/STM32F10x_StdPeriph_Driver/inc/stm32f10x_tim.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apex-yuan/STM32f103_WS2812/HEAD/Stm32f103c8_ws281x_spi-dma/Libraries/STM32F10x_StdPeriph_Driver/inc/stm32f10x_tim.h -------------------------------------------------------------------------------- /Stm32f103c8_ws281x_spi-dma/Libraries/STM32F10x_StdPeriph_Driver/inc/stm32f10x_usart.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apex-yuan/STM32f103_WS2812/HEAD/Stm32f103c8_ws281x_spi-dma/Libraries/STM32F10x_StdPeriph_Driver/inc/stm32f10x_usart.h -------------------------------------------------------------------------------- /Stm32f103c8_ws281x_spi-dma/Libraries/STM32F10x_StdPeriph_Driver/inc/stm32f10x_wwdg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apex-yuan/STM32f103_WS2812/HEAD/Stm32f103c8_ws281x_spi-dma/Libraries/STM32F10x_StdPeriph_Driver/inc/stm32f10x_wwdg.h -------------------------------------------------------------------------------- /Stm32f103c8_ws281x_spi-dma/Libraries/STM32F10x_StdPeriph_Driver/src/misc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apex-yuan/STM32f103_WS2812/HEAD/Stm32f103c8_ws281x_spi-dma/Libraries/STM32F10x_StdPeriph_Driver/src/misc.c -------------------------------------------------------------------------------- /Stm32f103c8_ws281x_spi-dma/Libraries/STM32F10x_StdPeriph_Driver/src/stm32f10x_adc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apex-yuan/STM32f103_WS2812/HEAD/Stm32f103c8_ws281x_spi-dma/Libraries/STM32F10x_StdPeriph_Driver/src/stm32f10x_adc.c -------------------------------------------------------------------------------- /Stm32f103c8_ws281x_spi-dma/Libraries/STM32F10x_StdPeriph_Driver/src/stm32f10x_bkp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apex-yuan/STM32f103_WS2812/HEAD/Stm32f103c8_ws281x_spi-dma/Libraries/STM32F10x_StdPeriph_Driver/src/stm32f10x_bkp.c -------------------------------------------------------------------------------- /Stm32f103c8_ws281x_spi-dma/Libraries/STM32F10x_StdPeriph_Driver/src/stm32f10x_can.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apex-yuan/STM32f103_WS2812/HEAD/Stm32f103c8_ws281x_spi-dma/Libraries/STM32F10x_StdPeriph_Driver/src/stm32f10x_can.c -------------------------------------------------------------------------------- /Stm32f103c8_ws281x_spi-dma/Libraries/STM32F10x_StdPeriph_Driver/src/stm32f10x_cec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apex-yuan/STM32f103_WS2812/HEAD/Stm32f103c8_ws281x_spi-dma/Libraries/STM32F10x_StdPeriph_Driver/src/stm32f10x_cec.c -------------------------------------------------------------------------------- /Stm32f103c8_ws281x_spi-dma/Libraries/STM32F10x_StdPeriph_Driver/src/stm32f10x_crc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apex-yuan/STM32f103_WS2812/HEAD/Stm32f103c8_ws281x_spi-dma/Libraries/STM32F10x_StdPeriph_Driver/src/stm32f10x_crc.c -------------------------------------------------------------------------------- /Stm32f103c8_ws281x_spi-dma/Libraries/STM32F10x_StdPeriph_Driver/src/stm32f10x_dac.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apex-yuan/STM32f103_WS2812/HEAD/Stm32f103c8_ws281x_spi-dma/Libraries/STM32F10x_StdPeriph_Driver/src/stm32f10x_dac.c -------------------------------------------------------------------------------- /Stm32f103c8_ws281x_spi-dma/Libraries/STM32F10x_StdPeriph_Driver/src/stm32f10x_dbgmcu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apex-yuan/STM32f103_WS2812/HEAD/Stm32f103c8_ws281x_spi-dma/Libraries/STM32F10x_StdPeriph_Driver/src/stm32f10x_dbgmcu.c -------------------------------------------------------------------------------- /Stm32f103c8_ws281x_spi-dma/Libraries/STM32F10x_StdPeriph_Driver/src/stm32f10x_dma.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apex-yuan/STM32f103_WS2812/HEAD/Stm32f103c8_ws281x_spi-dma/Libraries/STM32F10x_StdPeriph_Driver/src/stm32f10x_dma.c -------------------------------------------------------------------------------- /Stm32f103c8_ws281x_spi-dma/Libraries/STM32F10x_StdPeriph_Driver/src/stm32f10x_exti.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apex-yuan/STM32f103_WS2812/HEAD/Stm32f103c8_ws281x_spi-dma/Libraries/STM32F10x_StdPeriph_Driver/src/stm32f10x_exti.c -------------------------------------------------------------------------------- /Stm32f103c8_ws281x_spi-dma/Libraries/STM32F10x_StdPeriph_Driver/src/stm32f10x_flash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apex-yuan/STM32f103_WS2812/HEAD/Stm32f103c8_ws281x_spi-dma/Libraries/STM32F10x_StdPeriph_Driver/src/stm32f10x_flash.c -------------------------------------------------------------------------------- /Stm32f103c8_ws281x_spi-dma/Libraries/STM32F10x_StdPeriph_Driver/src/stm32f10x_fsmc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apex-yuan/STM32f103_WS2812/HEAD/Stm32f103c8_ws281x_spi-dma/Libraries/STM32F10x_StdPeriph_Driver/src/stm32f10x_fsmc.c -------------------------------------------------------------------------------- /Stm32f103c8_ws281x_spi-dma/Libraries/STM32F10x_StdPeriph_Driver/src/stm32f10x_gpio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apex-yuan/STM32f103_WS2812/HEAD/Stm32f103c8_ws281x_spi-dma/Libraries/STM32F10x_StdPeriph_Driver/src/stm32f10x_gpio.c -------------------------------------------------------------------------------- /Stm32f103c8_ws281x_spi-dma/Libraries/STM32F10x_StdPeriph_Driver/src/stm32f10x_i2c.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apex-yuan/STM32f103_WS2812/HEAD/Stm32f103c8_ws281x_spi-dma/Libraries/STM32F10x_StdPeriph_Driver/src/stm32f10x_i2c.c -------------------------------------------------------------------------------- /Stm32f103c8_ws281x_spi-dma/Libraries/STM32F10x_StdPeriph_Driver/src/stm32f10x_iwdg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apex-yuan/STM32f103_WS2812/HEAD/Stm32f103c8_ws281x_spi-dma/Libraries/STM32F10x_StdPeriph_Driver/src/stm32f10x_iwdg.c -------------------------------------------------------------------------------- /Stm32f103c8_ws281x_spi-dma/Libraries/STM32F10x_StdPeriph_Driver/src/stm32f10x_pwr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apex-yuan/STM32f103_WS2812/HEAD/Stm32f103c8_ws281x_spi-dma/Libraries/STM32F10x_StdPeriph_Driver/src/stm32f10x_pwr.c -------------------------------------------------------------------------------- /Stm32f103c8_ws281x_spi-dma/Libraries/STM32F10x_StdPeriph_Driver/src/stm32f10x_rcc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apex-yuan/STM32f103_WS2812/HEAD/Stm32f103c8_ws281x_spi-dma/Libraries/STM32F10x_StdPeriph_Driver/src/stm32f10x_rcc.c -------------------------------------------------------------------------------- /Stm32f103c8_ws281x_spi-dma/Libraries/STM32F10x_StdPeriph_Driver/src/stm32f10x_rtc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apex-yuan/STM32f103_WS2812/HEAD/Stm32f103c8_ws281x_spi-dma/Libraries/STM32F10x_StdPeriph_Driver/src/stm32f10x_rtc.c -------------------------------------------------------------------------------- /Stm32f103c8_ws281x_spi-dma/Libraries/STM32F10x_StdPeriph_Driver/src/stm32f10x_sdio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apex-yuan/STM32f103_WS2812/HEAD/Stm32f103c8_ws281x_spi-dma/Libraries/STM32F10x_StdPeriph_Driver/src/stm32f10x_sdio.c -------------------------------------------------------------------------------- /Stm32f103c8_ws281x_spi-dma/Libraries/STM32F10x_StdPeriph_Driver/src/stm32f10x_spi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apex-yuan/STM32f103_WS2812/HEAD/Stm32f103c8_ws281x_spi-dma/Libraries/STM32F10x_StdPeriph_Driver/src/stm32f10x_spi.c -------------------------------------------------------------------------------- /Stm32f103c8_ws281x_spi-dma/Libraries/STM32F10x_StdPeriph_Driver/src/stm32f10x_tim.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apex-yuan/STM32f103_WS2812/HEAD/Stm32f103c8_ws281x_spi-dma/Libraries/STM32F10x_StdPeriph_Driver/src/stm32f10x_tim.c -------------------------------------------------------------------------------- /Stm32f103c8_ws281x_spi-dma/Libraries/STM32F10x_StdPeriph_Driver/src/stm32f10x_usart.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apex-yuan/STM32f103_WS2812/HEAD/Stm32f103c8_ws281x_spi-dma/Libraries/STM32F10x_StdPeriph_Driver/src/stm32f10x_usart.c -------------------------------------------------------------------------------- /Stm32f103c8_ws281x_spi-dma/Libraries/STM32F10x_StdPeriph_Driver/src/stm32f10x_wwdg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apex-yuan/STM32f103_WS2812/HEAD/Stm32f103c8_ws281x_spi-dma/Libraries/STM32F10x_StdPeriph_Driver/src/stm32f10x_wwdg.c -------------------------------------------------------------------------------- /Stm32f103c8_ws281x_spi-dma/Project/DebugConfig/Target_1_STM32F103C8.dbgconf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apex-yuan/STM32f103_WS2812/HEAD/Stm32f103c8_ws281x_spi-dma/Project/DebugConfig/Target_1_STM32F103C8.dbgconf -------------------------------------------------------------------------------- /Stm32f103c8_ws281x_spi-dma/Project/JLinkSettings.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apex-yuan/STM32f103_WS2812/HEAD/Stm32f103c8_ws281x_spi-dma/Project/JLinkSettings.ini -------------------------------------------------------------------------------- /Stm32f103c8_ws281x_spi-dma/Project/Objects/stm32c8t6_template.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apex-yuan/STM32f103_WS2812/HEAD/Stm32f103c8_ws281x_spi-dma/Project/Objects/stm32c8t6_template.hex -------------------------------------------------------------------------------- /Stm32f103c8_ws281x_spi-dma/Project/stm32c8t6_template.uvguix.xiaoyuan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apex-yuan/STM32f103_WS2812/HEAD/Stm32f103c8_ws281x_spi-dma/Project/stm32c8t6_template.uvguix.xiaoyuan -------------------------------------------------------------------------------- /Stm32f103c8_ws281x_spi-dma/Project/stm32c8t6_template.uvoptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apex-yuan/STM32f103_WS2812/HEAD/Stm32f103c8_ws281x_spi-dma/Project/stm32c8t6_template.uvoptx -------------------------------------------------------------------------------- /Stm32f103c8_ws281x_spi-dma/Project/stm32c8t6_template.uvprojx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apex-yuan/STM32f103_WS2812/HEAD/Stm32f103c8_ws281x_spi-dma/Project/stm32c8t6_template.uvprojx -------------------------------------------------------------------------------- /Stm32f103c8_ws281x_spi-dma/User/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apex-yuan/STM32f103_WS2812/HEAD/Stm32f103c8_ws281x_spi-dma/User/main.c -------------------------------------------------------------------------------- /Stm32f103c8_ws281x_spi-dma/User/stm32f10x_conf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apex-yuan/STM32f103_WS2812/HEAD/Stm32f103c8_ws281x_spi-dma/User/stm32f10x_conf.h -------------------------------------------------------------------------------- /Stm32f103c8_ws281x_spi-dma/User/stm32f10x_it.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apex-yuan/STM32f103_WS2812/HEAD/Stm32f103c8_ws281x_spi-dma/User/stm32f10x_it.c -------------------------------------------------------------------------------- /Stm32f103c8_ws281x_spi-dma/User/stm32f10x_it.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apex-yuan/STM32f103_WS2812/HEAD/Stm32f103c8_ws281x_spi-dma/User/stm32f10x_it.h -------------------------------------------------------------------------------- /Stm32f103c8_ws281x_spi-dma/keilkilll.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apex-yuan/STM32f103_WS2812/HEAD/Stm32f103c8_ws281x_spi-dma/keilkilll.bat --------------------------------------------------------------------------------