├── CORE ├── core_cm3.c ├── core_cm3.h └── startup_stm32f10x_hd.s ├── OBJ ├── SoftWareSerial.hex └── Template.hex ├── README.md ├── STM32F10x_FWLib ├── 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 ├── SYSTEM ├── delay │ ├── delay.c │ └── delay.h ├── sys │ ├── sys.c │ └── sys.h └── usart │ ├── usart.c │ └── usart.h ├── USER ├── JLinkSettings.ini ├── SoftWareSerial.uvguix.Administrator ├── SoftWareSerial.uvguix.Tony ├── SoftWareSerial.uvoptx ├── SoftWareSerial.uvprojx ├── main.c ├── stm32f10x.h ├── stm32f10x_conf.h ├── stm32f10x_it.c ├── stm32f10x_it.h ├── system_stm32f10x.c └── system_stm32f10x.h └── keilkilll.bat /CORE/core_cm3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyIOT/SoftWareSerial/HEAD/CORE/core_cm3.c -------------------------------------------------------------------------------- /CORE/core_cm3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyIOT/SoftWareSerial/HEAD/CORE/core_cm3.h -------------------------------------------------------------------------------- /CORE/startup_stm32f10x_hd.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyIOT/SoftWareSerial/HEAD/CORE/startup_stm32f10x_hd.s -------------------------------------------------------------------------------- /OBJ/SoftWareSerial.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyIOT/SoftWareSerial/HEAD/OBJ/SoftWareSerial.hex -------------------------------------------------------------------------------- /OBJ/Template.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyIOT/SoftWareSerial/HEAD/OBJ/Template.hex -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyIOT/SoftWareSerial/HEAD/README.md -------------------------------------------------------------------------------- /STM32F10x_FWLib/inc/misc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyIOT/SoftWareSerial/HEAD/STM32F10x_FWLib/inc/misc.h -------------------------------------------------------------------------------- /STM32F10x_FWLib/inc/stm32f10x_adc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyIOT/SoftWareSerial/HEAD/STM32F10x_FWLib/inc/stm32f10x_adc.h -------------------------------------------------------------------------------- /STM32F10x_FWLib/inc/stm32f10x_bkp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyIOT/SoftWareSerial/HEAD/STM32F10x_FWLib/inc/stm32f10x_bkp.h -------------------------------------------------------------------------------- /STM32F10x_FWLib/inc/stm32f10x_can.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyIOT/SoftWareSerial/HEAD/STM32F10x_FWLib/inc/stm32f10x_can.h -------------------------------------------------------------------------------- /STM32F10x_FWLib/inc/stm32f10x_cec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyIOT/SoftWareSerial/HEAD/STM32F10x_FWLib/inc/stm32f10x_cec.h -------------------------------------------------------------------------------- /STM32F10x_FWLib/inc/stm32f10x_crc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyIOT/SoftWareSerial/HEAD/STM32F10x_FWLib/inc/stm32f10x_crc.h -------------------------------------------------------------------------------- /STM32F10x_FWLib/inc/stm32f10x_dac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyIOT/SoftWareSerial/HEAD/STM32F10x_FWLib/inc/stm32f10x_dac.h -------------------------------------------------------------------------------- /STM32F10x_FWLib/inc/stm32f10x_dbgmcu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyIOT/SoftWareSerial/HEAD/STM32F10x_FWLib/inc/stm32f10x_dbgmcu.h -------------------------------------------------------------------------------- /STM32F10x_FWLib/inc/stm32f10x_dma.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyIOT/SoftWareSerial/HEAD/STM32F10x_FWLib/inc/stm32f10x_dma.h -------------------------------------------------------------------------------- /STM32F10x_FWLib/inc/stm32f10x_exti.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyIOT/SoftWareSerial/HEAD/STM32F10x_FWLib/inc/stm32f10x_exti.h -------------------------------------------------------------------------------- /STM32F10x_FWLib/inc/stm32f10x_flash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyIOT/SoftWareSerial/HEAD/STM32F10x_FWLib/inc/stm32f10x_flash.h -------------------------------------------------------------------------------- /STM32F10x_FWLib/inc/stm32f10x_fsmc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyIOT/SoftWareSerial/HEAD/STM32F10x_FWLib/inc/stm32f10x_fsmc.h -------------------------------------------------------------------------------- /STM32F10x_FWLib/inc/stm32f10x_gpio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyIOT/SoftWareSerial/HEAD/STM32F10x_FWLib/inc/stm32f10x_gpio.h -------------------------------------------------------------------------------- /STM32F10x_FWLib/inc/stm32f10x_i2c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyIOT/SoftWareSerial/HEAD/STM32F10x_FWLib/inc/stm32f10x_i2c.h -------------------------------------------------------------------------------- /STM32F10x_FWLib/inc/stm32f10x_iwdg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyIOT/SoftWareSerial/HEAD/STM32F10x_FWLib/inc/stm32f10x_iwdg.h -------------------------------------------------------------------------------- /STM32F10x_FWLib/inc/stm32f10x_pwr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyIOT/SoftWareSerial/HEAD/STM32F10x_FWLib/inc/stm32f10x_pwr.h -------------------------------------------------------------------------------- /STM32F10x_FWLib/inc/stm32f10x_rcc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyIOT/SoftWareSerial/HEAD/STM32F10x_FWLib/inc/stm32f10x_rcc.h -------------------------------------------------------------------------------- /STM32F10x_FWLib/inc/stm32f10x_rtc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyIOT/SoftWareSerial/HEAD/STM32F10x_FWLib/inc/stm32f10x_rtc.h -------------------------------------------------------------------------------- /STM32F10x_FWLib/inc/stm32f10x_sdio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyIOT/SoftWareSerial/HEAD/STM32F10x_FWLib/inc/stm32f10x_sdio.h -------------------------------------------------------------------------------- /STM32F10x_FWLib/inc/stm32f10x_spi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyIOT/SoftWareSerial/HEAD/STM32F10x_FWLib/inc/stm32f10x_spi.h -------------------------------------------------------------------------------- /STM32F10x_FWLib/inc/stm32f10x_tim.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyIOT/SoftWareSerial/HEAD/STM32F10x_FWLib/inc/stm32f10x_tim.h -------------------------------------------------------------------------------- /STM32F10x_FWLib/inc/stm32f10x_usart.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyIOT/SoftWareSerial/HEAD/STM32F10x_FWLib/inc/stm32f10x_usart.h -------------------------------------------------------------------------------- /STM32F10x_FWLib/inc/stm32f10x_wwdg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyIOT/SoftWareSerial/HEAD/STM32F10x_FWLib/inc/stm32f10x_wwdg.h -------------------------------------------------------------------------------- /STM32F10x_FWLib/src/misc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyIOT/SoftWareSerial/HEAD/STM32F10x_FWLib/src/misc.c -------------------------------------------------------------------------------- /STM32F10x_FWLib/src/stm32f10x_adc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyIOT/SoftWareSerial/HEAD/STM32F10x_FWLib/src/stm32f10x_adc.c -------------------------------------------------------------------------------- /STM32F10x_FWLib/src/stm32f10x_bkp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyIOT/SoftWareSerial/HEAD/STM32F10x_FWLib/src/stm32f10x_bkp.c -------------------------------------------------------------------------------- /STM32F10x_FWLib/src/stm32f10x_can.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyIOT/SoftWareSerial/HEAD/STM32F10x_FWLib/src/stm32f10x_can.c -------------------------------------------------------------------------------- /STM32F10x_FWLib/src/stm32f10x_cec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyIOT/SoftWareSerial/HEAD/STM32F10x_FWLib/src/stm32f10x_cec.c -------------------------------------------------------------------------------- /STM32F10x_FWLib/src/stm32f10x_crc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyIOT/SoftWareSerial/HEAD/STM32F10x_FWLib/src/stm32f10x_crc.c -------------------------------------------------------------------------------- /STM32F10x_FWLib/src/stm32f10x_dac.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyIOT/SoftWareSerial/HEAD/STM32F10x_FWLib/src/stm32f10x_dac.c -------------------------------------------------------------------------------- /STM32F10x_FWLib/src/stm32f10x_dbgmcu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyIOT/SoftWareSerial/HEAD/STM32F10x_FWLib/src/stm32f10x_dbgmcu.c -------------------------------------------------------------------------------- /STM32F10x_FWLib/src/stm32f10x_dma.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyIOT/SoftWareSerial/HEAD/STM32F10x_FWLib/src/stm32f10x_dma.c -------------------------------------------------------------------------------- /STM32F10x_FWLib/src/stm32f10x_exti.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyIOT/SoftWareSerial/HEAD/STM32F10x_FWLib/src/stm32f10x_exti.c -------------------------------------------------------------------------------- /STM32F10x_FWLib/src/stm32f10x_flash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyIOT/SoftWareSerial/HEAD/STM32F10x_FWLib/src/stm32f10x_flash.c -------------------------------------------------------------------------------- /STM32F10x_FWLib/src/stm32f10x_fsmc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyIOT/SoftWareSerial/HEAD/STM32F10x_FWLib/src/stm32f10x_fsmc.c -------------------------------------------------------------------------------- /STM32F10x_FWLib/src/stm32f10x_gpio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyIOT/SoftWareSerial/HEAD/STM32F10x_FWLib/src/stm32f10x_gpio.c -------------------------------------------------------------------------------- /STM32F10x_FWLib/src/stm32f10x_i2c.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyIOT/SoftWareSerial/HEAD/STM32F10x_FWLib/src/stm32f10x_i2c.c -------------------------------------------------------------------------------- /STM32F10x_FWLib/src/stm32f10x_iwdg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyIOT/SoftWareSerial/HEAD/STM32F10x_FWLib/src/stm32f10x_iwdg.c -------------------------------------------------------------------------------- /STM32F10x_FWLib/src/stm32f10x_pwr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyIOT/SoftWareSerial/HEAD/STM32F10x_FWLib/src/stm32f10x_pwr.c -------------------------------------------------------------------------------- /STM32F10x_FWLib/src/stm32f10x_rcc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyIOT/SoftWareSerial/HEAD/STM32F10x_FWLib/src/stm32f10x_rcc.c -------------------------------------------------------------------------------- /STM32F10x_FWLib/src/stm32f10x_rtc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyIOT/SoftWareSerial/HEAD/STM32F10x_FWLib/src/stm32f10x_rtc.c -------------------------------------------------------------------------------- /STM32F10x_FWLib/src/stm32f10x_sdio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyIOT/SoftWareSerial/HEAD/STM32F10x_FWLib/src/stm32f10x_sdio.c -------------------------------------------------------------------------------- /STM32F10x_FWLib/src/stm32f10x_spi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyIOT/SoftWareSerial/HEAD/STM32F10x_FWLib/src/stm32f10x_spi.c -------------------------------------------------------------------------------- /STM32F10x_FWLib/src/stm32f10x_tim.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyIOT/SoftWareSerial/HEAD/STM32F10x_FWLib/src/stm32f10x_tim.c -------------------------------------------------------------------------------- /STM32F10x_FWLib/src/stm32f10x_usart.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyIOT/SoftWareSerial/HEAD/STM32F10x_FWLib/src/stm32f10x_usart.c -------------------------------------------------------------------------------- /STM32F10x_FWLib/src/stm32f10x_wwdg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyIOT/SoftWareSerial/HEAD/STM32F10x_FWLib/src/stm32f10x_wwdg.c -------------------------------------------------------------------------------- /SYSTEM/delay/delay.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyIOT/SoftWareSerial/HEAD/SYSTEM/delay/delay.c -------------------------------------------------------------------------------- /SYSTEM/delay/delay.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyIOT/SoftWareSerial/HEAD/SYSTEM/delay/delay.h -------------------------------------------------------------------------------- /SYSTEM/sys/sys.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyIOT/SoftWareSerial/HEAD/SYSTEM/sys/sys.c -------------------------------------------------------------------------------- /SYSTEM/sys/sys.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyIOT/SoftWareSerial/HEAD/SYSTEM/sys/sys.h -------------------------------------------------------------------------------- /SYSTEM/usart/usart.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyIOT/SoftWareSerial/HEAD/SYSTEM/usart/usart.c -------------------------------------------------------------------------------- /SYSTEM/usart/usart.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyIOT/SoftWareSerial/HEAD/SYSTEM/usart/usart.h -------------------------------------------------------------------------------- /USER/JLinkSettings.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyIOT/SoftWareSerial/HEAD/USER/JLinkSettings.ini -------------------------------------------------------------------------------- /USER/SoftWareSerial.uvguix.Administrator: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyIOT/SoftWareSerial/HEAD/USER/SoftWareSerial.uvguix.Administrator -------------------------------------------------------------------------------- /USER/SoftWareSerial.uvguix.Tony: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyIOT/SoftWareSerial/HEAD/USER/SoftWareSerial.uvguix.Tony -------------------------------------------------------------------------------- /USER/SoftWareSerial.uvoptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyIOT/SoftWareSerial/HEAD/USER/SoftWareSerial.uvoptx -------------------------------------------------------------------------------- /USER/SoftWareSerial.uvprojx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyIOT/SoftWareSerial/HEAD/USER/SoftWareSerial.uvprojx -------------------------------------------------------------------------------- /USER/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyIOT/SoftWareSerial/HEAD/USER/main.c -------------------------------------------------------------------------------- /USER/stm32f10x.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyIOT/SoftWareSerial/HEAD/USER/stm32f10x.h -------------------------------------------------------------------------------- /USER/stm32f10x_conf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyIOT/SoftWareSerial/HEAD/USER/stm32f10x_conf.h -------------------------------------------------------------------------------- /USER/stm32f10x_it.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyIOT/SoftWareSerial/HEAD/USER/stm32f10x_it.c -------------------------------------------------------------------------------- /USER/stm32f10x_it.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyIOT/SoftWareSerial/HEAD/USER/stm32f10x_it.h -------------------------------------------------------------------------------- /USER/system_stm32f10x.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyIOT/SoftWareSerial/HEAD/USER/system_stm32f10x.c -------------------------------------------------------------------------------- /USER/system_stm32f10x.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyIOT/SoftWareSerial/HEAD/USER/system_stm32f10x.h -------------------------------------------------------------------------------- /keilkilll.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyIOT/SoftWareSerial/HEAD/keilkilll.bat --------------------------------------------------------------------------------