├── .gitattributes ├── .gitignore ├── DiscreteFile ├── SYSTEM │ ├── STM32F10xR.LIB │ ├── delay │ │ ├── delay.c │ │ └── delay.h │ ├── sys │ │ ├── cortexm3_macro.h │ │ ├── stm32f10x_adc.h │ │ ├── stm32f10x_bkp.h │ │ ├── stm32f10x_can.h │ │ ├── stm32f10x_conf.h │ │ ├── stm32f10x_dma.h │ │ ├── stm32f10x_exti.h │ │ ├── stm32f10x_flash.h │ │ ├── stm32f10x_gpio.h │ │ ├── stm32f10x_i2c.h │ │ ├── stm32f10x_it.h │ │ ├── stm32f10x_iwdg.h │ │ ├── stm32f10x_lib.h │ │ ├── stm32f10x_map.h │ │ ├── stm32f10x_nvic.h │ │ ├── stm32f10x_pwr.h │ │ ├── stm32f10x_rcc.h │ │ ├── stm32f10x_rtc.h │ │ ├── stm32f10x_spi.h │ │ ├── stm32f10x_systick.h │ │ ├── stm32f10x_tim.h │ │ ├── stm32f10x_tim1.h │ │ ├── stm32f10x_type.h │ │ ├── stm32f10x_usart.h │ │ ├── stm32f10x_wwdg.h │ │ ├── sys.c │ │ └── sys.h │ └── usart │ │ ├── usart.c │ │ └── usart.h ├── USB │ ├── USB_CH341.H │ ├── USB_CH341.c │ ├── hw_config.c │ ├── hw_config.h │ ├── platform_config.h │ ├── usb_conf.h │ ├── usb_core.c │ ├── usb_core.h │ ├── usb_def.h │ ├── usb_desc.c │ ├── usb_desc.h │ ├── usb_endp.c │ ├── usb_init.c │ ├── usb_init.h │ ├── usb_int.c │ ├── usb_int.h │ ├── usb_istr.c │ ├── usb_istr.h │ ├── usb_lib.h │ ├── usb_mem.c │ ├── usb_mem.h │ ├── usb_prop.c │ ├── usb_prop.h │ ├── usb_pwr.c │ ├── usb_pwr.h │ ├── usb_regs.c │ ├── usb_regs.h │ └── usb_type.h ├── USER │ ├── ExtDll.iex │ ├── STM32F10x.s │ ├── TEST.plg │ ├── TEST.uvopt │ ├── TEST.uvproj │ └── test.c └── keilkilll.bat ├── README.md ├── SingleFile ├── STM32F10xlib │ ├── STM32F10xR.LIB │ ├── cortexm3_macro.h │ ├── stm32f10x_conf.h │ ├── stm32f10x_gpio.h │ ├── stm32f10x_map.h │ ├── stm32f10x_nvic.h │ ├── stm32f10x_rcc.h │ └── stm32f10x_type.h ├── SYSTEM │ ├── delay │ │ ├── delay.c │ │ └── delay.h │ ├── sys │ │ ├── cortexm3_macro.h │ │ ├── stm32f10x_adc.h │ │ ├── stm32f10x_bkp.h │ │ ├── stm32f10x_can.h │ │ ├── stm32f10x_conf.h │ │ ├── stm32f10x_dma.h │ │ ├── stm32f10x_exti.h │ │ ├── stm32f10x_flash.h │ │ ├── stm32f10x_gpio.h │ │ ├── stm32f10x_i2c.h │ │ ├── stm32f10x_it.h │ │ ├── stm32f10x_iwdg.h │ │ ├── stm32f10x_lib.h │ │ ├── stm32f10x_map.h │ │ ├── stm32f10x_nvic.h │ │ ├── stm32f10x_pwr.h │ │ ├── stm32f10x_rcc.h │ │ ├── stm32f10x_rtc.h │ │ ├── stm32f10x_spi.h │ │ ├── stm32f10x_systick.h │ │ ├── stm32f10x_tim.h │ │ ├── stm32f10x_tim1.h │ │ ├── stm32f10x_type.h │ │ ├── stm32f10x_usart.h │ │ ├── stm32f10x_wwdg.h │ │ ├── sys.c │ │ └── sys.h │ └── usart │ │ ├── usart.c │ │ └── usart.h ├── USB │ ├── USB_CH341.H │ ├── USB_CH341.c │ └── usb_lib.h ├── USER │ ├── STM32F10x.s │ ├── TEST.uvopt │ ├── TEST.uvproj │ ├── stm32f10x_conf.h │ └── test.c └── keilkilll.bat └── diagram.jpg /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackmiaool/STM32_USB_CH341/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackmiaool/STM32_USB_CH341/HEAD/.gitignore -------------------------------------------------------------------------------- /DiscreteFile/SYSTEM/STM32F10xR.LIB: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackmiaool/STM32_USB_CH341/HEAD/DiscreteFile/SYSTEM/STM32F10xR.LIB -------------------------------------------------------------------------------- /DiscreteFile/SYSTEM/delay/delay.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackmiaool/STM32_USB_CH341/HEAD/DiscreteFile/SYSTEM/delay/delay.c -------------------------------------------------------------------------------- /DiscreteFile/SYSTEM/delay/delay.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackmiaool/STM32_USB_CH341/HEAD/DiscreteFile/SYSTEM/delay/delay.h -------------------------------------------------------------------------------- /DiscreteFile/SYSTEM/sys/cortexm3_macro.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackmiaool/STM32_USB_CH341/HEAD/DiscreteFile/SYSTEM/sys/cortexm3_macro.h -------------------------------------------------------------------------------- /DiscreteFile/SYSTEM/sys/stm32f10x_adc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackmiaool/STM32_USB_CH341/HEAD/DiscreteFile/SYSTEM/sys/stm32f10x_adc.h -------------------------------------------------------------------------------- /DiscreteFile/SYSTEM/sys/stm32f10x_bkp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackmiaool/STM32_USB_CH341/HEAD/DiscreteFile/SYSTEM/sys/stm32f10x_bkp.h -------------------------------------------------------------------------------- /DiscreteFile/SYSTEM/sys/stm32f10x_can.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackmiaool/STM32_USB_CH341/HEAD/DiscreteFile/SYSTEM/sys/stm32f10x_can.h -------------------------------------------------------------------------------- /DiscreteFile/SYSTEM/sys/stm32f10x_conf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackmiaool/STM32_USB_CH341/HEAD/DiscreteFile/SYSTEM/sys/stm32f10x_conf.h -------------------------------------------------------------------------------- /DiscreteFile/SYSTEM/sys/stm32f10x_dma.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackmiaool/STM32_USB_CH341/HEAD/DiscreteFile/SYSTEM/sys/stm32f10x_dma.h -------------------------------------------------------------------------------- /DiscreteFile/SYSTEM/sys/stm32f10x_exti.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackmiaool/STM32_USB_CH341/HEAD/DiscreteFile/SYSTEM/sys/stm32f10x_exti.h -------------------------------------------------------------------------------- /DiscreteFile/SYSTEM/sys/stm32f10x_flash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackmiaool/STM32_USB_CH341/HEAD/DiscreteFile/SYSTEM/sys/stm32f10x_flash.h -------------------------------------------------------------------------------- /DiscreteFile/SYSTEM/sys/stm32f10x_gpio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackmiaool/STM32_USB_CH341/HEAD/DiscreteFile/SYSTEM/sys/stm32f10x_gpio.h -------------------------------------------------------------------------------- /DiscreteFile/SYSTEM/sys/stm32f10x_i2c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackmiaool/STM32_USB_CH341/HEAD/DiscreteFile/SYSTEM/sys/stm32f10x_i2c.h -------------------------------------------------------------------------------- /DiscreteFile/SYSTEM/sys/stm32f10x_it.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackmiaool/STM32_USB_CH341/HEAD/DiscreteFile/SYSTEM/sys/stm32f10x_it.h -------------------------------------------------------------------------------- /DiscreteFile/SYSTEM/sys/stm32f10x_iwdg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackmiaool/STM32_USB_CH341/HEAD/DiscreteFile/SYSTEM/sys/stm32f10x_iwdg.h -------------------------------------------------------------------------------- /DiscreteFile/SYSTEM/sys/stm32f10x_lib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackmiaool/STM32_USB_CH341/HEAD/DiscreteFile/SYSTEM/sys/stm32f10x_lib.h -------------------------------------------------------------------------------- /DiscreteFile/SYSTEM/sys/stm32f10x_map.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackmiaool/STM32_USB_CH341/HEAD/DiscreteFile/SYSTEM/sys/stm32f10x_map.h -------------------------------------------------------------------------------- /DiscreteFile/SYSTEM/sys/stm32f10x_nvic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackmiaool/STM32_USB_CH341/HEAD/DiscreteFile/SYSTEM/sys/stm32f10x_nvic.h -------------------------------------------------------------------------------- /DiscreteFile/SYSTEM/sys/stm32f10x_pwr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackmiaool/STM32_USB_CH341/HEAD/DiscreteFile/SYSTEM/sys/stm32f10x_pwr.h -------------------------------------------------------------------------------- /DiscreteFile/SYSTEM/sys/stm32f10x_rcc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackmiaool/STM32_USB_CH341/HEAD/DiscreteFile/SYSTEM/sys/stm32f10x_rcc.h -------------------------------------------------------------------------------- /DiscreteFile/SYSTEM/sys/stm32f10x_rtc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackmiaool/STM32_USB_CH341/HEAD/DiscreteFile/SYSTEM/sys/stm32f10x_rtc.h -------------------------------------------------------------------------------- /DiscreteFile/SYSTEM/sys/stm32f10x_spi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackmiaool/STM32_USB_CH341/HEAD/DiscreteFile/SYSTEM/sys/stm32f10x_spi.h -------------------------------------------------------------------------------- /DiscreteFile/SYSTEM/sys/stm32f10x_systick.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackmiaool/STM32_USB_CH341/HEAD/DiscreteFile/SYSTEM/sys/stm32f10x_systick.h -------------------------------------------------------------------------------- /DiscreteFile/SYSTEM/sys/stm32f10x_tim.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackmiaool/STM32_USB_CH341/HEAD/DiscreteFile/SYSTEM/sys/stm32f10x_tim.h -------------------------------------------------------------------------------- /DiscreteFile/SYSTEM/sys/stm32f10x_tim1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackmiaool/STM32_USB_CH341/HEAD/DiscreteFile/SYSTEM/sys/stm32f10x_tim1.h -------------------------------------------------------------------------------- /DiscreteFile/SYSTEM/sys/stm32f10x_type.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackmiaool/STM32_USB_CH341/HEAD/DiscreteFile/SYSTEM/sys/stm32f10x_type.h -------------------------------------------------------------------------------- /DiscreteFile/SYSTEM/sys/stm32f10x_usart.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackmiaool/STM32_USB_CH341/HEAD/DiscreteFile/SYSTEM/sys/stm32f10x_usart.h -------------------------------------------------------------------------------- /DiscreteFile/SYSTEM/sys/stm32f10x_wwdg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackmiaool/STM32_USB_CH341/HEAD/DiscreteFile/SYSTEM/sys/stm32f10x_wwdg.h -------------------------------------------------------------------------------- /DiscreteFile/SYSTEM/sys/sys.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackmiaool/STM32_USB_CH341/HEAD/DiscreteFile/SYSTEM/sys/sys.c -------------------------------------------------------------------------------- /DiscreteFile/SYSTEM/sys/sys.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackmiaool/STM32_USB_CH341/HEAD/DiscreteFile/SYSTEM/sys/sys.h -------------------------------------------------------------------------------- /DiscreteFile/SYSTEM/usart/usart.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackmiaool/STM32_USB_CH341/HEAD/DiscreteFile/SYSTEM/usart/usart.c -------------------------------------------------------------------------------- /DiscreteFile/SYSTEM/usart/usart.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackmiaool/STM32_USB_CH341/HEAD/DiscreteFile/SYSTEM/usart/usart.h -------------------------------------------------------------------------------- /DiscreteFile/USB/USB_CH341.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackmiaool/STM32_USB_CH341/HEAD/DiscreteFile/USB/USB_CH341.H -------------------------------------------------------------------------------- /DiscreteFile/USB/USB_CH341.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackmiaool/STM32_USB_CH341/HEAD/DiscreteFile/USB/USB_CH341.c -------------------------------------------------------------------------------- /DiscreteFile/USB/hw_config.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackmiaool/STM32_USB_CH341/HEAD/DiscreteFile/USB/hw_config.c -------------------------------------------------------------------------------- /DiscreteFile/USB/hw_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackmiaool/STM32_USB_CH341/HEAD/DiscreteFile/USB/hw_config.h -------------------------------------------------------------------------------- /DiscreteFile/USB/platform_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackmiaool/STM32_USB_CH341/HEAD/DiscreteFile/USB/platform_config.h -------------------------------------------------------------------------------- /DiscreteFile/USB/usb_conf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackmiaool/STM32_USB_CH341/HEAD/DiscreteFile/USB/usb_conf.h -------------------------------------------------------------------------------- /DiscreteFile/USB/usb_core.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackmiaool/STM32_USB_CH341/HEAD/DiscreteFile/USB/usb_core.c -------------------------------------------------------------------------------- /DiscreteFile/USB/usb_core.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackmiaool/STM32_USB_CH341/HEAD/DiscreteFile/USB/usb_core.h -------------------------------------------------------------------------------- /DiscreteFile/USB/usb_def.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackmiaool/STM32_USB_CH341/HEAD/DiscreteFile/USB/usb_def.h -------------------------------------------------------------------------------- /DiscreteFile/USB/usb_desc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackmiaool/STM32_USB_CH341/HEAD/DiscreteFile/USB/usb_desc.c -------------------------------------------------------------------------------- /DiscreteFile/USB/usb_desc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackmiaool/STM32_USB_CH341/HEAD/DiscreteFile/USB/usb_desc.h -------------------------------------------------------------------------------- /DiscreteFile/USB/usb_endp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackmiaool/STM32_USB_CH341/HEAD/DiscreteFile/USB/usb_endp.c -------------------------------------------------------------------------------- /DiscreteFile/USB/usb_init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackmiaool/STM32_USB_CH341/HEAD/DiscreteFile/USB/usb_init.c -------------------------------------------------------------------------------- /DiscreteFile/USB/usb_init.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackmiaool/STM32_USB_CH341/HEAD/DiscreteFile/USB/usb_init.h -------------------------------------------------------------------------------- /DiscreteFile/USB/usb_int.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackmiaool/STM32_USB_CH341/HEAD/DiscreteFile/USB/usb_int.c -------------------------------------------------------------------------------- /DiscreteFile/USB/usb_int.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackmiaool/STM32_USB_CH341/HEAD/DiscreteFile/USB/usb_int.h -------------------------------------------------------------------------------- /DiscreteFile/USB/usb_istr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackmiaool/STM32_USB_CH341/HEAD/DiscreteFile/USB/usb_istr.c -------------------------------------------------------------------------------- /DiscreteFile/USB/usb_istr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackmiaool/STM32_USB_CH341/HEAD/DiscreteFile/USB/usb_istr.h -------------------------------------------------------------------------------- /DiscreteFile/USB/usb_lib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackmiaool/STM32_USB_CH341/HEAD/DiscreteFile/USB/usb_lib.h -------------------------------------------------------------------------------- /DiscreteFile/USB/usb_mem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackmiaool/STM32_USB_CH341/HEAD/DiscreteFile/USB/usb_mem.c -------------------------------------------------------------------------------- /DiscreteFile/USB/usb_mem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackmiaool/STM32_USB_CH341/HEAD/DiscreteFile/USB/usb_mem.h -------------------------------------------------------------------------------- /DiscreteFile/USB/usb_prop.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackmiaool/STM32_USB_CH341/HEAD/DiscreteFile/USB/usb_prop.c -------------------------------------------------------------------------------- /DiscreteFile/USB/usb_prop.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackmiaool/STM32_USB_CH341/HEAD/DiscreteFile/USB/usb_prop.h -------------------------------------------------------------------------------- /DiscreteFile/USB/usb_pwr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackmiaool/STM32_USB_CH341/HEAD/DiscreteFile/USB/usb_pwr.c -------------------------------------------------------------------------------- /DiscreteFile/USB/usb_pwr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackmiaool/STM32_USB_CH341/HEAD/DiscreteFile/USB/usb_pwr.h -------------------------------------------------------------------------------- /DiscreteFile/USB/usb_regs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackmiaool/STM32_USB_CH341/HEAD/DiscreteFile/USB/usb_regs.c -------------------------------------------------------------------------------- /DiscreteFile/USB/usb_regs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackmiaool/STM32_USB_CH341/HEAD/DiscreteFile/USB/usb_regs.h -------------------------------------------------------------------------------- /DiscreteFile/USB/usb_type.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackmiaool/STM32_USB_CH341/HEAD/DiscreteFile/USB/usb_type.h -------------------------------------------------------------------------------- /DiscreteFile/USER/ExtDll.iex: -------------------------------------------------------------------------------- 1 | [EXTDLL] 2 | Count=0 3 | -------------------------------------------------------------------------------- /DiscreteFile/USER/STM32F10x.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackmiaool/STM32_USB_CH341/HEAD/DiscreteFile/USER/STM32F10x.s -------------------------------------------------------------------------------- /DiscreteFile/USER/TEST.plg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackmiaool/STM32_USB_CH341/HEAD/DiscreteFile/USER/TEST.plg -------------------------------------------------------------------------------- /DiscreteFile/USER/TEST.uvopt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackmiaool/STM32_USB_CH341/HEAD/DiscreteFile/USER/TEST.uvopt -------------------------------------------------------------------------------- /DiscreteFile/USER/TEST.uvproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackmiaool/STM32_USB_CH341/HEAD/DiscreteFile/USER/TEST.uvproj -------------------------------------------------------------------------------- /DiscreteFile/USER/test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackmiaool/STM32_USB_CH341/HEAD/DiscreteFile/USER/test.c -------------------------------------------------------------------------------- /DiscreteFile/keilkilll.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackmiaool/STM32_USB_CH341/HEAD/DiscreteFile/keilkilll.bat -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackmiaool/STM32_USB_CH341/HEAD/README.md -------------------------------------------------------------------------------- /SingleFile/STM32F10xlib/STM32F10xR.LIB: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackmiaool/STM32_USB_CH341/HEAD/SingleFile/STM32F10xlib/STM32F10xR.LIB -------------------------------------------------------------------------------- /SingleFile/STM32F10xlib/cortexm3_macro.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackmiaool/STM32_USB_CH341/HEAD/SingleFile/STM32F10xlib/cortexm3_macro.h -------------------------------------------------------------------------------- /SingleFile/STM32F10xlib/stm32f10x_conf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackmiaool/STM32_USB_CH341/HEAD/SingleFile/STM32F10xlib/stm32f10x_conf.h -------------------------------------------------------------------------------- /SingleFile/STM32F10xlib/stm32f10x_gpio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackmiaool/STM32_USB_CH341/HEAD/SingleFile/STM32F10xlib/stm32f10x_gpio.h -------------------------------------------------------------------------------- /SingleFile/STM32F10xlib/stm32f10x_map.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackmiaool/STM32_USB_CH341/HEAD/SingleFile/STM32F10xlib/stm32f10x_map.h -------------------------------------------------------------------------------- /SingleFile/STM32F10xlib/stm32f10x_nvic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackmiaool/STM32_USB_CH341/HEAD/SingleFile/STM32F10xlib/stm32f10x_nvic.h -------------------------------------------------------------------------------- /SingleFile/STM32F10xlib/stm32f10x_rcc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackmiaool/STM32_USB_CH341/HEAD/SingleFile/STM32F10xlib/stm32f10x_rcc.h -------------------------------------------------------------------------------- /SingleFile/STM32F10xlib/stm32f10x_type.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackmiaool/STM32_USB_CH341/HEAD/SingleFile/STM32F10xlib/stm32f10x_type.h -------------------------------------------------------------------------------- /SingleFile/SYSTEM/delay/delay.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackmiaool/STM32_USB_CH341/HEAD/SingleFile/SYSTEM/delay/delay.c -------------------------------------------------------------------------------- /SingleFile/SYSTEM/delay/delay.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackmiaool/STM32_USB_CH341/HEAD/SingleFile/SYSTEM/delay/delay.h -------------------------------------------------------------------------------- /SingleFile/SYSTEM/sys/cortexm3_macro.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackmiaool/STM32_USB_CH341/HEAD/SingleFile/SYSTEM/sys/cortexm3_macro.h -------------------------------------------------------------------------------- /SingleFile/SYSTEM/sys/stm32f10x_adc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackmiaool/STM32_USB_CH341/HEAD/SingleFile/SYSTEM/sys/stm32f10x_adc.h -------------------------------------------------------------------------------- /SingleFile/SYSTEM/sys/stm32f10x_bkp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackmiaool/STM32_USB_CH341/HEAD/SingleFile/SYSTEM/sys/stm32f10x_bkp.h -------------------------------------------------------------------------------- /SingleFile/SYSTEM/sys/stm32f10x_can.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackmiaool/STM32_USB_CH341/HEAD/SingleFile/SYSTEM/sys/stm32f10x_can.h -------------------------------------------------------------------------------- /SingleFile/SYSTEM/sys/stm32f10x_conf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackmiaool/STM32_USB_CH341/HEAD/SingleFile/SYSTEM/sys/stm32f10x_conf.h -------------------------------------------------------------------------------- /SingleFile/SYSTEM/sys/stm32f10x_dma.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackmiaool/STM32_USB_CH341/HEAD/SingleFile/SYSTEM/sys/stm32f10x_dma.h -------------------------------------------------------------------------------- /SingleFile/SYSTEM/sys/stm32f10x_exti.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackmiaool/STM32_USB_CH341/HEAD/SingleFile/SYSTEM/sys/stm32f10x_exti.h -------------------------------------------------------------------------------- /SingleFile/SYSTEM/sys/stm32f10x_flash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackmiaool/STM32_USB_CH341/HEAD/SingleFile/SYSTEM/sys/stm32f10x_flash.h -------------------------------------------------------------------------------- /SingleFile/SYSTEM/sys/stm32f10x_gpio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackmiaool/STM32_USB_CH341/HEAD/SingleFile/SYSTEM/sys/stm32f10x_gpio.h -------------------------------------------------------------------------------- /SingleFile/SYSTEM/sys/stm32f10x_i2c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackmiaool/STM32_USB_CH341/HEAD/SingleFile/SYSTEM/sys/stm32f10x_i2c.h -------------------------------------------------------------------------------- /SingleFile/SYSTEM/sys/stm32f10x_it.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackmiaool/STM32_USB_CH341/HEAD/SingleFile/SYSTEM/sys/stm32f10x_it.h -------------------------------------------------------------------------------- /SingleFile/SYSTEM/sys/stm32f10x_iwdg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackmiaool/STM32_USB_CH341/HEAD/SingleFile/SYSTEM/sys/stm32f10x_iwdg.h -------------------------------------------------------------------------------- /SingleFile/SYSTEM/sys/stm32f10x_lib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackmiaool/STM32_USB_CH341/HEAD/SingleFile/SYSTEM/sys/stm32f10x_lib.h -------------------------------------------------------------------------------- /SingleFile/SYSTEM/sys/stm32f10x_map.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackmiaool/STM32_USB_CH341/HEAD/SingleFile/SYSTEM/sys/stm32f10x_map.h -------------------------------------------------------------------------------- /SingleFile/SYSTEM/sys/stm32f10x_nvic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackmiaool/STM32_USB_CH341/HEAD/SingleFile/SYSTEM/sys/stm32f10x_nvic.h -------------------------------------------------------------------------------- /SingleFile/SYSTEM/sys/stm32f10x_pwr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackmiaool/STM32_USB_CH341/HEAD/SingleFile/SYSTEM/sys/stm32f10x_pwr.h -------------------------------------------------------------------------------- /SingleFile/SYSTEM/sys/stm32f10x_rcc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackmiaool/STM32_USB_CH341/HEAD/SingleFile/SYSTEM/sys/stm32f10x_rcc.h -------------------------------------------------------------------------------- /SingleFile/SYSTEM/sys/stm32f10x_rtc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackmiaool/STM32_USB_CH341/HEAD/SingleFile/SYSTEM/sys/stm32f10x_rtc.h -------------------------------------------------------------------------------- /SingleFile/SYSTEM/sys/stm32f10x_spi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackmiaool/STM32_USB_CH341/HEAD/SingleFile/SYSTEM/sys/stm32f10x_spi.h -------------------------------------------------------------------------------- /SingleFile/SYSTEM/sys/stm32f10x_systick.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackmiaool/STM32_USB_CH341/HEAD/SingleFile/SYSTEM/sys/stm32f10x_systick.h -------------------------------------------------------------------------------- /SingleFile/SYSTEM/sys/stm32f10x_tim.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackmiaool/STM32_USB_CH341/HEAD/SingleFile/SYSTEM/sys/stm32f10x_tim.h -------------------------------------------------------------------------------- /SingleFile/SYSTEM/sys/stm32f10x_tim1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackmiaool/STM32_USB_CH341/HEAD/SingleFile/SYSTEM/sys/stm32f10x_tim1.h -------------------------------------------------------------------------------- /SingleFile/SYSTEM/sys/stm32f10x_type.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackmiaool/STM32_USB_CH341/HEAD/SingleFile/SYSTEM/sys/stm32f10x_type.h -------------------------------------------------------------------------------- /SingleFile/SYSTEM/sys/stm32f10x_usart.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackmiaool/STM32_USB_CH341/HEAD/SingleFile/SYSTEM/sys/stm32f10x_usart.h -------------------------------------------------------------------------------- /SingleFile/SYSTEM/sys/stm32f10x_wwdg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackmiaool/STM32_USB_CH341/HEAD/SingleFile/SYSTEM/sys/stm32f10x_wwdg.h -------------------------------------------------------------------------------- /SingleFile/SYSTEM/sys/sys.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackmiaool/STM32_USB_CH341/HEAD/SingleFile/SYSTEM/sys/sys.c -------------------------------------------------------------------------------- /SingleFile/SYSTEM/sys/sys.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackmiaool/STM32_USB_CH341/HEAD/SingleFile/SYSTEM/sys/sys.h -------------------------------------------------------------------------------- /SingleFile/SYSTEM/usart/usart.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackmiaool/STM32_USB_CH341/HEAD/SingleFile/SYSTEM/usart/usart.c -------------------------------------------------------------------------------- /SingleFile/SYSTEM/usart/usart.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackmiaool/STM32_USB_CH341/HEAD/SingleFile/SYSTEM/usart/usart.h -------------------------------------------------------------------------------- /SingleFile/USB/USB_CH341.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackmiaool/STM32_USB_CH341/HEAD/SingleFile/USB/USB_CH341.H -------------------------------------------------------------------------------- /SingleFile/USB/USB_CH341.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackmiaool/STM32_USB_CH341/HEAD/SingleFile/USB/USB_CH341.c -------------------------------------------------------------------------------- /SingleFile/USB/usb_lib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackmiaool/STM32_USB_CH341/HEAD/SingleFile/USB/usb_lib.h -------------------------------------------------------------------------------- /SingleFile/USER/STM32F10x.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackmiaool/STM32_USB_CH341/HEAD/SingleFile/USER/STM32F10x.s -------------------------------------------------------------------------------- /SingleFile/USER/TEST.uvopt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackmiaool/STM32_USB_CH341/HEAD/SingleFile/USER/TEST.uvopt -------------------------------------------------------------------------------- /SingleFile/USER/TEST.uvproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackmiaool/STM32_USB_CH341/HEAD/SingleFile/USER/TEST.uvproj -------------------------------------------------------------------------------- /SingleFile/USER/stm32f10x_conf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackmiaool/STM32_USB_CH341/HEAD/SingleFile/USER/stm32f10x_conf.h -------------------------------------------------------------------------------- /SingleFile/USER/test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackmiaool/STM32_USB_CH341/HEAD/SingleFile/USER/test.c -------------------------------------------------------------------------------- /SingleFile/keilkilll.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackmiaool/STM32_USB_CH341/HEAD/SingleFile/keilkilll.bat -------------------------------------------------------------------------------- /diagram.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackmiaool/STM32_USB_CH341/HEAD/diagram.jpg --------------------------------------------------------------------------------