├── BluePillDemo_ADC_Poll ├── .cproject ├── .gitignore ├── .mxproject ├── .project ├── .settings │ └── language.settings.xml ├── BluePillDemo_ADC_Poll.ioc ├── Core │ ├── Inc │ │ ├── main.h │ │ ├── stm32f1xx_hal_conf.h │ │ └── stm32f1xx_it.h │ ├── Src │ │ ├── main.c │ │ ├── stm32f1xx_hal_msp.c │ │ ├── stm32f1xx_it.c │ │ ├── syscalls.c │ │ ├── sysmem.c │ │ └── system_stm32f1xx.c │ └── Startup │ │ └── startup_stm32f103c8tx.s ├── Drivers │ ├── CMSIS │ │ ├── Device │ │ │ └── ST │ │ │ │ └── STM32F1xx │ │ │ │ └── Include │ │ │ │ ├── stm32f103xb.h │ │ │ │ ├── stm32f1xx.h │ │ │ │ └── system_stm32f1xx.h │ │ └── Include │ │ │ ├── cmsis_armcc.h │ │ │ ├── cmsis_armclang.h │ │ │ ├── cmsis_compiler.h │ │ │ ├── cmsis_gcc.h │ │ │ ├── cmsis_iccarm.h │ │ │ ├── cmsis_version.h │ │ │ ├── core_armv8mbl.h │ │ │ ├── core_armv8mml.h │ │ │ ├── core_cm0.h │ │ │ ├── core_cm0plus.h │ │ │ ├── core_cm1.h │ │ │ ├── core_cm23.h │ │ │ ├── core_cm3.h │ │ │ ├── core_cm33.h │ │ │ ├── core_cm4.h │ │ │ ├── core_cm7.h │ │ │ ├── core_sc000.h │ │ │ ├── core_sc300.h │ │ │ ├── mpu_armv7.h │ │ │ ├── mpu_armv8.h │ │ │ └── tz_context.h │ └── STM32F1xx_HAL_Driver │ │ ├── Inc │ │ ├── Legacy │ │ │ └── stm32_hal_legacy.h │ │ ├── stm32f1xx_hal.h │ │ ├── stm32f1xx_hal_adc.h │ │ ├── stm32f1xx_hal_adc_ex.h │ │ ├── stm32f1xx_hal_cortex.h │ │ ├── stm32f1xx_hal_def.h │ │ ├── stm32f1xx_hal_dma.h │ │ ├── stm32f1xx_hal_dma_ex.h │ │ ├── stm32f1xx_hal_exti.h │ │ ├── stm32f1xx_hal_flash.h │ │ ├── stm32f1xx_hal_flash_ex.h │ │ ├── stm32f1xx_hal_gpio.h │ │ ├── stm32f1xx_hal_gpio_ex.h │ │ ├── stm32f1xx_hal_pwr.h │ │ ├── stm32f1xx_hal_rcc.h │ │ ├── stm32f1xx_hal_rcc_ex.h │ │ ├── stm32f1xx_hal_tim.h │ │ └── stm32f1xx_hal_tim_ex.h │ │ └── Src │ │ ├── stm32f1xx_hal.c │ │ ├── stm32f1xx_hal_adc.c │ │ ├── stm32f1xx_hal_adc_ex.c │ │ ├── stm32f1xx_hal_cortex.c │ │ ├── stm32f1xx_hal_dma.c │ │ ├── stm32f1xx_hal_exti.c │ │ ├── stm32f1xx_hal_flash.c │ │ ├── stm32f1xx_hal_flash_ex.c │ │ ├── stm32f1xx_hal_gpio.c │ │ ├── stm32f1xx_hal_gpio_ex.c │ │ ├── stm32f1xx_hal_pwr.c │ │ ├── stm32f1xx_hal_rcc.c │ │ ├── stm32f1xx_hal_rcc_ex.c │ │ ├── stm32f1xx_hal_tim.c │ │ └── stm32f1xx_hal_tim_ex.c ├── STM32F103C8TX_FLASH.ld ├── readme.txt └── schematic.pdf ├── BluePillDemo_AES ├── .cproject ├── .gitignore ├── .mxproject ├── .project ├── .settings │ └── language.settings.xml ├── BluePillDemo_AES Debug.launch ├── BluePillDemo_AES.ioc ├── Core │ ├── Inc │ │ ├── aes256.h │ │ ├── main.h │ │ ├── stm32f1xx_hal_conf.h │ │ └── stm32f1xx_it.h │ ├── Src │ │ ├── aes256.c │ │ ├── main.c │ │ ├── stm32f1xx_hal_msp.c │ │ ├── stm32f1xx_it.c │ │ ├── syscalls.c │ │ ├── sysmem.c │ │ └── system_stm32f1xx.c │ └── Startup │ │ └── startup_stm32f103c8tx.s ├── Drivers │ ├── CMSIS │ │ ├── Device │ │ │ └── ST │ │ │ │ └── STM32F1xx │ │ │ │ └── Include │ │ │ │ ├── stm32f103xb.h │ │ │ │ ├── stm32f1xx.h │ │ │ │ └── system_stm32f1xx.h │ │ └── Include │ │ │ ├── cmsis_armcc.h │ │ │ ├── cmsis_armclang.h │ │ │ ├── cmsis_compiler.h │ │ │ ├── cmsis_gcc.h │ │ │ ├── cmsis_iccarm.h │ │ │ ├── cmsis_version.h │ │ │ ├── core_armv8mbl.h │ │ │ ├── core_armv8mml.h │ │ │ ├── core_cm0.h │ │ │ ├── core_cm0plus.h │ │ │ ├── core_cm1.h │ │ │ ├── core_cm23.h │ │ │ ├── core_cm3.h │ │ │ ├── core_cm33.h │ │ │ ├── core_cm4.h │ │ │ ├── core_cm7.h │ │ │ ├── core_sc000.h │ │ │ ├── core_sc300.h │ │ │ ├── mpu_armv7.h │ │ │ ├── mpu_armv8.h │ │ │ └── tz_context.h │ └── STM32F1xx_HAL_Driver │ │ ├── Inc │ │ ├── Legacy │ │ │ └── stm32_hal_legacy.h │ │ ├── stm32f1xx_hal.h │ │ ├── stm32f1xx_hal_cortex.h │ │ ├── stm32f1xx_hal_def.h │ │ ├── stm32f1xx_hal_dma.h │ │ ├── stm32f1xx_hal_dma_ex.h │ │ ├── stm32f1xx_hal_exti.h │ │ ├── stm32f1xx_hal_flash.h │ │ ├── stm32f1xx_hal_flash_ex.h │ │ ├── stm32f1xx_hal_gpio.h │ │ ├── stm32f1xx_hal_gpio_ex.h │ │ ├── stm32f1xx_hal_pwr.h │ │ ├── stm32f1xx_hal_rcc.h │ │ ├── stm32f1xx_hal_rcc_ex.h │ │ ├── stm32f1xx_hal_tim.h │ │ └── stm32f1xx_hal_tim_ex.h │ │ └── Src │ │ ├── stm32f1xx_hal.c │ │ ├── stm32f1xx_hal_cortex.c │ │ ├── stm32f1xx_hal_dma.c │ │ ├── stm32f1xx_hal_exti.c │ │ ├── stm32f1xx_hal_flash.c │ │ ├── stm32f1xx_hal_flash_ex.c │ │ ├── stm32f1xx_hal_gpio.c │ │ ├── stm32f1xx_hal_gpio_ex.c │ │ ├── stm32f1xx_hal_pwr.c │ │ ├── stm32f1xx_hal_rcc.c │ │ ├── stm32f1xx_hal_rcc_ex.c │ │ ├── stm32f1xx_hal_tim.c │ │ └── stm32f1xx_hal_tim_ex.c ├── STM32F103C8TX_FLASH.ld └── readme.txt ├── BluePillDemo_CAN_Loopback ├── .cproject ├── .gitignore ├── .mxproject ├── .project ├── .settings │ └── language.settings.xml ├── BluePillDemo_CAN_Loopback Debug.launch ├── BluePillDemo_CAN_Loopback.ioc ├── Core │ ├── Inc │ │ ├── main.h │ │ ├── stm32f1xx_hal_conf.h │ │ └── stm32f1xx_it.h │ ├── Src │ │ ├── main.c │ │ ├── stm32f1xx_hal_msp.c │ │ ├── stm32f1xx_it.c │ │ ├── syscalls.c │ │ ├── sysmem.c │ │ └── system_stm32f1xx.c │ └── Startup │ │ └── startup_stm32f103c8tx.s ├── Drivers │ ├── CMSIS │ │ ├── Device │ │ │ └── ST │ │ │ │ └── STM32F1xx │ │ │ │ └── Include │ │ │ │ ├── stm32f103xb.h │ │ │ │ ├── stm32f1xx.h │ │ │ │ └── system_stm32f1xx.h │ │ └── Include │ │ │ ├── cmsis_armcc.h │ │ │ ├── cmsis_armclang.h │ │ │ ├── cmsis_compiler.h │ │ │ ├── cmsis_gcc.h │ │ │ ├── cmsis_iccarm.h │ │ │ ├── cmsis_version.h │ │ │ ├── core_armv8mbl.h │ │ │ ├── core_armv8mml.h │ │ │ ├── core_cm0.h │ │ │ ├── core_cm0plus.h │ │ │ ├── core_cm1.h │ │ │ ├── core_cm23.h │ │ │ ├── core_cm3.h │ │ │ ├── core_cm33.h │ │ │ ├── core_cm4.h │ │ │ ├── core_cm7.h │ │ │ ├── core_sc000.h │ │ │ ├── core_sc300.h │ │ │ ├── mpu_armv7.h │ │ │ ├── mpu_armv8.h │ │ │ └── tz_context.h │ └── STM32F1xx_HAL_Driver │ │ ├── Inc │ │ ├── Legacy │ │ │ └── stm32_hal_legacy.h │ │ ├── stm32f1xx_hal.h │ │ ├── stm32f1xx_hal_can.h │ │ ├── stm32f1xx_hal_cortex.h │ │ ├── stm32f1xx_hal_def.h │ │ ├── stm32f1xx_hal_dma.h │ │ ├── stm32f1xx_hal_dma_ex.h │ │ ├── stm32f1xx_hal_exti.h │ │ ├── stm32f1xx_hal_flash.h │ │ ├── stm32f1xx_hal_flash_ex.h │ │ ├── stm32f1xx_hal_gpio.h │ │ ├── stm32f1xx_hal_gpio_ex.h │ │ ├── stm32f1xx_hal_pwr.h │ │ ├── stm32f1xx_hal_rcc.h │ │ ├── stm32f1xx_hal_rcc_ex.h │ │ ├── stm32f1xx_hal_tim.h │ │ └── stm32f1xx_hal_tim_ex.h │ │ └── Src │ │ ├── stm32f1xx_hal.c │ │ ├── stm32f1xx_hal_can.c │ │ ├── stm32f1xx_hal_cortex.c │ │ ├── stm32f1xx_hal_dma.c │ │ ├── stm32f1xx_hal_exti.c │ │ ├── stm32f1xx_hal_flash.c │ │ ├── stm32f1xx_hal_flash_ex.c │ │ ├── stm32f1xx_hal_gpio.c │ │ ├── stm32f1xx_hal_gpio_ex.c │ │ ├── stm32f1xx_hal_pwr.c │ │ ├── stm32f1xx_hal_rcc.c │ │ ├── stm32f1xx_hal_rcc_ex.c │ │ ├── stm32f1xx_hal_tim.c │ │ └── stm32f1xx_hal_tim_ex.c ├── STM32F103C8TX_FLASH.ld └── readme.txt ├── BluePillDemo_CAN_Rx ├── .cproject ├── .gitignore ├── .mxproject ├── .project ├── .settings │ └── language.settings.xml ├── BluePillDemo_CAN_Rx Debug.launch ├── BluePillDemo_CAN_Rx.ioc ├── Core │ ├── Inc │ │ ├── main.h │ │ ├── stm32f1xx_hal_conf.h │ │ └── stm32f1xx_it.h │ ├── Src │ │ ├── main.c │ │ ├── stm32f1xx_hal_msp.c │ │ ├── stm32f1xx_it.c │ │ ├── syscalls.c │ │ ├── sysmem.c │ │ └── system_stm32f1xx.c │ └── Startup │ │ └── startup_stm32f103c8tx.s ├── Drivers │ ├── CMSIS │ │ ├── Device │ │ │ └── ST │ │ │ │ └── STM32F1xx │ │ │ │ └── Include │ │ │ │ ├── stm32f103xb.h │ │ │ │ ├── stm32f1xx.h │ │ │ │ └── system_stm32f1xx.h │ │ └── Include │ │ │ ├── cmsis_armcc.h │ │ │ ├── cmsis_armclang.h │ │ │ ├── cmsis_compiler.h │ │ │ ├── cmsis_gcc.h │ │ │ ├── cmsis_iccarm.h │ │ │ ├── cmsis_version.h │ │ │ ├── core_armv8mbl.h │ │ │ ├── core_armv8mml.h │ │ │ ├── core_cm0.h │ │ │ ├── core_cm0plus.h │ │ │ ├── core_cm1.h │ │ │ ├── core_cm23.h │ │ │ ├── core_cm3.h │ │ │ ├── core_cm33.h │ │ │ ├── core_cm4.h │ │ │ ├── core_cm7.h │ │ │ ├── core_sc000.h │ │ │ ├── core_sc300.h │ │ │ ├── mpu_armv7.h │ │ │ ├── mpu_armv8.h │ │ │ └── tz_context.h │ └── STM32F1xx_HAL_Driver │ │ ├── Inc │ │ ├── Legacy │ │ │ └── stm32_hal_legacy.h │ │ ├── stm32f1xx_hal.h │ │ ├── stm32f1xx_hal_can.h │ │ ├── stm32f1xx_hal_cortex.h │ │ ├── stm32f1xx_hal_def.h │ │ ├── stm32f1xx_hal_dma.h │ │ ├── stm32f1xx_hal_dma_ex.h │ │ ├── stm32f1xx_hal_exti.h │ │ ├── stm32f1xx_hal_flash.h │ │ ├── stm32f1xx_hal_flash_ex.h │ │ ├── stm32f1xx_hal_gpio.h │ │ ├── stm32f1xx_hal_gpio_ex.h │ │ ├── stm32f1xx_hal_pwr.h │ │ ├── stm32f1xx_hal_rcc.h │ │ ├── stm32f1xx_hal_rcc_ex.h │ │ ├── stm32f1xx_hal_tim.h │ │ └── stm32f1xx_hal_tim_ex.h │ │ └── Src │ │ ├── stm32f1xx_hal.c │ │ ├── stm32f1xx_hal_can.c │ │ ├── stm32f1xx_hal_cortex.c │ │ ├── stm32f1xx_hal_dma.c │ │ ├── stm32f1xx_hal_exti.c │ │ ├── stm32f1xx_hal_flash.c │ │ ├── stm32f1xx_hal_flash_ex.c │ │ ├── stm32f1xx_hal_gpio.c │ │ ├── stm32f1xx_hal_gpio_ex.c │ │ ├── stm32f1xx_hal_pwr.c │ │ ├── stm32f1xx_hal_rcc.c │ │ ├── stm32f1xx_hal_rcc_ex.c │ │ ├── stm32f1xx_hal_tim.c │ │ └── stm32f1xx_hal_tim_ex.c ├── STM32F103C8TX_FLASH.ld ├── readme.txt └── schematic.pdf ├── BluePillDemo_CAN_Tx ├── .cproject ├── .gitignore ├── .mxproject ├── .project ├── .settings │ └── language.settings.xml ├── BluePillDemo_CAN_Tx Debug.launch ├── BluePillDemo_CAN_Tx.ioc ├── Core │ ├── Inc │ │ ├── main.h │ │ ├── stm32f1xx_hal_conf.h │ │ └── stm32f1xx_it.h │ ├── Src │ │ ├── main.c │ │ ├── stm32f1xx_hal_msp.c │ │ ├── stm32f1xx_it.c │ │ ├── syscalls.c │ │ ├── sysmem.c │ │ └── system_stm32f1xx.c │ └── Startup │ │ └── startup_stm32f103c8tx.s ├── Drivers │ ├── CMSIS │ │ ├── Device │ │ │ └── ST │ │ │ │ └── STM32F1xx │ │ │ │ └── Include │ │ │ │ ├── stm32f103xb.h │ │ │ │ ├── stm32f1xx.h │ │ │ │ └── system_stm32f1xx.h │ │ └── Include │ │ │ ├── cmsis_armcc.h │ │ │ ├── cmsis_armclang.h │ │ │ ├── cmsis_compiler.h │ │ │ ├── cmsis_gcc.h │ │ │ ├── cmsis_iccarm.h │ │ │ ├── cmsis_version.h │ │ │ ├── core_armv8mbl.h │ │ │ ├── core_armv8mml.h │ │ │ ├── core_cm0.h │ │ │ ├── core_cm0plus.h │ │ │ ├── core_cm1.h │ │ │ ├── core_cm23.h │ │ │ ├── core_cm3.h │ │ │ ├── core_cm33.h │ │ │ ├── core_cm4.h │ │ │ ├── core_cm7.h │ │ │ ├── core_sc000.h │ │ │ ├── core_sc300.h │ │ │ ├── mpu_armv7.h │ │ │ ├── mpu_armv8.h │ │ │ └── tz_context.h │ └── STM32F1xx_HAL_Driver │ │ ├── Inc │ │ ├── Legacy │ │ │ └── stm32_hal_legacy.h │ │ ├── stm32f1xx_hal.h │ │ ├── stm32f1xx_hal_can.h │ │ ├── stm32f1xx_hal_cortex.h │ │ ├── stm32f1xx_hal_def.h │ │ ├── stm32f1xx_hal_dma.h │ │ ├── stm32f1xx_hal_dma_ex.h │ │ ├── stm32f1xx_hal_exti.h │ │ ├── stm32f1xx_hal_flash.h │ │ ├── stm32f1xx_hal_flash_ex.h │ │ ├── stm32f1xx_hal_gpio.h │ │ ├── stm32f1xx_hal_gpio_ex.h │ │ ├── stm32f1xx_hal_pwr.h │ │ ├── stm32f1xx_hal_rcc.h │ │ ├── stm32f1xx_hal_rcc_ex.h │ │ ├── stm32f1xx_hal_tim.h │ │ └── stm32f1xx_hal_tim_ex.h │ │ └── Src │ │ ├── stm32f1xx_hal.c │ │ ├── stm32f1xx_hal_can.c │ │ ├── stm32f1xx_hal_cortex.c │ │ ├── stm32f1xx_hal_dma.c │ │ ├── stm32f1xx_hal_exti.c │ │ ├── stm32f1xx_hal_flash.c │ │ ├── stm32f1xx_hal_flash_ex.c │ │ ├── stm32f1xx_hal_gpio.c │ │ ├── stm32f1xx_hal_gpio_ex.c │ │ ├── stm32f1xx_hal_pwr.c │ │ ├── stm32f1xx_hal_rcc.c │ │ ├── stm32f1xx_hal_rcc_ex.c │ │ ├── stm32f1xx_hal_tim.c │ │ └── stm32f1xx_hal_tim_ex.c ├── STM32F103C8TX_FLASH.ld └── readme.txt ├── BluePillDemo_CRC ├── .cproject ├── .gitignore ├── .mxproject ├── .project ├── .settings │ └── language.settings.xml ├── BluePillDemo_CRC Debug.launch ├── BluePillDemo_CRC.ioc ├── Core │ ├── Inc │ │ ├── main.h │ │ ├── stm32f1xx_hal_conf.h │ │ └── stm32f1xx_it.h │ ├── Src │ │ ├── main.c │ │ ├── stm32f1xx_hal_msp.c │ │ ├── stm32f1xx_it.c │ │ ├── syscalls.c │ │ ├── sysmem.c │ │ └── system_stm32f1xx.c │ └── Startup │ │ └── startup_stm32f103c8tx.s ├── Drivers │ ├── CMSIS │ │ ├── Device │ │ │ └── ST │ │ │ │ └── STM32F1xx │ │ │ │ └── Include │ │ │ │ ├── stm32f103xb.h │ │ │ │ ├── stm32f1xx.h │ │ │ │ └── system_stm32f1xx.h │ │ └── Include │ │ │ ├── cmsis_armcc.h │ │ │ ├── cmsis_armclang.h │ │ │ ├── cmsis_compiler.h │ │ │ ├── cmsis_gcc.h │ │ │ ├── cmsis_iccarm.h │ │ │ ├── cmsis_version.h │ │ │ ├── core_armv8mbl.h │ │ │ ├── core_armv8mml.h │ │ │ ├── core_cm0.h │ │ │ ├── core_cm0plus.h │ │ │ ├── core_cm1.h │ │ │ ├── core_cm23.h │ │ │ ├── core_cm3.h │ │ │ ├── core_cm33.h │ │ │ ├── core_cm4.h │ │ │ ├── core_cm7.h │ │ │ ├── core_sc000.h │ │ │ ├── core_sc300.h │ │ │ ├── mpu_armv7.h │ │ │ ├── mpu_armv8.h │ │ │ └── tz_context.h │ └── STM32F1xx_HAL_Driver │ │ ├── Inc │ │ ├── Legacy │ │ │ └── stm32_hal_legacy.h │ │ ├── stm32f1xx_hal.h │ │ ├── stm32f1xx_hal_cortex.h │ │ ├── stm32f1xx_hal_crc.h │ │ ├── stm32f1xx_hal_def.h │ │ ├── stm32f1xx_hal_dma.h │ │ ├── stm32f1xx_hal_dma_ex.h │ │ ├── stm32f1xx_hal_exti.h │ │ ├── stm32f1xx_hal_flash.h │ │ ├── stm32f1xx_hal_flash_ex.h │ │ ├── stm32f1xx_hal_gpio.h │ │ ├── stm32f1xx_hal_gpio_ex.h │ │ ├── stm32f1xx_hal_pwr.h │ │ ├── stm32f1xx_hal_rcc.h │ │ ├── stm32f1xx_hal_rcc_ex.h │ │ ├── stm32f1xx_hal_tim.h │ │ └── stm32f1xx_hal_tim_ex.h │ │ └── Src │ │ ├── stm32f1xx_hal.c │ │ ├── stm32f1xx_hal_cortex.c │ │ ├── stm32f1xx_hal_crc.c │ │ ├── stm32f1xx_hal_dma.c │ │ ├── stm32f1xx_hal_exti.c │ │ ├── stm32f1xx_hal_flash.c │ │ ├── stm32f1xx_hal_flash_ex.c │ │ ├── stm32f1xx_hal_gpio.c │ │ ├── stm32f1xx_hal_gpio_ex.c │ │ ├── stm32f1xx_hal_pwr.c │ │ ├── stm32f1xx_hal_rcc.c │ │ ├── stm32f1xx_hal_rcc_ex.c │ │ ├── stm32f1xx_hal_tim.c │ │ └── stm32f1xx_hal_tim_ex.c ├── STM32F103C8TX_FLASH.ld └── readme.txt ├── BluePillDemo_DMA_Mem2Mem ├── .cproject ├── .gitignore ├── .mxproject ├── .project ├── .settings │ └── language.settings.xml ├── BluePillDemo_DMA_Mem2Mem Debug.launch ├── BluePillDemo_DMA_Mem2Mem.ioc ├── Core │ ├── Inc │ │ ├── main.h │ │ ├── stm32f1xx_hal_conf.h │ │ └── stm32f1xx_it.h │ ├── Src │ │ ├── main.c │ │ ├── stm32f1xx_hal_msp.c │ │ ├── stm32f1xx_it.c │ │ ├── syscalls.c │ │ ├── sysmem.c │ │ └── system_stm32f1xx.c │ └── Startup │ │ └── startup_stm32f103c8tx.s ├── Drivers │ ├── CMSIS │ │ ├── Device │ │ │ └── ST │ │ │ │ └── STM32F1xx │ │ │ │ └── Include │ │ │ │ ├── stm32f103xb.h │ │ │ │ ├── stm32f1xx.h │ │ │ │ └── system_stm32f1xx.h │ │ └── Include │ │ │ ├── cmsis_armcc.h │ │ │ ├── cmsis_armclang.h │ │ │ ├── cmsis_compiler.h │ │ │ ├── cmsis_gcc.h │ │ │ ├── cmsis_iccarm.h │ │ │ ├── cmsis_version.h │ │ │ ├── core_armv8mbl.h │ │ │ ├── core_armv8mml.h │ │ │ ├── core_cm0.h │ │ │ ├── core_cm0plus.h │ │ │ ├── core_cm1.h │ │ │ ├── core_cm23.h │ │ │ ├── core_cm3.h │ │ │ ├── core_cm33.h │ │ │ ├── core_cm4.h │ │ │ ├── core_cm7.h │ │ │ ├── core_sc000.h │ │ │ ├── core_sc300.h │ │ │ ├── mpu_armv7.h │ │ │ ├── mpu_armv8.h │ │ │ └── tz_context.h │ └── STM32F1xx_HAL_Driver │ │ ├── Inc │ │ ├── Legacy │ │ │ └── stm32_hal_legacy.h │ │ ├── stm32f1xx_hal.h │ │ ├── stm32f1xx_hal_cortex.h │ │ ├── stm32f1xx_hal_def.h │ │ ├── stm32f1xx_hal_dma.h │ │ ├── stm32f1xx_hal_dma_ex.h │ │ ├── stm32f1xx_hal_exti.h │ │ ├── stm32f1xx_hal_flash.h │ │ ├── stm32f1xx_hal_flash_ex.h │ │ ├── stm32f1xx_hal_gpio.h │ │ ├── stm32f1xx_hal_gpio_ex.h │ │ ├── stm32f1xx_hal_pwr.h │ │ ├── stm32f1xx_hal_rcc.h │ │ ├── stm32f1xx_hal_rcc_ex.h │ │ ├── stm32f1xx_hal_tim.h │ │ └── stm32f1xx_hal_tim_ex.h │ │ └── Src │ │ ├── stm32f1xx_hal.c │ │ ├── stm32f1xx_hal_cortex.c │ │ ├── stm32f1xx_hal_dma.c │ │ ├── stm32f1xx_hal_exti.c │ │ ├── stm32f1xx_hal_flash.c │ │ ├── stm32f1xx_hal_flash_ex.c │ │ ├── stm32f1xx_hal_gpio.c │ │ ├── stm32f1xx_hal_gpio_ex.c │ │ ├── stm32f1xx_hal_pwr.c │ │ ├── stm32f1xx_hal_rcc.c │ │ ├── stm32f1xx_hal_rcc_ex.c │ │ ├── stm32f1xx_hal_tim.c │ │ └── stm32f1xx_hal_tim_ex.c ├── STM32F103C8TX_FLASH.ld └── readme.txt ├── BluePillDemo_Debounced_Buttons ├── .cproject ├── .gitignore ├── .mxproject ├── .project ├── .settings │ └── language.settings.xml ├── BluePillDemo_Debounced_Buttons Debug.launch ├── BluePillDemo_Debounced_Buttons.ioc ├── Core │ ├── Inc │ │ ├── main.h │ │ ├── stm32f1xx_hal_conf.h │ │ └── stm32f1xx_it.h │ ├── Src │ │ ├── main.c │ │ ├── stm32f1xx_hal_msp.c │ │ ├── stm32f1xx_it.c │ │ ├── syscalls.c │ │ ├── sysmem.c │ │ └── system_stm32f1xx.c │ └── Startup │ │ └── startup_stm32f103c8tx.s ├── Drivers │ ├── CMSIS │ │ ├── Device │ │ │ └── ST │ │ │ │ └── STM32F1xx │ │ │ │ └── Include │ │ │ │ ├── stm32f103xb.h │ │ │ │ ├── stm32f1xx.h │ │ │ │ └── system_stm32f1xx.h │ │ └── Include │ │ │ ├── cmsis_armcc.h │ │ │ ├── cmsis_armclang.h │ │ │ ├── cmsis_compiler.h │ │ │ ├── cmsis_gcc.h │ │ │ ├── cmsis_iccarm.h │ │ │ ├── cmsis_version.h │ │ │ ├── core_armv8mbl.h │ │ │ ├── core_armv8mml.h │ │ │ ├── core_cm0.h │ │ │ ├── core_cm0plus.h │ │ │ ├── core_cm1.h │ │ │ ├── core_cm23.h │ │ │ ├── core_cm3.h │ │ │ ├── core_cm33.h │ │ │ ├── core_cm4.h │ │ │ ├── core_cm7.h │ │ │ ├── core_sc000.h │ │ │ ├── core_sc300.h │ │ │ ├── mpu_armv7.h │ │ │ ├── mpu_armv8.h │ │ │ └── tz_context.h │ └── STM32F1xx_HAL_Driver │ │ ├── Inc │ │ ├── Legacy │ │ │ └── stm32_hal_legacy.h │ │ ├── stm32f1xx_hal.h │ │ ├── stm32f1xx_hal_cortex.h │ │ ├── stm32f1xx_hal_def.h │ │ ├── stm32f1xx_hal_dma.h │ │ ├── stm32f1xx_hal_dma_ex.h │ │ ├── stm32f1xx_hal_exti.h │ │ ├── stm32f1xx_hal_flash.h │ │ ├── stm32f1xx_hal_flash_ex.h │ │ ├── stm32f1xx_hal_gpio.h │ │ ├── stm32f1xx_hal_gpio_ex.h │ │ ├── stm32f1xx_hal_pwr.h │ │ ├── stm32f1xx_hal_rcc.h │ │ ├── stm32f1xx_hal_rcc_ex.h │ │ ├── stm32f1xx_hal_tim.h │ │ └── stm32f1xx_hal_tim_ex.h │ │ └── Src │ │ ├── stm32f1xx_hal.c │ │ ├── stm32f1xx_hal_cortex.c │ │ ├── stm32f1xx_hal_dma.c │ │ ├── stm32f1xx_hal_exti.c │ │ ├── stm32f1xx_hal_flash.c │ │ ├── stm32f1xx_hal_flash_ex.c │ │ ├── stm32f1xx_hal_gpio.c │ │ ├── stm32f1xx_hal_gpio_ex.c │ │ ├── stm32f1xx_hal_pwr.c │ │ ├── stm32f1xx_hal_rcc.c │ │ ├── stm32f1xx_hal_rcc_ex.c │ │ ├── stm32f1xx_hal_tim.c │ │ └── stm32f1xx_hal_tim_ex.c ├── STM32F103C8TX_FLASH.ld ├── readme.txt └── schematic.pdf ├── BluePillDemo_EXTI ├── .cproject ├── .gitignore ├── .mxproject ├── .project ├── .settings │ └── language.settings.xml ├── BluePillDemo_EXTI Debug.launch ├── BluePillDemo_EXTI.ioc ├── Core │ ├── Inc │ │ ├── main.h │ │ ├── stm32f1xx_hal_conf.h │ │ └── stm32f1xx_it.h │ ├── Src │ │ ├── main.c │ │ ├── stm32f1xx_hal_msp.c │ │ ├── stm32f1xx_it.c │ │ ├── syscalls.c │ │ ├── sysmem.c │ │ └── system_stm32f1xx.c │ └── Startup │ │ └── startup_stm32f103c8tx.s ├── Drivers │ ├── CMSIS │ │ ├── Device │ │ │ └── ST │ │ │ │ └── STM32F1xx │ │ │ │ └── Include │ │ │ │ ├── stm32f103xb.h │ │ │ │ ├── stm32f1xx.h │ │ │ │ └── system_stm32f1xx.h │ │ └── Include │ │ │ ├── cmsis_armcc.h │ │ │ ├── cmsis_armclang.h │ │ │ ├── cmsis_compiler.h │ │ │ ├── cmsis_gcc.h │ │ │ ├── cmsis_iccarm.h │ │ │ ├── cmsis_version.h │ │ │ ├── core_armv8mbl.h │ │ │ ├── core_armv8mml.h │ │ │ ├── core_cm0.h │ │ │ ├── core_cm0plus.h │ │ │ ├── core_cm1.h │ │ │ ├── core_cm23.h │ │ │ ├── core_cm3.h │ │ │ ├── core_cm33.h │ │ │ ├── core_cm4.h │ │ │ ├── core_cm7.h │ │ │ ├── core_sc000.h │ │ │ ├── core_sc300.h │ │ │ ├── mpu_armv7.h │ │ │ ├── mpu_armv8.h │ │ │ └── tz_context.h │ └── STM32F1xx_HAL_Driver │ │ ├── Inc │ │ ├── Legacy │ │ │ └── stm32_hal_legacy.h │ │ ├── stm32f1xx_hal.h │ │ ├── stm32f1xx_hal_cortex.h │ │ ├── stm32f1xx_hal_def.h │ │ ├── stm32f1xx_hal_dma.h │ │ ├── stm32f1xx_hal_dma_ex.h │ │ ├── stm32f1xx_hal_exti.h │ │ ├── stm32f1xx_hal_flash.h │ │ ├── stm32f1xx_hal_flash_ex.h │ │ ├── stm32f1xx_hal_gpio.h │ │ ├── stm32f1xx_hal_gpio_ex.h │ │ ├── stm32f1xx_hal_pwr.h │ │ ├── stm32f1xx_hal_rcc.h │ │ ├── stm32f1xx_hal_rcc_ex.h │ │ ├── stm32f1xx_hal_tim.h │ │ └── stm32f1xx_hal_tim_ex.h │ │ └── Src │ │ ├── stm32f1xx_hal.c │ │ ├── stm32f1xx_hal_cortex.c │ │ ├── stm32f1xx_hal_dma.c │ │ ├── stm32f1xx_hal_exti.c │ │ ├── stm32f1xx_hal_flash.c │ │ ├── stm32f1xx_hal_flash_ex.c │ │ ├── stm32f1xx_hal_gpio.c │ │ ├── stm32f1xx_hal_gpio_ex.c │ │ ├── stm32f1xx_hal_pwr.c │ │ ├── stm32f1xx_hal_rcc.c │ │ ├── stm32f1xx_hal_rcc_ex.c │ │ ├── stm32f1xx_hal_tim.c │ │ └── stm32f1xx_hal_tim_ex.c ├── STM32F103C8TX_FLASH.ld ├── readme.txt └── schematic.pdf ├── BluePillDemo_EXTI_4x4_Keypad ├── .cproject ├── .gitignore ├── .mxproject ├── .project ├── .settings │ └── language.settings.xml ├── BluePillDemo_EXTI_4x4_Keypad Debug.launch ├── BluePillDemo_EXTI_4x4_Keypad.ioc ├── Core │ ├── Inc │ │ ├── main.h │ │ ├── stm32f1xx_hal_conf.h │ │ └── stm32f1xx_it.h │ ├── Src │ │ ├── main.c │ │ ├── stm32f1xx_hal_msp.c │ │ ├── stm32f1xx_it.c │ │ ├── syscalls.c │ │ ├── sysmem.c │ │ └── system_stm32f1xx.c │ └── Startup │ │ └── startup_stm32f103c8tx.s ├── Drivers │ ├── CMSIS │ │ ├── Device │ │ │ └── ST │ │ │ │ └── STM32F1xx │ │ │ │ └── Include │ │ │ │ ├── stm32f103xb.h │ │ │ │ ├── stm32f1xx.h │ │ │ │ └── system_stm32f1xx.h │ │ └── Include │ │ │ ├── cmsis_armcc.h │ │ │ ├── cmsis_armclang.h │ │ │ ├── cmsis_compiler.h │ │ │ ├── cmsis_gcc.h │ │ │ ├── cmsis_iccarm.h │ │ │ ├── cmsis_version.h │ │ │ ├── core_armv8mbl.h │ │ │ ├── core_armv8mml.h │ │ │ ├── core_cm0.h │ │ │ ├── core_cm0plus.h │ │ │ ├── core_cm1.h │ │ │ ├── core_cm23.h │ │ │ ├── core_cm3.h │ │ │ ├── core_cm33.h │ │ │ ├── core_cm4.h │ │ │ ├── core_cm7.h │ │ │ ├── core_sc000.h │ │ │ ├── core_sc300.h │ │ │ ├── mpu_armv7.h │ │ │ ├── mpu_armv8.h │ │ │ └── tz_context.h │ └── STM32F1xx_HAL_Driver │ │ ├── Inc │ │ ├── Legacy │ │ │ └── stm32_hal_legacy.h │ │ ├── stm32f1xx_hal.h │ │ ├── stm32f1xx_hal_cortex.h │ │ ├── stm32f1xx_hal_def.h │ │ ├── stm32f1xx_hal_dma.h │ │ ├── stm32f1xx_hal_dma_ex.h │ │ ├── stm32f1xx_hal_exti.h │ │ ├── stm32f1xx_hal_flash.h │ │ ├── stm32f1xx_hal_flash_ex.h │ │ ├── stm32f1xx_hal_gpio.h │ │ ├── stm32f1xx_hal_gpio_ex.h │ │ ├── stm32f1xx_hal_pwr.h │ │ ├── stm32f1xx_hal_rcc.h │ │ ├── stm32f1xx_hal_rcc_ex.h │ │ ├── stm32f1xx_hal_tim.h │ │ ├── stm32f1xx_hal_tim_ex.h │ │ └── stm32f1xx_hal_uart.h │ │ └── Src │ │ ├── stm32f1xx_hal.c │ │ ├── stm32f1xx_hal_cortex.c │ │ ├── stm32f1xx_hal_dma.c │ │ ├── stm32f1xx_hal_exti.c │ │ ├── stm32f1xx_hal_flash.c │ │ ├── stm32f1xx_hal_flash_ex.c │ │ ├── stm32f1xx_hal_gpio.c │ │ ├── stm32f1xx_hal_gpio_ex.c │ │ ├── stm32f1xx_hal_pwr.c │ │ ├── stm32f1xx_hal_rcc.c │ │ ├── stm32f1xx_hal_rcc_ex.c │ │ ├── stm32f1xx_hal_tim.c │ │ ├── stm32f1xx_hal_tim_ex.c │ │ └── stm32f1xx_hal_uart.c ├── STM32F103C8TX_FLASH.ld ├── readme.txt └── schematic.pdf ├── BluePillDemo_Flash ├── .cproject ├── .gitignore ├── .mxproject ├── .project ├── .settings │ └── language.settings.xml ├── BluePillDemo_Flash Debug.launch ├── BluePillDemo_Flash.ioc ├── Core │ ├── Inc │ │ ├── main.h │ │ ├── stm32f1xx_hal_conf.h │ │ └── stm32f1xx_it.h │ ├── Src │ │ ├── main.c │ │ ├── stm32f1xx_hal_msp.c │ │ ├── stm32f1xx_it.c │ │ ├── syscalls.c │ │ ├── sysmem.c │ │ └── system_stm32f1xx.c │ └── Startup │ │ └── startup_stm32f103c8tx.s ├── Drivers │ ├── CMSIS │ │ ├── Device │ │ │ └── ST │ │ │ │ └── STM32F1xx │ │ │ │ └── Include │ │ │ │ ├── stm32f103xb.h │ │ │ │ ├── stm32f1xx.h │ │ │ │ └── system_stm32f1xx.h │ │ └── Include │ │ │ ├── cmsis_armcc.h │ │ │ ├── cmsis_armclang.h │ │ │ ├── cmsis_compiler.h │ │ │ ├── cmsis_gcc.h │ │ │ ├── cmsis_iccarm.h │ │ │ ├── cmsis_version.h │ │ │ ├── core_armv8mbl.h │ │ │ ├── core_armv8mml.h │ │ │ ├── core_cm0.h │ │ │ ├── core_cm0plus.h │ │ │ ├── core_cm1.h │ │ │ ├── core_cm23.h │ │ │ ├── core_cm3.h │ │ │ ├── core_cm33.h │ │ │ ├── core_cm4.h │ │ │ ├── core_cm7.h │ │ │ ├── core_sc000.h │ │ │ ├── core_sc300.h │ │ │ ├── mpu_armv7.h │ │ │ ├── mpu_armv8.h │ │ │ └── tz_context.h │ └── STM32F1xx_HAL_Driver │ │ ├── Inc │ │ ├── Legacy │ │ │ └── stm32_hal_legacy.h │ │ ├── stm32f1xx_hal.h │ │ ├── stm32f1xx_hal_cortex.h │ │ ├── stm32f1xx_hal_def.h │ │ ├── stm32f1xx_hal_dma.h │ │ ├── stm32f1xx_hal_dma_ex.h │ │ ├── stm32f1xx_hal_exti.h │ │ ├── stm32f1xx_hal_flash.h │ │ ├── stm32f1xx_hal_flash_ex.h │ │ ├── stm32f1xx_hal_gpio.h │ │ ├── stm32f1xx_hal_gpio_ex.h │ │ ├── stm32f1xx_hal_pwr.h │ │ ├── stm32f1xx_hal_rcc.h │ │ ├── stm32f1xx_hal_rcc_ex.h │ │ ├── stm32f1xx_hal_tim.h │ │ └── stm32f1xx_hal_tim_ex.h │ │ └── Src │ │ ├── stm32f1xx_hal.c │ │ ├── stm32f1xx_hal_cortex.c │ │ ├── stm32f1xx_hal_dma.c │ │ ├── stm32f1xx_hal_exti.c │ │ ├── stm32f1xx_hal_flash.c │ │ ├── stm32f1xx_hal_flash_ex.c │ │ ├── stm32f1xx_hal_gpio.c │ │ ├── stm32f1xx_hal_gpio_ex.c │ │ ├── stm32f1xx_hal_pwr.c │ │ ├── stm32f1xx_hal_rcc.c │ │ ├── stm32f1xx_hal_rcc_ex.c │ │ ├── stm32f1xx_hal_tim.c │ │ └── stm32f1xx_hal_tim_ex.c ├── STM32F103C8TX_FLASH.ld └── readme.txt ├── BluePillDemo_FreeRTOS ├── .cproject ├── .gitignore ├── .mxproject ├── .project ├── .settings │ └── language.settings.xml ├── BluePillDemo_FreeRTOS Debug.launch ├── BluePillDemo_FreeRTOS.ioc ├── Core │ ├── Inc │ │ ├── FreeRTOSConfig.h │ │ ├── main.h │ │ ├── stm32f1xx_hal_conf.h │ │ └── stm32f1xx_it.h │ ├── Src │ │ ├── freertos.c │ │ ├── main.c │ │ ├── stm32f1xx_hal_msp.c │ │ ├── stm32f1xx_hal_timebase_tim.c │ │ ├── stm32f1xx_it.c │ │ ├── syscalls.c │ │ ├── sysmem.c │ │ └── system_stm32f1xx.c │ └── Startup │ │ └── startup_stm32f103c8tx.s ├── Drivers │ ├── CMSIS │ │ ├── Device │ │ │ └── ST │ │ │ │ └── STM32F1xx │ │ │ │ └── Include │ │ │ │ ├── stm32f103xb.h │ │ │ │ ├── stm32f1xx.h │ │ │ │ └── system_stm32f1xx.h │ │ └── Include │ │ │ ├── cmsis_armcc.h │ │ │ ├── cmsis_armclang.h │ │ │ ├── cmsis_compiler.h │ │ │ ├── cmsis_gcc.h │ │ │ ├── cmsis_iccarm.h │ │ │ ├── cmsis_version.h │ │ │ ├── core_armv8mbl.h │ │ │ ├── core_armv8mml.h │ │ │ ├── core_cm0.h │ │ │ ├── core_cm0plus.h │ │ │ ├── core_cm1.h │ │ │ ├── core_cm23.h │ │ │ ├── core_cm3.h │ │ │ ├── core_cm33.h │ │ │ ├── core_cm4.h │ │ │ ├── core_cm7.h │ │ │ ├── core_sc000.h │ │ │ ├── core_sc300.h │ │ │ ├── mpu_armv7.h │ │ │ ├── mpu_armv8.h │ │ │ └── tz_context.h │ └── STM32F1xx_HAL_Driver │ │ ├── Inc │ │ ├── Legacy │ │ │ └── stm32_hal_legacy.h │ │ ├── stm32f1xx_hal.h │ │ ├── stm32f1xx_hal_cortex.h │ │ ├── stm32f1xx_hal_def.h │ │ ├── stm32f1xx_hal_dma.h │ │ ├── stm32f1xx_hal_dma_ex.h │ │ ├── stm32f1xx_hal_exti.h │ │ ├── stm32f1xx_hal_flash.h │ │ ├── stm32f1xx_hal_flash_ex.h │ │ ├── stm32f1xx_hal_gpio.h │ │ ├── stm32f1xx_hal_gpio_ex.h │ │ ├── stm32f1xx_hal_pwr.h │ │ ├── stm32f1xx_hal_rcc.h │ │ ├── stm32f1xx_hal_rcc_ex.h │ │ ├── stm32f1xx_hal_tim.h │ │ └── stm32f1xx_hal_tim_ex.h │ │ └── Src │ │ ├── stm32f1xx_hal.c │ │ ├── stm32f1xx_hal_cortex.c │ │ ├── stm32f1xx_hal_dma.c │ │ ├── stm32f1xx_hal_exti.c │ │ ├── stm32f1xx_hal_flash.c │ │ ├── stm32f1xx_hal_flash_ex.c │ │ ├── stm32f1xx_hal_gpio.c │ │ ├── stm32f1xx_hal_gpio_ex.c │ │ ├── stm32f1xx_hal_pwr.c │ │ ├── stm32f1xx_hal_rcc.c │ │ ├── stm32f1xx_hal_rcc_ex.c │ │ ├── stm32f1xx_hal_tim.c │ │ └── stm32f1xx_hal_tim_ex.c ├── Middlewares │ └── Third_Party │ │ └── FreeRTOS │ │ └── Source │ │ ├── CMSIS_RTOS_V2 │ │ ├── cmsis_os.h │ │ ├── cmsis_os2.c │ │ └── cmsis_os2.h │ │ ├── croutine.c │ │ ├── event_groups.c │ │ ├── include │ │ ├── FreeRTOS.h │ │ ├── StackMacros.h │ │ ├── croutine.h │ │ ├── deprecated_definitions.h │ │ ├── event_groups.h │ │ ├── list.h │ │ ├── message_buffer.h │ │ ├── mpu_prototypes.h │ │ ├── mpu_wrappers.h │ │ ├── portable.h │ │ ├── projdefs.h │ │ ├── queue.h │ │ ├── semphr.h │ │ ├── stack_macros.h │ │ ├── stream_buffer.h │ │ ├── task.h │ │ └── timers.h │ │ ├── list.c │ │ ├── portable │ │ ├── GCC │ │ │ └── ARM_CM3 │ │ │ │ ├── port.c │ │ │ │ └── portmacro.h │ │ └── MemMang │ │ │ └── heap_4.c │ │ ├── queue.c │ │ ├── stream_buffer.c │ │ ├── tasks.c │ │ └── timers.c ├── STM32F103C8TX_FLASH.ld └── readme.txt ├── BluePillDemo_FreeRTOS_FatFS ├── .cproject ├── .gitignore ├── .mxproject ├── .project ├── .settings │ └── language.settings.xml ├── BluePillDemo_FreeRTOS_FatFS Debug.launch ├── BluePillDemo_FreeRTOS_FatFS.ioc ├── Core │ ├── Inc │ │ ├── FreeRTOSConfig.h │ │ ├── main.h │ │ ├── stm32f1xx_hal_conf.h │ │ └── stm32f1xx_it.h │ ├── Src │ │ ├── freertos.c │ │ ├── main.c │ │ ├── stm32f1xx_hal_msp.c │ │ ├── stm32f1xx_hal_timebase_tim.c │ │ ├── stm32f1xx_it.c │ │ ├── syscalls.c │ │ ├── sysmem.c │ │ └── system_stm32f1xx.c │ └── Startup │ │ └── startup_stm32f103c8tx.s ├── Drivers │ ├── CMSIS │ │ ├── Device │ │ │ └── ST │ │ │ │ └── STM32F1xx │ │ │ │ └── Include │ │ │ │ ├── stm32f103xb.h │ │ │ │ ├── stm32f1xx.h │ │ │ │ └── system_stm32f1xx.h │ │ └── Include │ │ │ ├── cmsis_armcc.h │ │ │ ├── cmsis_armclang.h │ │ │ ├── cmsis_compiler.h │ │ │ ├── cmsis_gcc.h │ │ │ ├── cmsis_iccarm.h │ │ │ ├── cmsis_version.h │ │ │ ├── core_armv8mbl.h │ │ │ ├── core_armv8mml.h │ │ │ ├── core_cm0.h │ │ │ ├── core_cm0plus.h │ │ │ ├── core_cm1.h │ │ │ ├── core_cm23.h │ │ │ ├── core_cm3.h │ │ │ ├── core_cm33.h │ │ │ ├── core_cm4.h │ │ │ ├── core_cm7.h │ │ │ ├── core_sc000.h │ │ │ ├── core_sc300.h │ │ │ ├── mpu_armv7.h │ │ │ ├── mpu_armv8.h │ │ │ └── tz_context.h │ └── STM32F1xx_HAL_Driver │ │ ├── Inc │ │ ├── Legacy │ │ │ └── stm32_hal_legacy.h │ │ ├── stm32f1xx_hal.h │ │ ├── stm32f1xx_hal_cortex.h │ │ ├── stm32f1xx_hal_def.h │ │ ├── stm32f1xx_hal_dma.h │ │ ├── stm32f1xx_hal_dma_ex.h │ │ ├── stm32f1xx_hal_exti.h │ │ ├── stm32f1xx_hal_flash.h │ │ ├── stm32f1xx_hal_flash_ex.h │ │ ├── stm32f1xx_hal_gpio.h │ │ ├── stm32f1xx_hal_gpio_ex.h │ │ ├── stm32f1xx_hal_pwr.h │ │ ├── stm32f1xx_hal_rcc.h │ │ ├── stm32f1xx_hal_rcc_ex.h │ │ ├── stm32f1xx_hal_spi.h │ │ ├── stm32f1xx_hal_tim.h │ │ └── stm32f1xx_hal_tim_ex.h │ │ └── Src │ │ ├── stm32f1xx_hal.c │ │ ├── stm32f1xx_hal_cortex.c │ │ ├── stm32f1xx_hal_dma.c │ │ ├── stm32f1xx_hal_exti.c │ │ ├── stm32f1xx_hal_flash.c │ │ ├── stm32f1xx_hal_flash_ex.c │ │ ├── stm32f1xx_hal_gpio.c │ │ ├── stm32f1xx_hal_gpio_ex.c │ │ ├── stm32f1xx_hal_pwr.c │ │ ├── stm32f1xx_hal_rcc.c │ │ ├── stm32f1xx_hal_rcc_ex.c │ │ ├── stm32f1xx_hal_spi.c │ │ ├── stm32f1xx_hal_tim.c │ │ └── stm32f1xx_hal_tim_ex.c ├── FATFS │ ├── App │ │ ├── fatfs.c │ │ └── fatfs.h │ └── Target │ │ ├── ffconf.h │ │ ├── user_diskio.c │ │ └── user_diskio.h ├── Middlewares │ └── Third_Party │ │ ├── FatFs │ │ └── src │ │ │ ├── diskio.c │ │ │ ├── diskio.h │ │ │ ├── ff.c │ │ │ ├── ff.h │ │ │ ├── ff_gen_drv.c │ │ │ ├── ff_gen_drv.h │ │ │ ├── integer.h │ │ │ └── option │ │ │ └── syscall.c │ │ └── FreeRTOS │ │ └── Source │ │ ├── CMSIS_RTOS_V2 │ │ ├── cmsis_os.h │ │ ├── cmsis_os2.c │ │ └── cmsis_os2.h │ │ ├── croutine.c │ │ ├── event_groups.c │ │ ├── include │ │ ├── FreeRTOS.h │ │ ├── StackMacros.h │ │ ├── croutine.h │ │ ├── deprecated_definitions.h │ │ ├── event_groups.h │ │ ├── list.h │ │ ├── message_buffer.h │ │ ├── mpu_prototypes.h │ │ ├── mpu_wrappers.h │ │ ├── portable.h │ │ ├── projdefs.h │ │ ├── queue.h │ │ ├── semphr.h │ │ ├── stack_macros.h │ │ ├── stream_buffer.h │ │ ├── task.h │ │ └── timers.h │ │ ├── list.c │ │ ├── portable │ │ ├── GCC │ │ │ └── ARM_CM3 │ │ │ │ ├── port.c │ │ │ │ └── portmacro.h │ │ └── MemMang │ │ │ └── heap_4.c │ │ ├── queue.c │ │ ├── stream_buffer.c │ │ ├── tasks.c │ │ └── timers.c ├── STM32F103C8TX_FLASH.ld ├── readme.txt └── schematic.pdf ├── BluePillDemo_FreeRTOS_I2C_Pressure_BMP280_Server ├── .cproject ├── .gitignore ├── .mxproject ├── .project ├── .settings │ └── language.settings.xml ├── BluePillDemo_FreeRTOS_I2C_Pressure_BMP280_Server Debug.launch ├── BluePillDemo_FreeRTOS_I2C_Pressure_BMP280_Server.ioc ├── Core │ ├── Inc │ │ ├── FreeRTOSConfig.h │ │ ├── main.h │ │ ├── pressure_sensor.h │ │ ├── stm32f1xx_hal_conf.h │ │ └── stm32f1xx_it.h │ ├── Src │ │ ├── freertos.c │ │ ├── main.c │ │ ├── pressure_sensor.c │ │ ├── stm32f1xx_hal_msp.c │ │ ├── stm32f1xx_hal_timebase_tim.c │ │ ├── stm32f1xx_it.c │ │ ├── syscalls.c │ │ ├── sysmem.c │ │ └── system_stm32f1xx.c │ └── Startup │ │ └── startup_stm32f103c8tx.s ├── Drivers │ ├── CMSIS │ │ ├── Device │ │ │ └── ST │ │ │ │ └── STM32F1xx │ │ │ │ └── Include │ │ │ │ ├── stm32f103xb.h │ │ │ │ ├── stm32f1xx.h │ │ │ │ └── system_stm32f1xx.h │ │ └── Include │ │ │ ├── cmsis_armcc.h │ │ │ ├── cmsis_armclang.h │ │ │ ├── cmsis_compiler.h │ │ │ ├── cmsis_gcc.h │ │ │ ├── cmsis_iccarm.h │ │ │ ├── cmsis_version.h │ │ │ ├── core_armv8mbl.h │ │ │ ├── core_armv8mml.h │ │ │ ├── core_cm0.h │ │ │ ├── core_cm0plus.h │ │ │ ├── core_cm1.h │ │ │ ├── core_cm23.h │ │ │ ├── core_cm3.h │ │ │ ├── core_cm33.h │ │ │ ├── core_cm4.h │ │ │ ├── core_cm7.h │ │ │ ├── core_sc000.h │ │ │ ├── core_sc300.h │ │ │ ├── mpu_armv7.h │ │ │ ├── mpu_armv8.h │ │ │ └── tz_context.h │ └── STM32F1xx_HAL_Driver │ │ ├── Inc │ │ ├── Legacy │ │ │ └── stm32_hal_legacy.h │ │ ├── stm32f1xx_hal.h │ │ ├── stm32f1xx_hal_cortex.h │ │ ├── stm32f1xx_hal_def.h │ │ ├── stm32f1xx_hal_dma.h │ │ ├── stm32f1xx_hal_dma_ex.h │ │ ├── stm32f1xx_hal_exti.h │ │ ├── stm32f1xx_hal_flash.h │ │ ├── stm32f1xx_hal_flash_ex.h │ │ ├── stm32f1xx_hal_gpio.h │ │ ├── stm32f1xx_hal_gpio_ex.h │ │ ├── stm32f1xx_hal_i2c.h │ │ ├── stm32f1xx_hal_pwr.h │ │ ├── stm32f1xx_hal_rcc.h │ │ ├── stm32f1xx_hal_rcc_ex.h │ │ ├── stm32f1xx_hal_tim.h │ │ └── stm32f1xx_hal_tim_ex.h │ │ └── Src │ │ ├── stm32f1xx_hal.c │ │ ├── stm32f1xx_hal_cortex.c │ │ ├── stm32f1xx_hal_dma.c │ │ ├── stm32f1xx_hal_exti.c │ │ ├── stm32f1xx_hal_flash.c │ │ ├── stm32f1xx_hal_flash_ex.c │ │ ├── stm32f1xx_hal_gpio.c │ │ ├── stm32f1xx_hal_gpio_ex.c │ │ ├── stm32f1xx_hal_i2c.c │ │ ├── stm32f1xx_hal_pwr.c │ │ ├── stm32f1xx_hal_rcc.c │ │ ├── stm32f1xx_hal_rcc_ex.c │ │ ├── stm32f1xx_hal_tim.c │ │ └── stm32f1xx_hal_tim_ex.c ├── Middlewares │ └── Third_Party │ │ └── FreeRTOS │ │ └── Source │ │ ├── CMSIS_RTOS_V2 │ │ ├── cmsis_os.h │ │ ├── cmsis_os2.c │ │ └── cmsis_os2.h │ │ ├── croutine.c │ │ ├── event_groups.c │ │ ├── include │ │ ├── FreeRTOS.h │ │ ├── StackMacros.h │ │ ├── croutine.h │ │ ├── deprecated_definitions.h │ │ ├── event_groups.h │ │ ├── list.h │ │ ├── message_buffer.h │ │ ├── mpu_prototypes.h │ │ ├── mpu_wrappers.h │ │ ├── portable.h │ │ ├── projdefs.h │ │ ├── queue.h │ │ ├── semphr.h │ │ ├── stack_macros.h │ │ ├── stream_buffer.h │ │ ├── task.h │ │ └── timers.h │ │ ├── list.c │ │ ├── portable │ │ ├── GCC │ │ │ └── ARM_CM3 │ │ │ │ ├── port.c │ │ │ │ └── portmacro.h │ │ └── MemMang │ │ │ └── heap_4.c │ │ ├── queue.c │ │ ├── stream_buffer.c │ │ ├── tasks.c │ │ └── timers.c ├── STM32F103C8TX_FLASH.ld ├── readme.txt └── schematic.pdf ├── BluePillDemo_FreeRTOS_LCD_HD44780_Server ├── .cproject ├── .gitignore ├── .mxproject ├── .project ├── .settings │ └── language.settings.xml ├── BluePillDemo_FreeRTOS_LCD_HD44780_Server Debug.launch ├── BluePillDemo_FreeRTOS_LCD_HD44780_Server.ioc ├── Core │ ├── Inc │ │ ├── FreeRTOSConfig.h │ │ ├── lcd.h │ │ ├── main.h │ │ ├── stm32f1xx_hal_conf.h │ │ └── stm32f1xx_it.h │ ├── Src │ │ ├── freertos.c │ │ ├── lcd.c │ │ ├── main.c │ │ ├── stm32f1xx_hal_msp.c │ │ ├── stm32f1xx_hal_timebase_tim.c │ │ ├── stm32f1xx_it.c │ │ ├── syscalls.c │ │ ├── sysmem.c │ │ └── system_stm32f1xx.c │ └── Startup │ │ └── startup_stm32f103c8tx.s ├── Drivers │ ├── CMSIS │ │ ├── Device │ │ │ └── ST │ │ │ │ └── STM32F1xx │ │ │ │ └── Include │ │ │ │ ├── stm32f103xb.h │ │ │ │ ├── stm32f1xx.h │ │ │ │ └── system_stm32f1xx.h │ │ └── Include │ │ │ ├── cmsis_armcc.h │ │ │ ├── cmsis_armclang.h │ │ │ ├── cmsis_compiler.h │ │ │ ├── cmsis_gcc.h │ │ │ ├── cmsis_iccarm.h │ │ │ ├── cmsis_version.h │ │ │ ├── core_armv8mbl.h │ │ │ ├── core_armv8mml.h │ │ │ ├── core_cm0.h │ │ │ ├── core_cm0plus.h │ │ │ ├── core_cm1.h │ │ │ ├── core_cm23.h │ │ │ ├── core_cm3.h │ │ │ ├── core_cm33.h │ │ │ ├── core_cm4.h │ │ │ ├── core_cm7.h │ │ │ ├── core_sc000.h │ │ │ ├── core_sc300.h │ │ │ ├── mpu_armv7.h │ │ │ ├── mpu_armv8.h │ │ │ └── tz_context.h │ └── STM32F1xx_HAL_Driver │ │ ├── Inc │ │ ├── Legacy │ │ │ └── stm32_hal_legacy.h │ │ ├── stm32f1xx_hal.h │ │ ├── stm32f1xx_hal_cortex.h │ │ ├── stm32f1xx_hal_def.h │ │ ├── stm32f1xx_hal_dma.h │ │ ├── stm32f1xx_hal_dma_ex.h │ │ ├── stm32f1xx_hal_exti.h │ │ ├── stm32f1xx_hal_flash.h │ │ ├── stm32f1xx_hal_flash_ex.h │ │ ├── stm32f1xx_hal_gpio.h │ │ ├── stm32f1xx_hal_gpio_ex.h │ │ ├── stm32f1xx_hal_pwr.h │ │ ├── stm32f1xx_hal_rcc.h │ │ ├── stm32f1xx_hal_rcc_ex.h │ │ ├── stm32f1xx_hal_tim.h │ │ └── stm32f1xx_hal_tim_ex.h │ │ └── Src │ │ ├── stm32f1xx_hal.c │ │ ├── stm32f1xx_hal_cortex.c │ │ ├── stm32f1xx_hal_dma.c │ │ ├── stm32f1xx_hal_exti.c │ │ ├── stm32f1xx_hal_flash.c │ │ ├── stm32f1xx_hal_flash_ex.c │ │ ├── stm32f1xx_hal_gpio.c │ │ ├── stm32f1xx_hal_gpio_ex.c │ │ ├── stm32f1xx_hal_pwr.c │ │ ├── stm32f1xx_hal_rcc.c │ │ ├── stm32f1xx_hal_rcc_ex.c │ │ ├── stm32f1xx_hal_tim.c │ │ └── stm32f1xx_hal_tim_ex.c ├── Middlewares │ └── Third_Party │ │ └── FreeRTOS │ │ └── Source │ │ ├── CMSIS_RTOS_V2 │ │ ├── cmsis_os.h │ │ ├── cmsis_os2.c │ │ └── cmsis_os2.h │ │ ├── croutine.c │ │ ├── event_groups.c │ │ ├── include │ │ ├── FreeRTOS.h │ │ ├── StackMacros.h │ │ ├── croutine.h │ │ ├── deprecated_definitions.h │ │ ├── event_groups.h │ │ ├── list.h │ │ ├── message_buffer.h │ │ ├── mpu_prototypes.h │ │ ├── mpu_wrappers.h │ │ ├── portable.h │ │ ├── projdefs.h │ │ ├── queue.h │ │ ├── semphr.h │ │ ├── stack_macros.h │ │ ├── stream_buffer.h │ │ ├── task.h │ │ └── timers.h │ │ ├── list.c │ │ ├── portable │ │ ├── GCC │ │ │ └── ARM_CM3 │ │ │ │ ├── port.c │ │ │ │ └── portmacro.h │ │ └── MemMang │ │ │ └── heap_4.c │ │ ├── queue.c │ │ ├── stream_buffer.c │ │ ├── tasks.c │ │ └── timers.c ├── STM32F103C8TX_FLASH.ld ├── readme.txt └── schematic.pdf ├── BluePillDemo_GPIO ├── .cproject ├── .gitignore ├── .mxproject ├── .project ├── .settings │ └── language.settings.xml ├── BluePillDemo_GPIO Debug.launch ├── BluePillDemo_GPIO.ioc ├── Core │ ├── Inc │ │ ├── main.h │ │ ├── stm32f1xx_hal_conf.h │ │ └── stm32f1xx_it.h │ ├── Src │ │ ├── main.c │ │ ├── stm32f1xx_hal_msp.c │ │ ├── stm32f1xx_it.c │ │ ├── syscalls.c │ │ ├── sysmem.c │ │ └── system_stm32f1xx.c │ └── Startup │ │ └── startup_stm32f103c8tx.s ├── Drivers │ ├── CMSIS │ │ ├── Device │ │ │ └── ST │ │ │ │ └── STM32F1xx │ │ │ │ └── Include │ │ │ │ ├── stm32f103xb.h │ │ │ │ ├── stm32f1xx.h │ │ │ │ └── system_stm32f1xx.h │ │ └── Include │ │ │ ├── cmsis_armcc.h │ │ │ ├── cmsis_armclang.h │ │ │ ├── cmsis_compiler.h │ │ │ ├── cmsis_gcc.h │ │ │ ├── cmsis_iccarm.h │ │ │ ├── cmsis_version.h │ │ │ ├── core_armv8mbl.h │ │ │ ├── core_armv8mml.h │ │ │ ├── core_cm0.h │ │ │ ├── core_cm0plus.h │ │ │ ├── core_cm1.h │ │ │ ├── core_cm23.h │ │ │ ├── core_cm3.h │ │ │ ├── core_cm33.h │ │ │ ├── core_cm4.h │ │ │ ├── core_cm7.h │ │ │ ├── core_sc000.h │ │ │ ├── core_sc300.h │ │ │ ├── mpu_armv7.h │ │ │ ├── mpu_armv8.h │ │ │ └── tz_context.h │ └── STM32F1xx_HAL_Driver │ │ ├── Inc │ │ ├── Legacy │ │ │ └── stm32_hal_legacy.h │ │ ├── stm32f1xx_hal.h │ │ ├── stm32f1xx_hal_cortex.h │ │ ├── stm32f1xx_hal_def.h │ │ ├── stm32f1xx_hal_dma.h │ │ ├── stm32f1xx_hal_dma_ex.h │ │ ├── stm32f1xx_hal_exti.h │ │ ├── stm32f1xx_hal_flash.h │ │ ├── stm32f1xx_hal_flash_ex.h │ │ ├── stm32f1xx_hal_gpio.h │ │ ├── stm32f1xx_hal_gpio_ex.h │ │ ├── stm32f1xx_hal_pwr.h │ │ ├── stm32f1xx_hal_rcc.h │ │ ├── stm32f1xx_hal_rcc_ex.h │ │ ├── stm32f1xx_hal_tim.h │ │ └── stm32f1xx_hal_tim_ex.h │ │ └── Src │ │ ├── stm32f1xx_hal.c │ │ ├── stm32f1xx_hal_cortex.c │ │ ├── stm32f1xx_hal_dma.c │ │ ├── stm32f1xx_hal_exti.c │ │ ├── stm32f1xx_hal_flash.c │ │ ├── stm32f1xx_hal_flash_ex.c │ │ ├── stm32f1xx_hal_gpio.c │ │ ├── stm32f1xx_hal_gpio_ex.c │ │ ├── stm32f1xx_hal_pwr.c │ │ ├── stm32f1xx_hal_rcc.c │ │ ├── stm32f1xx_hal_rcc_ex.c │ │ ├── stm32f1xx_hal_tim.c │ │ └── stm32f1xx_hal_tim_ex.c ├── STM32F103C8TX_FLASH.ld ├── readme.txt └── schematic.pdf ├── BluePillDemo_General_Timer ├── .cproject ├── .gitignore ├── .mxproject ├── .project ├── .settings │ └── language.settings.xml ├── BluePillDemo_General_Timer Debug.launch ├── BluePillDemo_General_Timer.ioc ├── Core │ ├── Inc │ │ ├── main.h │ │ ├── stm32f1xx_hal_conf.h │ │ └── stm32f1xx_it.h │ ├── Src │ │ ├── main.c │ │ ├── stm32f1xx_hal_msp.c │ │ ├── stm32f1xx_it.c │ │ ├── syscalls.c │ │ ├── sysmem.c │ │ └── system_stm32f1xx.c │ └── Startup │ │ └── startup_stm32f103c8tx.s ├── Drivers │ ├── CMSIS │ │ ├── Device │ │ │ └── ST │ │ │ │ └── STM32F1xx │ │ │ │ └── Include │ │ │ │ ├── stm32f103xb.h │ │ │ │ ├── stm32f1xx.h │ │ │ │ └── system_stm32f1xx.h │ │ └── Include │ │ │ ├── cmsis_armcc.h │ │ │ ├── cmsis_armclang.h │ │ │ ├── cmsis_compiler.h │ │ │ ├── cmsis_gcc.h │ │ │ ├── cmsis_iccarm.h │ │ │ ├── cmsis_version.h │ │ │ ├── core_armv8mbl.h │ │ │ ├── core_armv8mml.h │ │ │ ├── core_cm0.h │ │ │ ├── core_cm0plus.h │ │ │ ├── core_cm1.h │ │ │ ├── core_cm23.h │ │ │ ├── core_cm3.h │ │ │ ├── core_cm33.h │ │ │ ├── core_cm4.h │ │ │ ├── core_cm7.h │ │ │ ├── core_sc000.h │ │ │ ├── core_sc300.h │ │ │ ├── mpu_armv7.h │ │ │ ├── mpu_armv8.h │ │ │ └── tz_context.h │ └── STM32F1xx_HAL_Driver │ │ ├── Inc │ │ ├── Legacy │ │ │ └── stm32_hal_legacy.h │ │ ├── stm32f1xx_hal.h │ │ ├── stm32f1xx_hal_cortex.h │ │ ├── stm32f1xx_hal_def.h │ │ ├── stm32f1xx_hal_dma.h │ │ ├── stm32f1xx_hal_dma_ex.h │ │ ├── stm32f1xx_hal_exti.h │ │ ├── stm32f1xx_hal_flash.h │ │ ├── stm32f1xx_hal_flash_ex.h │ │ ├── stm32f1xx_hal_gpio.h │ │ ├── stm32f1xx_hal_gpio_ex.h │ │ ├── stm32f1xx_hal_pwr.h │ │ ├── stm32f1xx_hal_rcc.h │ │ ├── stm32f1xx_hal_rcc_ex.h │ │ ├── stm32f1xx_hal_tim.h │ │ └── stm32f1xx_hal_tim_ex.h │ │ └── Src │ │ ├── stm32f1xx_hal.c │ │ ├── stm32f1xx_hal_cortex.c │ │ ├── stm32f1xx_hal_dma.c │ │ ├── stm32f1xx_hal_exti.c │ │ ├── stm32f1xx_hal_flash.c │ │ ├── stm32f1xx_hal_flash_ex.c │ │ ├── stm32f1xx_hal_gpio.c │ │ ├── stm32f1xx_hal_gpio_ex.c │ │ ├── stm32f1xx_hal_pwr.c │ │ ├── stm32f1xx_hal_rcc.c │ │ ├── stm32f1xx_hal_rcc_ex.c │ │ ├── stm32f1xx_hal_tim.c │ │ └── stm32f1xx_hal_tim_ex.c ├── STM32F103C8TX_FLASH.ld └── readme.txt ├── BluePillDemo_General_Timer_Capture ├── .cproject ├── .gitignore ├── .mxproject ├── .project ├── .settings │ └── language.settings.xml ├── BluePillDemo_General_Timer_Capture Debug.launch ├── BluePillDemo_General_Timer_Capture.ioc ├── Core │ ├── Inc │ │ ├── main.h │ │ ├── stm32f1xx_hal_conf.h │ │ └── stm32f1xx_it.h │ ├── Src │ │ ├── main.c │ │ ├── stm32f1xx_hal_msp.c │ │ ├── stm32f1xx_it.c │ │ ├── syscalls.c │ │ ├── sysmem.c │ │ └── system_stm32f1xx.c │ └── Startup │ │ └── startup_stm32f103c8tx.s ├── Drivers │ ├── CMSIS │ │ ├── Device │ │ │ └── ST │ │ │ │ └── STM32F1xx │ │ │ │ └── Include │ │ │ │ ├── stm32f103xb.h │ │ │ │ ├── stm32f1xx.h │ │ │ │ └── system_stm32f1xx.h │ │ └── Include │ │ │ ├── cmsis_armcc.h │ │ │ ├── cmsis_armclang.h │ │ │ ├── cmsis_compiler.h │ │ │ ├── cmsis_gcc.h │ │ │ ├── cmsis_iccarm.h │ │ │ ├── cmsis_version.h │ │ │ ├── core_armv8mbl.h │ │ │ ├── core_armv8mml.h │ │ │ ├── core_cm0.h │ │ │ ├── core_cm0plus.h │ │ │ ├── core_cm1.h │ │ │ ├── core_cm23.h │ │ │ ├── core_cm3.h │ │ │ ├── core_cm33.h │ │ │ ├── core_cm4.h │ │ │ ├── core_cm7.h │ │ │ ├── core_sc000.h │ │ │ ├── core_sc300.h │ │ │ ├── mpu_armv7.h │ │ │ ├── mpu_armv8.h │ │ │ └── tz_context.h │ └── STM32F1xx_HAL_Driver │ │ ├── Inc │ │ ├── Legacy │ │ │ └── stm32_hal_legacy.h │ │ ├── stm32f1xx_hal.h │ │ ├── stm32f1xx_hal_cortex.h │ │ ├── stm32f1xx_hal_def.h │ │ ├── stm32f1xx_hal_dma.h │ │ ├── stm32f1xx_hal_dma_ex.h │ │ ├── stm32f1xx_hal_exti.h │ │ ├── stm32f1xx_hal_flash.h │ │ ├── stm32f1xx_hal_flash_ex.h │ │ ├── stm32f1xx_hal_gpio.h │ │ ├── stm32f1xx_hal_gpio_ex.h │ │ ├── stm32f1xx_hal_pwr.h │ │ ├── stm32f1xx_hal_rcc.h │ │ ├── stm32f1xx_hal_rcc_ex.h │ │ ├── stm32f1xx_hal_rtc.h │ │ ├── stm32f1xx_hal_rtc_ex.h │ │ ├── stm32f1xx_hal_tim.h │ │ └── stm32f1xx_hal_tim_ex.h │ │ └── Src │ │ ├── stm32f1xx_hal.c │ │ ├── stm32f1xx_hal_cortex.c │ │ ├── stm32f1xx_hal_dma.c │ │ ├── stm32f1xx_hal_exti.c │ │ ├── stm32f1xx_hal_flash.c │ │ ├── stm32f1xx_hal_flash_ex.c │ │ ├── stm32f1xx_hal_gpio.c │ │ ├── stm32f1xx_hal_gpio_ex.c │ │ ├── stm32f1xx_hal_pwr.c │ │ ├── stm32f1xx_hal_rcc.c │ │ ├── stm32f1xx_hal_rcc_ex.c │ │ ├── stm32f1xx_hal_rtc.c │ │ ├── stm32f1xx_hal_rtc_ex.c │ │ ├── stm32f1xx_hal_tim.c │ │ └── stm32f1xx_hal_tim_ex.c ├── STM32F103C8TX_FLASH.ld ├── readme.txt └── schematic.pdf ├── BluePillDemo_I2C_EEPROM ├── .cproject ├── .gitignore ├── .mxproject ├── .project ├── .settings │ └── language.settings.xml ├── BluePillDemo_I2C_EEPROM Debug.launch ├── BluePillDemo_I2C_EEPROM.ioc ├── Core │ ├── Inc │ │ ├── eeprom.h │ │ ├── main.h │ │ ├── stm32f1xx_hal_conf.h │ │ └── stm32f1xx_it.h │ ├── Src │ │ ├── eeprom.c │ │ ├── main.c │ │ ├── stm32f1xx_hal_msp.c │ │ ├── stm32f1xx_it.c │ │ ├── syscalls.c │ │ ├── sysmem.c │ │ └── system_stm32f1xx.c │ └── Startup │ │ └── startup_stm32f103c8tx.s ├── Drivers │ ├── CMSIS │ │ ├── Device │ │ │ └── ST │ │ │ │ └── STM32F1xx │ │ │ │ └── Include │ │ │ │ ├── stm32f103xb.h │ │ │ │ ├── stm32f1xx.h │ │ │ │ └── system_stm32f1xx.h │ │ └── Include │ │ │ ├── cmsis_armcc.h │ │ │ ├── cmsis_armclang.h │ │ │ ├── cmsis_compiler.h │ │ │ ├── cmsis_gcc.h │ │ │ ├── cmsis_iccarm.h │ │ │ ├── cmsis_version.h │ │ │ ├── core_armv8mbl.h │ │ │ ├── core_armv8mml.h │ │ │ ├── core_cm0.h │ │ │ ├── core_cm0plus.h │ │ │ ├── core_cm1.h │ │ │ ├── core_cm23.h │ │ │ ├── core_cm3.h │ │ │ ├── core_cm33.h │ │ │ ├── core_cm4.h │ │ │ ├── core_cm7.h │ │ │ ├── core_sc000.h │ │ │ ├── core_sc300.h │ │ │ ├── mpu_armv7.h │ │ │ ├── mpu_armv8.h │ │ │ └── tz_context.h │ └── STM32F1xx_HAL_Driver │ │ ├── Inc │ │ ├── Legacy │ │ │ └── stm32_hal_legacy.h │ │ ├── stm32f1xx_hal.h │ │ ├── stm32f1xx_hal_cortex.h │ │ ├── stm32f1xx_hal_def.h │ │ ├── stm32f1xx_hal_dma.h │ │ ├── stm32f1xx_hal_dma_ex.h │ │ ├── stm32f1xx_hal_exti.h │ │ ├── stm32f1xx_hal_flash.h │ │ ├── stm32f1xx_hal_flash_ex.h │ │ ├── stm32f1xx_hal_gpio.h │ │ ├── stm32f1xx_hal_gpio_ex.h │ │ ├── stm32f1xx_hal_i2c.h │ │ ├── stm32f1xx_hal_pwr.h │ │ ├── stm32f1xx_hal_rcc.h │ │ ├── stm32f1xx_hal_rcc_ex.h │ │ ├── stm32f1xx_hal_tim.h │ │ └── stm32f1xx_hal_tim_ex.h │ │ └── Src │ │ ├── stm32f1xx_hal.c │ │ ├── stm32f1xx_hal_cortex.c │ │ ├── stm32f1xx_hal_dma.c │ │ ├── stm32f1xx_hal_exti.c │ │ ├── stm32f1xx_hal_flash.c │ │ ├── stm32f1xx_hal_flash_ex.c │ │ ├── stm32f1xx_hal_gpio.c │ │ ├── stm32f1xx_hal_gpio_ex.c │ │ ├── stm32f1xx_hal_i2c.c │ │ ├── stm32f1xx_hal_pwr.c │ │ ├── stm32f1xx_hal_rcc.c │ │ ├── stm32f1xx_hal_rcc_ex.c │ │ ├── stm32f1xx_hal_tim.c │ │ └── stm32f1xx_hal_tim_ex.c ├── STM32F103C8TX_FLASH.ld ├── readme.txt └── schematic.pdf ├── BluePillDemo_I2C_MAX30102_Pulse_Oximeter ├── .cproject ├── .gitignore ├── .mxproject ├── .project ├── .settings │ └── language.settings.xml ├── BluePillDemo_I2C_MAX30102_Pulse_Oximeter Debug.launch ├── BluePillDemo_I2C_MAX30102_Pulse_Oximeter.ioc ├── Core │ ├── Inc │ │ ├── algorithm_by_RF.h │ │ ├── main.h │ │ ├── max30102.h │ │ ├── printf.h │ │ ├── stm32f1xx_hal_conf.h │ │ └── stm32f1xx_it.h │ ├── Src │ │ ├── algorithm_by_RF.c │ │ ├── main.c │ │ ├── max30102.c │ │ ├── printf.c │ │ ├── stm32f1xx_hal_msp.c │ │ ├── stm32f1xx_it.c │ │ ├── syscalls.c │ │ ├── sysmem.c │ │ └── system_stm32f1xx.c │ └── Startup │ │ └── startup_stm32f103c8tx.s ├── Drivers │ ├── CMSIS │ │ ├── Device │ │ │ └── ST │ │ │ │ └── STM32F1xx │ │ │ │ └── Include │ │ │ │ ├── stm32f103xb.h │ │ │ │ ├── stm32f1xx.h │ │ │ │ └── system_stm32f1xx.h │ │ └── Include │ │ │ ├── cmsis_armcc.h │ │ │ ├── cmsis_armclang.h │ │ │ ├── cmsis_compiler.h │ │ │ ├── cmsis_gcc.h │ │ │ ├── cmsis_iccarm.h │ │ │ ├── cmsis_version.h │ │ │ ├── core_armv8mbl.h │ │ │ ├── core_armv8mml.h │ │ │ ├── core_cm0.h │ │ │ ├── core_cm0plus.h │ │ │ ├── core_cm1.h │ │ │ ├── core_cm23.h │ │ │ ├── core_cm3.h │ │ │ ├── core_cm33.h │ │ │ ├── core_cm4.h │ │ │ ├── core_cm7.h │ │ │ ├── core_sc000.h │ │ │ ├── core_sc300.h │ │ │ ├── mpu_armv7.h │ │ │ ├── mpu_armv8.h │ │ │ └── tz_context.h │ └── STM32F1xx_HAL_Driver │ │ ├── Inc │ │ ├── Legacy │ │ │ └── stm32_hal_legacy.h │ │ ├── stm32f1xx_hal.h │ │ ├── stm32f1xx_hal_cortex.h │ │ ├── stm32f1xx_hal_def.h │ │ ├── stm32f1xx_hal_dma.h │ │ ├── stm32f1xx_hal_dma_ex.h │ │ ├── stm32f1xx_hal_exti.h │ │ ├── stm32f1xx_hal_flash.h │ │ ├── stm32f1xx_hal_flash_ex.h │ │ ├── stm32f1xx_hal_gpio.h │ │ ├── stm32f1xx_hal_gpio_ex.h │ │ ├── stm32f1xx_hal_i2c.h │ │ ├── stm32f1xx_hal_pwr.h │ │ ├── stm32f1xx_hal_rcc.h │ │ ├── stm32f1xx_hal_rcc_ex.h │ │ ├── stm32f1xx_hal_tim.h │ │ ├── stm32f1xx_hal_tim_ex.h │ │ └── stm32f1xx_hal_uart.h │ │ └── Src │ │ ├── stm32f1xx_hal.c │ │ ├── stm32f1xx_hal_cortex.c │ │ ├── stm32f1xx_hal_dma.c │ │ ├── stm32f1xx_hal_exti.c │ │ ├── stm32f1xx_hal_flash.c │ │ ├── stm32f1xx_hal_flash_ex.c │ │ ├── stm32f1xx_hal_gpio.c │ │ ├── stm32f1xx_hal_gpio_ex.c │ │ ├── stm32f1xx_hal_i2c.c │ │ ├── stm32f1xx_hal_pwr.c │ │ ├── stm32f1xx_hal_rcc.c │ │ ├── stm32f1xx_hal_rcc_ex.c │ │ ├── stm32f1xx_hal_tim.c │ │ ├── stm32f1xx_hal_tim_ex.c │ │ └── stm32f1xx_hal_uart.c ├── STM32F103C8TX_FLASH.ld ├── readme.txt └── schematic.pdf ├── BluePillDemo_I2C_MAX30102_Pulse_Oximeter_LCD ├── .cproject ├── .gitignore ├── .mxproject ├── .project ├── .settings │ └── language.settings.xml ├── BluePillDemo_I2C_MAX30102_Pulse_Oximeter_LCD Debug.launch ├── BluePillDemo_I2C_MAX30102_Pulse_Oximeter_LCD.ioc ├── Core │ ├── Inc │ │ ├── algorithm_by_RF.h │ │ ├── graphics.h │ │ ├── main.h │ │ ├── max30102.h │ │ ├── printf.h │ │ ├── st7789.h │ │ ├── stm32f1xx_hal_conf.h │ │ └── stm32f1xx_it.h │ ├── Src │ │ ├── algorithm_by_RF.c │ │ ├── graphics.c │ │ ├── main.c │ │ ├── max30102.c │ │ ├── printf.c │ │ ├── st7789.c │ │ ├── stm32f1xx_hal_msp.c │ │ ├── stm32f1xx_it.c │ │ ├── syscalls.c │ │ ├── sysmem.c │ │ └── system_stm32f1xx.c │ └── Startup │ │ └── startup_stm32f103c8tx.s ├── Drivers │ ├── CMSIS │ │ ├── Device │ │ │ └── ST │ │ │ │ └── STM32F1xx │ │ │ │ └── Include │ │ │ │ ├── stm32f103xb.h │ │ │ │ ├── stm32f1xx.h │ │ │ │ └── system_stm32f1xx.h │ │ └── Include │ │ │ ├── cmsis_armcc.h │ │ │ ├── cmsis_armclang.h │ │ │ ├── cmsis_compiler.h │ │ │ ├── cmsis_gcc.h │ │ │ ├── cmsis_iccarm.h │ │ │ ├── cmsis_version.h │ │ │ ├── core_armv8mbl.h │ │ │ ├── core_armv8mml.h │ │ │ ├── core_cm0.h │ │ │ ├── core_cm0plus.h │ │ │ ├── core_cm1.h │ │ │ ├── core_cm23.h │ │ │ ├── core_cm3.h │ │ │ ├── core_cm33.h │ │ │ ├── core_cm4.h │ │ │ ├── core_cm7.h │ │ │ ├── core_sc000.h │ │ │ ├── core_sc300.h │ │ │ ├── mpu_armv7.h │ │ │ ├── mpu_armv8.h │ │ │ └── tz_context.h │ └── STM32F1xx_HAL_Driver │ │ ├── Inc │ │ ├── Legacy │ │ │ └── stm32_hal_legacy.h │ │ ├── stm32f1xx_hal.h │ │ ├── stm32f1xx_hal_cortex.h │ │ ├── stm32f1xx_hal_def.h │ │ ├── stm32f1xx_hal_dma.h │ │ ├── stm32f1xx_hal_dma_ex.h │ │ ├── stm32f1xx_hal_exti.h │ │ ├── stm32f1xx_hal_flash.h │ │ ├── stm32f1xx_hal_flash_ex.h │ │ ├── stm32f1xx_hal_gpio.h │ │ ├── stm32f1xx_hal_gpio_ex.h │ │ ├── stm32f1xx_hal_i2c.h │ │ ├── stm32f1xx_hal_pwr.h │ │ ├── stm32f1xx_hal_rcc.h │ │ ├── stm32f1xx_hal_rcc_ex.h │ │ ├── stm32f1xx_hal_spi.h │ │ ├── stm32f1xx_hal_tim.h │ │ └── stm32f1xx_hal_tim_ex.h │ │ └── Src │ │ ├── stm32f1xx_hal.c │ │ ├── stm32f1xx_hal_cortex.c │ │ ├── stm32f1xx_hal_dma.c │ │ ├── stm32f1xx_hal_exti.c │ │ ├── stm32f1xx_hal_flash.c │ │ ├── stm32f1xx_hal_flash_ex.c │ │ ├── stm32f1xx_hal_gpio.c │ │ ├── stm32f1xx_hal_gpio_ex.c │ │ ├── stm32f1xx_hal_i2c.c │ │ ├── stm32f1xx_hal_pwr.c │ │ ├── stm32f1xx_hal_rcc.c │ │ ├── stm32f1xx_hal_rcc_ex.c │ │ ├── stm32f1xx_hal_spi.c │ │ ├── stm32f1xx_hal_tim.c │ │ └── stm32f1xx_hal_tim_ex.c ├── STM32F103C8TX_FLASH.ld ├── readme.txt └── schematic.pdf ├── BluePillDemo_I2C_Pressure_BMP280 ├── .cproject ├── .gitignore ├── .mxproject ├── .project ├── .settings │ └── language.settings.xml ├── BluePillDemo_I2C_Pressure_BMP280 Debug.launch ├── BluePillDemo_I2C_Pressure_BMP280.ioc ├── Core │ ├── Inc │ │ ├── main.h │ │ ├── pressure_sensor.h │ │ ├── stm32f1xx_hal_conf.h │ │ └── stm32f1xx_it.h │ ├── Src │ │ ├── main.c │ │ ├── pressure_sensor.c │ │ ├── stm32f1xx_hal_msp.c │ │ ├── stm32f1xx_it.c │ │ ├── syscalls.c │ │ ├── sysmem.c │ │ └── system_stm32f1xx.c │ └── Startup │ │ └── startup_stm32f103c8tx.s ├── Drivers │ ├── CMSIS │ │ ├── Device │ │ │ └── ST │ │ │ │ └── STM32F1xx │ │ │ │ └── Include │ │ │ │ ├── stm32f103xb.h │ │ │ │ ├── stm32f1xx.h │ │ │ │ └── system_stm32f1xx.h │ │ └── Include │ │ │ ├── cmsis_armcc.h │ │ │ ├── cmsis_armclang.h │ │ │ ├── cmsis_compiler.h │ │ │ ├── cmsis_gcc.h │ │ │ ├── cmsis_iccarm.h │ │ │ ├── cmsis_version.h │ │ │ ├── core_armv8mbl.h │ │ │ ├── core_armv8mml.h │ │ │ ├── core_cm0.h │ │ │ ├── core_cm0plus.h │ │ │ ├── core_cm1.h │ │ │ ├── core_cm23.h │ │ │ ├── core_cm3.h │ │ │ ├── core_cm33.h │ │ │ ├── core_cm4.h │ │ │ ├── core_cm7.h │ │ │ ├── core_sc000.h │ │ │ ├── core_sc300.h │ │ │ ├── mpu_armv7.h │ │ │ ├── mpu_armv8.h │ │ │ └── tz_context.h │ └── STM32F1xx_HAL_Driver │ │ ├── Inc │ │ ├── Legacy │ │ │ └── stm32_hal_legacy.h │ │ ├── stm32f1xx_hal.h │ │ ├── stm32f1xx_hal_cortex.h │ │ ├── stm32f1xx_hal_def.h │ │ ├── stm32f1xx_hal_dma.h │ │ ├── stm32f1xx_hal_dma_ex.h │ │ ├── stm32f1xx_hal_exti.h │ │ ├── stm32f1xx_hal_flash.h │ │ ├── stm32f1xx_hal_flash_ex.h │ │ ├── stm32f1xx_hal_gpio.h │ │ ├── stm32f1xx_hal_gpio_ex.h │ │ ├── stm32f1xx_hal_i2c.h │ │ ├── stm32f1xx_hal_pwr.h │ │ ├── stm32f1xx_hal_rcc.h │ │ ├── stm32f1xx_hal_rcc_ex.h │ │ ├── stm32f1xx_hal_tim.h │ │ └── stm32f1xx_hal_tim_ex.h │ │ └── Src │ │ ├── stm32f1xx_hal.c │ │ ├── stm32f1xx_hal_cortex.c │ │ ├── stm32f1xx_hal_dma.c │ │ ├── stm32f1xx_hal_exti.c │ │ ├── stm32f1xx_hal_flash.c │ │ ├── stm32f1xx_hal_flash_ex.c │ │ ├── stm32f1xx_hal_gpio.c │ │ ├── stm32f1xx_hal_gpio_ex.c │ │ ├── stm32f1xx_hal_i2c.c │ │ ├── stm32f1xx_hal_pwr.c │ │ ├── stm32f1xx_hal_rcc.c │ │ ├── stm32f1xx_hal_rcc_ex.c │ │ ├── stm32f1xx_hal_tim.c │ │ └── stm32f1xx_hal_tim_ex.c ├── STM32F103C8TX_FLASH.ld ├── readme.txt └── schematic.pdf ├── BluePillDemo_IWDG ├── .cproject ├── .gitignore ├── .mxproject ├── .project ├── .settings │ └── language.settings.xml ├── BluePillDemo_IWDG Debug.launch ├── BluePillDemo_IWDG.ioc ├── Core │ ├── Inc │ │ ├── main.h │ │ ├── stm32f1xx_hal_conf.h │ │ └── stm32f1xx_it.h │ ├── Src │ │ ├── main.c │ │ ├── stm32f1xx_hal_msp.c │ │ ├── stm32f1xx_it.c │ │ ├── syscalls.c │ │ ├── sysmem.c │ │ └── system_stm32f1xx.c │ └── Startup │ │ └── startup_stm32f103c8tx.s ├── Drivers │ ├── CMSIS │ │ ├── Device │ │ │ └── ST │ │ │ │ └── STM32F1xx │ │ │ │ └── Include │ │ │ │ ├── stm32f103xb.h │ │ │ │ ├── stm32f1xx.h │ │ │ │ └── system_stm32f1xx.h │ │ └── Include │ │ │ ├── cmsis_armcc.h │ │ │ ├── cmsis_armclang.h │ │ │ ├── cmsis_compiler.h │ │ │ ├── cmsis_gcc.h │ │ │ ├── cmsis_iccarm.h │ │ │ ├── cmsis_version.h │ │ │ ├── core_armv8mbl.h │ │ │ ├── core_armv8mml.h │ │ │ ├── core_cm0.h │ │ │ ├── core_cm0plus.h │ │ │ ├── core_cm1.h │ │ │ ├── core_cm23.h │ │ │ ├── core_cm3.h │ │ │ ├── core_cm33.h │ │ │ ├── core_cm4.h │ │ │ ├── core_cm7.h │ │ │ ├── core_sc000.h │ │ │ ├── core_sc300.h │ │ │ ├── mpu_armv7.h │ │ │ ├── mpu_armv8.h │ │ │ └── tz_context.h │ └── STM32F1xx_HAL_Driver │ │ ├── Inc │ │ ├── Legacy │ │ │ └── stm32_hal_legacy.h │ │ ├── stm32f1xx_hal.h │ │ ├── stm32f1xx_hal_cortex.h │ │ ├── stm32f1xx_hal_def.h │ │ ├── stm32f1xx_hal_dma.h │ │ ├── stm32f1xx_hal_dma_ex.h │ │ ├── stm32f1xx_hal_exti.h │ │ ├── stm32f1xx_hal_flash.h │ │ ├── stm32f1xx_hal_flash_ex.h │ │ ├── stm32f1xx_hal_gpio.h │ │ ├── stm32f1xx_hal_gpio_ex.h │ │ ├── stm32f1xx_hal_iwdg.h │ │ ├── stm32f1xx_hal_pwr.h │ │ ├── stm32f1xx_hal_rcc.h │ │ ├── stm32f1xx_hal_rcc_ex.h │ │ ├── stm32f1xx_hal_tim.h │ │ └── stm32f1xx_hal_tim_ex.h │ │ └── Src │ │ ├── stm32f1xx_hal.c │ │ ├── stm32f1xx_hal_cortex.c │ │ ├── stm32f1xx_hal_dma.c │ │ ├── stm32f1xx_hal_exti.c │ │ ├── stm32f1xx_hal_flash.c │ │ ├── stm32f1xx_hal_flash_ex.c │ │ ├── stm32f1xx_hal_gpio.c │ │ ├── stm32f1xx_hal_gpio_ex.c │ │ ├── stm32f1xx_hal_iwdg.c │ │ ├── stm32f1xx_hal_pwr.c │ │ ├── stm32f1xx_hal_rcc.c │ │ ├── stm32f1xx_hal_rcc_ex.c │ │ ├── stm32f1xx_hal_tim.c │ │ └── stm32f1xx_hal_tim_ex.c ├── STM32F103C8TX_FLASH.ld ├── readme.txt └── schematic.pdf ├── BluePillDemo_LCD_HD44780 ├── .cproject ├── .gitignore ├── .mxproject ├── .project ├── .settings │ └── language.settings.xml ├── BluePillDemo_LCD_HD44780 Debug.launch ├── BluePillDemo_LCD_HD44780.ioc ├── Core │ ├── Inc │ │ ├── lcd.h │ │ ├── main.h │ │ ├── stm32f1xx_hal_conf.h │ │ └── stm32f1xx_it.h │ ├── Src │ │ ├── lcd.c │ │ ├── main.c │ │ ├── stm32f1xx_hal_msp.c │ │ ├── stm32f1xx_it.c │ │ ├── syscalls.c │ │ ├── sysmem.c │ │ └── system_stm32f1xx.c │ └── Startup │ │ └── startup_stm32f103c8tx.s ├── Drivers │ ├── CMSIS │ │ ├── Device │ │ │ └── ST │ │ │ │ └── STM32F1xx │ │ │ │ └── Include │ │ │ │ ├── stm32f103xb.h │ │ │ │ ├── stm32f1xx.h │ │ │ │ └── system_stm32f1xx.h │ │ └── Include │ │ │ ├── cmsis_armcc.h │ │ │ ├── cmsis_armclang.h │ │ │ ├── cmsis_compiler.h │ │ │ ├── cmsis_gcc.h │ │ │ ├── cmsis_iccarm.h │ │ │ ├── cmsis_version.h │ │ │ ├── core_armv8mbl.h │ │ │ ├── core_armv8mml.h │ │ │ ├── core_cm0.h │ │ │ ├── core_cm0plus.h │ │ │ ├── core_cm1.h │ │ │ ├── core_cm23.h │ │ │ ├── core_cm3.h │ │ │ ├── core_cm33.h │ │ │ ├── core_cm4.h │ │ │ ├── core_cm7.h │ │ │ ├── core_sc000.h │ │ │ ├── core_sc300.h │ │ │ ├── mpu_armv7.h │ │ │ ├── mpu_armv8.h │ │ │ └── tz_context.h │ └── STM32F1xx_HAL_Driver │ │ ├── Inc │ │ ├── Legacy │ │ │ └── stm32_hal_legacy.h │ │ ├── stm32f1xx_hal.h │ │ ├── stm32f1xx_hal_cortex.h │ │ ├── stm32f1xx_hal_def.h │ │ ├── stm32f1xx_hal_dma.h │ │ ├── stm32f1xx_hal_dma_ex.h │ │ ├── stm32f1xx_hal_exti.h │ │ ├── stm32f1xx_hal_flash.h │ │ ├── stm32f1xx_hal_flash_ex.h │ │ ├── stm32f1xx_hal_gpio.h │ │ ├── stm32f1xx_hal_gpio_ex.h │ │ ├── stm32f1xx_hal_pwr.h │ │ ├── stm32f1xx_hal_rcc.h │ │ ├── stm32f1xx_hal_rcc_ex.h │ │ ├── stm32f1xx_hal_tim.h │ │ └── stm32f1xx_hal_tim_ex.h │ │ └── Src │ │ ├── stm32f1xx_hal.c │ │ ├── stm32f1xx_hal_cortex.c │ │ ├── stm32f1xx_hal_dma.c │ │ ├── stm32f1xx_hal_exti.c │ │ ├── stm32f1xx_hal_flash.c │ │ ├── stm32f1xx_hal_flash_ex.c │ │ ├── stm32f1xx_hal_gpio.c │ │ ├── stm32f1xx_hal_gpio_ex.c │ │ ├── stm32f1xx_hal_pwr.c │ │ ├── stm32f1xx_hal_rcc.c │ │ ├── stm32f1xx_hal_rcc_ex.c │ │ ├── stm32f1xx_hal_tim.c │ │ └── stm32f1xx_hal_tim_ex.c ├── STM32F103C8TX_FLASH.ld ├── readme.txt └── schematic.pdf ├── BluePillDemo_LCD_ILI9341 ├── .cproject ├── .gitignore ├── .mxproject ├── .project ├── .settings │ └── language.settings.xml ├── BluePillDemo_LCD_ILI9341 Debug.launch ├── BluePillDemo_LCD_ILI9341.ioc ├── Core │ ├── Inc │ │ ├── graphics.h │ │ ├── ili9341.h │ │ ├── main.h │ │ ├── stm32f1xx_hal_conf.h │ │ └── stm32f1xx_it.h │ ├── Src │ │ ├── bitmaps.c │ │ ├── graphics.c │ │ ├── ili9341.c │ │ ├── main.c │ │ ├── stm32f1xx_hal_msp.c │ │ ├── stm32f1xx_it.c │ │ ├── syscalls.c │ │ ├── sysmem.c │ │ └── system_stm32f1xx.c │ └── Startup │ │ └── startup_stm32f103c8tx.s ├── Drivers │ ├── CMSIS │ │ ├── Device │ │ │ └── ST │ │ │ │ └── STM32F1xx │ │ │ │ └── Include │ │ │ │ ├── stm32f103xb.h │ │ │ │ ├── stm32f1xx.h │ │ │ │ └── system_stm32f1xx.h │ │ └── Include │ │ │ ├── cmsis_armcc.h │ │ │ ├── cmsis_armclang.h │ │ │ ├── cmsis_compiler.h │ │ │ ├── cmsis_gcc.h │ │ │ ├── cmsis_iccarm.h │ │ │ ├── cmsis_version.h │ │ │ ├── core_armv8mbl.h │ │ │ ├── core_armv8mml.h │ │ │ ├── core_cm0.h │ │ │ ├── core_cm0plus.h │ │ │ ├── core_cm1.h │ │ │ ├── core_cm23.h │ │ │ ├── core_cm3.h │ │ │ ├── core_cm33.h │ │ │ ├── core_cm4.h │ │ │ ├── core_cm7.h │ │ │ ├── core_sc000.h │ │ │ ├── core_sc300.h │ │ │ ├── mpu_armv7.h │ │ │ ├── mpu_armv8.h │ │ │ └── tz_context.h │ └── STM32F1xx_HAL_Driver │ │ ├── Inc │ │ ├── Legacy │ │ │ └── stm32_hal_legacy.h │ │ ├── stm32f1xx_hal.h │ │ ├── stm32f1xx_hal_cortex.h │ │ ├── stm32f1xx_hal_def.h │ │ ├── stm32f1xx_hal_dma.h │ │ ├── stm32f1xx_hal_dma_ex.h │ │ ├── stm32f1xx_hal_exti.h │ │ ├── stm32f1xx_hal_flash.h │ │ ├── stm32f1xx_hal_flash_ex.h │ │ ├── stm32f1xx_hal_gpio.h │ │ ├── stm32f1xx_hal_gpio_ex.h │ │ ├── stm32f1xx_hal_pwr.h │ │ ├── stm32f1xx_hal_rcc.h │ │ ├── stm32f1xx_hal_rcc_ex.h │ │ ├── stm32f1xx_hal_spi.h │ │ ├── stm32f1xx_hal_tim.h │ │ └── stm32f1xx_hal_tim_ex.h │ │ └── Src │ │ ├── stm32f1xx_hal.c │ │ ├── stm32f1xx_hal_cortex.c │ │ ├── stm32f1xx_hal_dma.c │ │ ├── stm32f1xx_hal_exti.c │ │ ├── stm32f1xx_hal_flash.c │ │ ├── stm32f1xx_hal_flash_ex.c │ │ ├── stm32f1xx_hal_gpio.c │ │ ├── stm32f1xx_hal_gpio_ex.c │ │ ├── stm32f1xx_hal_pwr.c │ │ ├── stm32f1xx_hal_rcc.c │ │ ├── stm32f1xx_hal_rcc_ex.c │ │ ├── stm32f1xx_hal_spi.c │ │ ├── stm32f1xx_hal_tim.c │ │ └── stm32f1xx_hal_tim_ex.c ├── STM32F103C8TX_FLASH.ld ├── readme.txt └── schematic.pdf ├── BluePillDemo_LCD_ILI9341_Touch ├── .cproject ├── .gitignore ├── .mxproject ├── .project ├── .settings │ └── language.settings.xml ├── BluePillDemo_LCD_ILI9341_Touch Debug.launch ├── BluePillDemo_LCD_ILI9341_Touch.ioc ├── Core │ ├── Inc │ │ ├── calibrate.h │ │ ├── graphics.h │ │ ├── ili9341.h │ │ ├── main.h │ │ ├── stm32f1xx_hal_conf.h │ │ ├── stm32f1xx_it.h │ │ └── touch.h │ ├── Src │ │ ├── calibrate.c │ │ ├── graphics.c │ │ ├── ili9341.c │ │ ├── main.c │ │ ├── stm32f1xx_hal_msp.c │ │ ├── stm32f1xx_it.c │ │ ├── syscalls.c │ │ ├── sysmem.c │ │ ├── system_stm32f1xx.c │ │ └── touch.c │ └── Startup │ │ └── startup_stm32f103c8tx.s ├── Drivers │ ├── CMSIS │ │ ├── Device │ │ │ └── ST │ │ │ │ └── STM32F1xx │ │ │ │ └── Include │ │ │ │ ├── stm32f103xb.h │ │ │ │ ├── stm32f1xx.h │ │ │ │ └── system_stm32f1xx.h │ │ └── Include │ │ │ ├── cmsis_armcc.h │ │ │ ├── cmsis_armclang.h │ │ │ ├── cmsis_compiler.h │ │ │ ├── cmsis_gcc.h │ │ │ ├── cmsis_iccarm.h │ │ │ ├── cmsis_version.h │ │ │ ├── core_armv8mbl.h │ │ │ ├── core_armv8mml.h │ │ │ ├── core_cm0.h │ │ │ ├── core_cm0plus.h │ │ │ ├── core_cm1.h │ │ │ ├── core_cm23.h │ │ │ ├── core_cm3.h │ │ │ ├── core_cm33.h │ │ │ ├── core_cm4.h │ │ │ ├── core_cm7.h │ │ │ ├── core_sc000.h │ │ │ ├── core_sc300.h │ │ │ ├── mpu_armv7.h │ │ │ ├── mpu_armv8.h │ │ │ └── tz_context.h │ └── STM32F1xx_HAL_Driver │ │ ├── Inc │ │ ├── Legacy │ │ │ └── stm32_hal_legacy.h │ │ ├── stm32f1xx_hal.h │ │ ├── stm32f1xx_hal_cortex.h │ │ ├── stm32f1xx_hal_def.h │ │ ├── stm32f1xx_hal_dma.h │ │ ├── stm32f1xx_hal_dma_ex.h │ │ ├── stm32f1xx_hal_exti.h │ │ ├── stm32f1xx_hal_flash.h │ │ ├── stm32f1xx_hal_flash_ex.h │ │ ├── stm32f1xx_hal_gpio.h │ │ ├── stm32f1xx_hal_gpio_ex.h │ │ ├── stm32f1xx_hal_pwr.h │ │ ├── stm32f1xx_hal_rcc.h │ │ ├── stm32f1xx_hal_rcc_ex.h │ │ ├── stm32f1xx_hal_spi.h │ │ ├── stm32f1xx_hal_tim.h │ │ └── stm32f1xx_hal_tim_ex.h │ │ └── Src │ │ ├── stm32f1xx_hal.c │ │ ├── stm32f1xx_hal_cortex.c │ │ ├── stm32f1xx_hal_dma.c │ │ ├── stm32f1xx_hal_exti.c │ │ ├── stm32f1xx_hal_flash.c │ │ ├── stm32f1xx_hal_flash_ex.c │ │ ├── stm32f1xx_hal_gpio.c │ │ ├── stm32f1xx_hal_gpio_ex.c │ │ ├── stm32f1xx_hal_pwr.c │ │ ├── stm32f1xx_hal_rcc.c │ │ ├── stm32f1xx_hal_rcc_ex.c │ │ ├── stm32f1xx_hal_spi.c │ │ ├── stm32f1xx_hal_tim.c │ │ └── stm32f1xx_hal_tim_ex.c ├── STM32F103C8TX_FLASH.ld ├── readme.txt └── schematic.pdf ├── BluePillDemo_LCD_ST7789 ├── .cproject ├── .gitignore ├── .mxproject ├── .project ├── .settings │ └── language.settings.xml ├── BluePillDemo_LCD_ST7789 Debug.launch ├── BluePillDemo_LCD_ST7789.ioc ├── Core │ ├── Inc │ │ ├── graphics.h │ │ ├── main.h │ │ ├── st7789.h │ │ ├── stm32f1xx_hal_conf.h │ │ └── stm32f1xx_it.h │ ├── Src │ │ ├── bitmaps.c │ │ ├── graphics.c │ │ ├── main.c │ │ ├── st7789.c │ │ ├── stm32f1xx_hal_msp.c │ │ ├── stm32f1xx_it.c │ │ ├── syscalls.c │ │ ├── sysmem.c │ │ └── system_stm32f1xx.c │ └── Startup │ │ └── startup_stm32f103c8tx.s ├── Drivers │ ├── CMSIS │ │ ├── Device │ │ │ └── ST │ │ │ │ └── STM32F1xx │ │ │ │ └── Include │ │ │ │ ├── stm32f103xb.h │ │ │ │ ├── stm32f1xx.h │ │ │ │ └── system_stm32f1xx.h │ │ └── Include │ │ │ ├── cmsis_armcc.h │ │ │ ├── cmsis_armclang.h │ │ │ ├── cmsis_compiler.h │ │ │ ├── cmsis_gcc.h │ │ │ ├── cmsis_iccarm.h │ │ │ ├── cmsis_version.h │ │ │ ├── core_armv8mbl.h │ │ │ ├── core_armv8mml.h │ │ │ ├── core_cm0.h │ │ │ ├── core_cm0plus.h │ │ │ ├── core_cm1.h │ │ │ ├── core_cm23.h │ │ │ ├── core_cm3.h │ │ │ ├── core_cm33.h │ │ │ ├── core_cm4.h │ │ │ ├── core_cm7.h │ │ │ ├── core_sc000.h │ │ │ ├── core_sc300.h │ │ │ ├── mpu_armv7.h │ │ │ ├── mpu_armv8.h │ │ │ └── tz_context.h │ └── STM32F1xx_HAL_Driver │ │ ├── Inc │ │ ├── Legacy │ │ │ └── stm32_hal_legacy.h │ │ ├── stm32f1xx_hal.h │ │ ├── stm32f1xx_hal_cortex.h │ │ ├── stm32f1xx_hal_def.h │ │ ├── stm32f1xx_hal_dma.h │ │ ├── stm32f1xx_hal_dma_ex.h │ │ ├── stm32f1xx_hal_exti.h │ │ ├── stm32f1xx_hal_flash.h │ │ ├── stm32f1xx_hal_flash_ex.h │ │ ├── stm32f1xx_hal_gpio.h │ │ ├── stm32f1xx_hal_gpio_ex.h │ │ ├── stm32f1xx_hal_pwr.h │ │ ├── stm32f1xx_hal_rcc.h │ │ ├── stm32f1xx_hal_rcc_ex.h │ │ ├── stm32f1xx_hal_spi.h │ │ ├── stm32f1xx_hal_tim.h │ │ └── stm32f1xx_hal_tim_ex.h │ │ └── Src │ │ ├── stm32f1xx_hal.c │ │ ├── stm32f1xx_hal_cortex.c │ │ ├── stm32f1xx_hal_dma.c │ │ ├── stm32f1xx_hal_exti.c │ │ ├── stm32f1xx_hal_flash.c │ │ ├── stm32f1xx_hal_flash_ex.c │ │ ├── stm32f1xx_hal_gpio.c │ │ ├── stm32f1xx_hal_gpio_ex.c │ │ ├── stm32f1xx_hal_pwr.c │ │ ├── stm32f1xx_hal_rcc.c │ │ ├── stm32f1xx_hal_rcc_ex.c │ │ ├── stm32f1xx_hal_spi.c │ │ ├── stm32f1xx_hal_tim.c │ │ └── stm32f1xx_hal_tim_ex.c ├── STM32F103C8TX_FLASH.ld ├── readme.txt └── schematic.pdf ├── BluePillDemo_NMEA0183_MQTT_Website ├── .cproject ├── .gitignore ├── .mxproject ├── .project ├── .settings │ └── language.settings.xml ├── BluePillDemo_NMEA0183_MQTT_Website Debug.launch ├── BluePillDemo_NMEA0183_MQTT_Website.ioc ├── Core │ ├── Inc │ │ ├── FreeRTOSConfig.h │ │ ├── buffered_serial.h │ │ ├── buffered_serial2.h │ │ ├── main.h │ │ ├── modem.h │ │ ├── mqtt.h │ │ ├── nmea.h │ │ ├── printf.h │ │ ├── stm32f1xx_hal_conf.h │ │ └── stm32f1xx_it.h │ ├── Src │ │ ├── buffered_serial.c │ │ ├── buffered_serial2.c │ │ ├── freertos.c │ │ ├── main.c │ │ ├── modem.c │ │ ├── mqtt.c │ │ ├── nmea.c │ │ ├── printf.c │ │ ├── stm32f1xx_hal_msp.c │ │ ├── stm32f1xx_hal_timebase_tim.c │ │ ├── stm32f1xx_it.c │ │ ├── syscalls.c │ │ ├── sysmem.c │ │ └── system_stm32f1xx.c │ └── Startup │ │ └── startup_stm32f103c8tx.s ├── Drivers │ ├── CMSIS │ │ ├── Device │ │ │ └── ST │ │ │ │ └── STM32F1xx │ │ │ │ └── Include │ │ │ │ ├── stm32f103xb.h │ │ │ │ ├── stm32f1xx.h │ │ │ │ └── system_stm32f1xx.h │ │ └── Include │ │ │ ├── cmsis_armcc.h │ │ │ ├── cmsis_armclang.h │ │ │ ├── cmsis_compiler.h │ │ │ ├── cmsis_gcc.h │ │ │ ├── cmsis_iccarm.h │ │ │ ├── cmsis_version.h │ │ │ ├── core_armv8mbl.h │ │ │ ├── core_armv8mml.h │ │ │ ├── core_cm0.h │ │ │ ├── core_cm0plus.h │ │ │ ├── core_cm1.h │ │ │ ├── core_cm23.h │ │ │ ├── core_cm3.h │ │ │ ├── core_cm33.h │ │ │ ├── core_cm4.h │ │ │ ├── core_cm7.h │ │ │ ├── core_sc000.h │ │ │ ├── core_sc300.h │ │ │ ├── mpu_armv7.h │ │ │ ├── mpu_armv8.h │ │ │ └── tz_context.h │ └── STM32F1xx_HAL_Driver │ │ ├── Inc │ │ ├── Legacy │ │ │ └── stm32_hal_legacy.h │ │ ├── stm32f1xx_hal.h │ │ ├── stm32f1xx_hal_cortex.h │ │ ├── stm32f1xx_hal_def.h │ │ ├── stm32f1xx_hal_dma.h │ │ ├── stm32f1xx_hal_dma_ex.h │ │ ├── stm32f1xx_hal_exti.h │ │ ├── stm32f1xx_hal_flash.h │ │ ├── stm32f1xx_hal_flash_ex.h │ │ ├── stm32f1xx_hal_gpio.h │ │ ├── stm32f1xx_hal_gpio_ex.h │ │ ├── stm32f1xx_hal_iwdg.h │ │ ├── stm32f1xx_hal_pwr.h │ │ ├── stm32f1xx_hal_rcc.h │ │ ├── stm32f1xx_hal_rcc_ex.h │ │ ├── stm32f1xx_hal_tim.h │ │ ├── stm32f1xx_hal_tim_ex.h │ │ └── stm32f1xx_hal_uart.h │ │ └── Src │ │ ├── stm32f1xx_hal.c │ │ ├── stm32f1xx_hal_cortex.c │ │ ├── stm32f1xx_hal_dma.c │ │ ├── stm32f1xx_hal_exti.c │ │ ├── stm32f1xx_hal_flash.c │ │ ├── stm32f1xx_hal_flash_ex.c │ │ ├── stm32f1xx_hal_gpio.c │ │ ├── stm32f1xx_hal_gpio_ex.c │ │ ├── stm32f1xx_hal_iwdg.c │ │ ├── stm32f1xx_hal_pwr.c │ │ ├── stm32f1xx_hal_rcc.c │ │ ├── stm32f1xx_hal_rcc_ex.c │ │ ├── stm32f1xx_hal_tim.c │ │ ├── stm32f1xx_hal_tim_ex.c │ │ └── stm32f1xx_hal_uart.c ├── Mapiator.js ├── Middlewares │ └── Third_Party │ │ └── FreeRTOS │ │ └── Source │ │ ├── CMSIS_RTOS_V2 │ │ ├── cmsis_os.h │ │ ├── cmsis_os2.c │ │ └── cmsis_os2.h │ │ ├── croutine.c │ │ ├── event_groups.c │ │ ├── include │ │ ├── FreeRTOS.h │ │ ├── StackMacros.h │ │ ├── croutine.h │ │ ├── deprecated_definitions.h │ │ ├── event_groups.h │ │ ├── list.h │ │ ├── message_buffer.h │ │ ├── mpu_prototypes.h │ │ ├── mpu_wrappers.h │ │ ├── portable.h │ │ ├── projdefs.h │ │ ├── queue.h │ │ ├── semphr.h │ │ ├── stack_macros.h │ │ ├── stream_buffer.h │ │ ├── task.h │ │ └── timers.h │ │ ├── list.c │ │ ├── portable │ │ ├── GCC │ │ │ └── ARM_CM3 │ │ │ │ ├── port.c │ │ │ │ └── portmacro.h │ │ └── MemMang │ │ │ └── heap_4.c │ │ ├── queue.c │ │ ├── stream_buffer.c │ │ ├── tasks.c │ │ └── timers.c ├── STM32F103C8TX_FLASH.ld ├── images │ ├── zoomIn_blur.png │ ├── zoomIn_focus.png │ ├── zoomOut_blur.png │ └── zoomOut_focus.png ├── index.html ├── readme.txt ├── reativeAngleBg.bmp ├── schematic.pdf └── segment-display.js ├── BluePillDemo_OLED_SSD1306 ├── .cproject ├── .gitignore ├── .mxproject ├── .project ├── .settings │ └── language.settings.xml ├── BluePillDemo_OLED_SSD1306 Debug.launch ├── BluePillDemo_OLED_SSD1306.ioc ├── Core │ ├── Inc │ │ ├── graphics.h │ │ ├── main.h │ │ ├── ssd1306.h │ │ ├── stm32f1xx_hal_conf.h │ │ └── stm32f1xx_it.h │ ├── Src │ │ ├── bitmaps.c │ │ ├── graphics.c │ │ ├── main.c │ │ ├── ssd1306.c │ │ ├── stm32f1xx_hal_msp.c │ │ ├── stm32f1xx_it.c │ │ ├── syscalls.c │ │ ├── sysmem.c │ │ └── system_stm32f1xx.c │ └── Startup │ │ └── startup_stm32f103c8tx.s ├── Drivers │ ├── CMSIS │ │ ├── Device │ │ │ └── ST │ │ │ │ └── STM32F1xx │ │ │ │ └── Include │ │ │ │ ├── stm32f103xb.h │ │ │ │ ├── stm32f1xx.h │ │ │ │ └── system_stm32f1xx.h │ │ └── Include │ │ │ ├── cmsis_armcc.h │ │ │ ├── cmsis_armclang.h │ │ │ ├── cmsis_compiler.h │ │ │ ├── cmsis_gcc.h │ │ │ ├── cmsis_iccarm.h │ │ │ ├── cmsis_version.h │ │ │ ├── core_armv8mbl.h │ │ │ ├── core_armv8mml.h │ │ │ ├── core_cm0.h │ │ │ ├── core_cm0plus.h │ │ │ ├── core_cm1.h │ │ │ ├── core_cm23.h │ │ │ ├── core_cm3.h │ │ │ ├── core_cm33.h │ │ │ ├── core_cm4.h │ │ │ ├── core_cm7.h │ │ │ ├── core_sc000.h │ │ │ ├── core_sc300.h │ │ │ ├── mpu_armv7.h │ │ │ ├── mpu_armv8.h │ │ │ └── tz_context.h │ └── STM32F1xx_HAL_Driver │ │ ├── Inc │ │ ├── Legacy │ │ │ └── stm32_hal_legacy.h │ │ ├── stm32f1xx_hal.h │ │ ├── stm32f1xx_hal_cortex.h │ │ ├── stm32f1xx_hal_def.h │ │ ├── stm32f1xx_hal_dma.h │ │ ├── stm32f1xx_hal_dma_ex.h │ │ ├── stm32f1xx_hal_exti.h │ │ ├── stm32f1xx_hal_flash.h │ │ ├── stm32f1xx_hal_flash_ex.h │ │ ├── stm32f1xx_hal_gpio.h │ │ ├── stm32f1xx_hal_gpio_ex.h │ │ ├── stm32f1xx_hal_i2c.h │ │ ├── stm32f1xx_hal_pwr.h │ │ ├── stm32f1xx_hal_rcc.h │ │ ├── stm32f1xx_hal_rcc_ex.h │ │ ├── stm32f1xx_hal_tim.h │ │ └── stm32f1xx_hal_tim_ex.h │ │ └── Src │ │ ├── stm32f1xx_hal.c │ │ ├── stm32f1xx_hal_cortex.c │ │ ├── stm32f1xx_hal_dma.c │ │ ├── stm32f1xx_hal_exti.c │ │ ├── stm32f1xx_hal_flash.c │ │ ├── stm32f1xx_hal_flash_ex.c │ │ ├── stm32f1xx_hal_gpio.c │ │ ├── stm32f1xx_hal_gpio_ex.c │ │ ├── stm32f1xx_hal_i2c.c │ │ ├── stm32f1xx_hal_pwr.c │ │ ├── stm32f1xx_hal_rcc.c │ │ ├── stm32f1xx_hal_rcc_ex.c │ │ ├── stm32f1xx_hal_tim.c │ │ └── stm32f1xx_hal_tim_ex.c ├── STM32F103C8TX_FLASH.ld ├── readme.txt └── schematic.pdf ├── BluePillDemo_OptionBytes ├── .cproject ├── .gitignore ├── .mxproject ├── .project ├── .settings │ └── language.settings.xml ├── BluePillDemo_OptionBytes Debug.launch ├── BluePillDemo_OptionBytes.ioc ├── Core │ ├── Inc │ │ ├── main.h │ │ ├── stm32f1xx_hal_conf.h │ │ └── stm32f1xx_it.h │ ├── Src │ │ ├── main.c │ │ ├── stm32f1xx_hal_msp.c │ │ ├── stm32f1xx_it.c │ │ ├── syscalls.c │ │ ├── sysmem.c │ │ └── system_stm32f1xx.c │ └── Startup │ │ └── startup_stm32f103c8tx.s ├── Drivers │ ├── CMSIS │ │ ├── Device │ │ │ └── ST │ │ │ │ └── STM32F1xx │ │ │ │ └── Include │ │ │ │ ├── stm32f103xb.h │ │ │ │ ├── stm32f1xx.h │ │ │ │ └── system_stm32f1xx.h │ │ └── Include │ │ │ ├── cmsis_armcc.h │ │ │ ├── cmsis_armclang.h │ │ │ ├── cmsis_compiler.h │ │ │ ├── cmsis_gcc.h │ │ │ ├── cmsis_iccarm.h │ │ │ ├── cmsis_version.h │ │ │ ├── core_armv8mbl.h │ │ │ ├── core_armv8mml.h │ │ │ ├── core_cm0.h │ │ │ ├── core_cm0plus.h │ │ │ ├── core_cm1.h │ │ │ ├── core_cm23.h │ │ │ ├── core_cm3.h │ │ │ ├── core_cm33.h │ │ │ ├── core_cm4.h │ │ │ ├── core_cm7.h │ │ │ ├── core_sc000.h │ │ │ ├── core_sc300.h │ │ │ ├── mpu_armv7.h │ │ │ ├── mpu_armv8.h │ │ │ └── tz_context.h │ └── STM32F1xx_HAL_Driver │ │ ├── Inc │ │ ├── Legacy │ │ │ └── stm32_hal_legacy.h │ │ ├── stm32f1xx_hal.h │ │ ├── stm32f1xx_hal_cortex.h │ │ ├── stm32f1xx_hal_def.h │ │ ├── stm32f1xx_hal_dma.h │ │ ├── stm32f1xx_hal_dma_ex.h │ │ ├── stm32f1xx_hal_exti.h │ │ ├── stm32f1xx_hal_flash.h │ │ ├── stm32f1xx_hal_flash_ex.h │ │ ├── stm32f1xx_hal_gpio.h │ │ ├── stm32f1xx_hal_gpio_ex.h │ │ ├── stm32f1xx_hal_pwr.h │ │ ├── stm32f1xx_hal_rcc.h │ │ ├── stm32f1xx_hal_rcc_ex.h │ │ ├── stm32f1xx_hal_tim.h │ │ └── stm32f1xx_hal_tim_ex.h │ │ └── Src │ │ ├── stm32f1xx_hal.c │ │ ├── stm32f1xx_hal_cortex.c │ │ ├── stm32f1xx_hal_dma.c │ │ ├── stm32f1xx_hal_exti.c │ │ ├── stm32f1xx_hal_flash.c │ │ ├── stm32f1xx_hal_flash_ex.c │ │ ├── stm32f1xx_hal_gpio.c │ │ ├── stm32f1xx_hal_gpio_ex.c │ │ ├── stm32f1xx_hal_pwr.c │ │ ├── stm32f1xx_hal_rcc.c │ │ ├── stm32f1xx_hal_rcc_ex.c │ │ ├── stm32f1xx_hal_tim.c │ │ └── stm32f1xx_hal_tim_ex.c ├── STM32F103C8TX_FLASH.ld └── readme.txt ├── BluePillDemo_PWM ├── .cproject ├── .gitignore ├── .mxproject ├── .project ├── .settings │ └── language.settings.xml ├── BluePillDemo_PWM Debug.launch ├── BluePillDemo_PWM.ioc ├── Core │ ├── Inc │ │ ├── main.h │ │ ├── stm32f1xx_hal_conf.h │ │ └── stm32f1xx_it.h │ ├── Src │ │ ├── main.c │ │ ├── stm32f1xx_hal_msp.c │ │ ├── stm32f1xx_it.c │ │ ├── syscalls.c │ │ ├── sysmem.c │ │ └── system_stm32f1xx.c │ └── Startup │ │ └── startup_stm32f103c8tx.s ├── Drivers │ ├── CMSIS │ │ ├── Device │ │ │ └── ST │ │ │ │ └── STM32F1xx │ │ │ │ └── Include │ │ │ │ ├── stm32f103xb.h │ │ │ │ ├── stm32f1xx.h │ │ │ │ └── system_stm32f1xx.h │ │ └── Include │ │ │ ├── cmsis_armcc.h │ │ │ ├── cmsis_armclang.h │ │ │ ├── cmsis_compiler.h │ │ │ ├── cmsis_gcc.h │ │ │ ├── cmsis_iccarm.h │ │ │ ├── cmsis_version.h │ │ │ ├── core_armv8mbl.h │ │ │ ├── core_armv8mml.h │ │ │ ├── core_cm0.h │ │ │ ├── core_cm0plus.h │ │ │ ├── core_cm1.h │ │ │ ├── core_cm23.h │ │ │ ├── core_cm3.h │ │ │ ├── core_cm33.h │ │ │ ├── core_cm4.h │ │ │ ├── core_cm7.h │ │ │ ├── core_sc000.h │ │ │ ├── core_sc300.h │ │ │ ├── mpu_armv7.h │ │ │ ├── mpu_armv8.h │ │ │ └── tz_context.h │ └── STM32F1xx_HAL_Driver │ │ ├── Inc │ │ ├── Legacy │ │ │ └── stm32_hal_legacy.h │ │ ├── stm32f1xx_hal.h │ │ ├── stm32f1xx_hal_cortex.h │ │ ├── stm32f1xx_hal_def.h │ │ ├── stm32f1xx_hal_dma.h │ │ ├── stm32f1xx_hal_dma_ex.h │ │ ├── stm32f1xx_hal_exti.h │ │ ├── stm32f1xx_hal_flash.h │ │ ├── stm32f1xx_hal_flash_ex.h │ │ ├── stm32f1xx_hal_gpio.h │ │ ├── stm32f1xx_hal_gpio_ex.h │ │ ├── stm32f1xx_hal_pwr.h │ │ ├── stm32f1xx_hal_rcc.h │ │ ├── stm32f1xx_hal_rcc_ex.h │ │ ├── stm32f1xx_hal_tim.h │ │ └── stm32f1xx_hal_tim_ex.h │ │ └── Src │ │ ├── stm32f1xx_hal.c │ │ ├── stm32f1xx_hal_cortex.c │ │ ├── stm32f1xx_hal_dma.c │ │ ├── stm32f1xx_hal_exti.c │ │ ├── stm32f1xx_hal_flash.c │ │ ├── stm32f1xx_hal_flash_ex.c │ │ ├── stm32f1xx_hal_gpio.c │ │ ├── stm32f1xx_hal_gpio_ex.c │ │ ├── stm32f1xx_hal_pwr.c │ │ ├── stm32f1xx_hal_rcc.c │ │ ├── stm32f1xx_hal_rcc_ex.c │ │ ├── stm32f1xx_hal_tim.c │ │ └── stm32f1xx_hal_tim_ex.c ├── STM32F103C8TX_FLASH.ld ├── readme.txt └── schematic.pdf ├── BluePillDemo_PWM_Buzzer ├── .cproject ├── .gitignore ├── .mxproject ├── .project ├── .settings │ └── language.settings.xml ├── BluePillDemo_PWM_Buzzer Debug.launch ├── BluePillDemo_PWM_Buzzer.ioc ├── Core │ ├── Inc │ │ ├── main.h │ │ ├── stm32f1xx_hal_conf.h │ │ └── stm32f1xx_it.h │ ├── Src │ │ ├── main.c │ │ ├── stm32f1xx_hal_msp.c │ │ ├── stm32f1xx_it.c │ │ ├── syscalls.c │ │ ├── sysmem.c │ │ └── system_stm32f1xx.c │ └── Startup │ │ └── startup_stm32f103c8tx.s ├── Drivers │ ├── CMSIS │ │ ├── Device │ │ │ └── ST │ │ │ │ └── STM32F1xx │ │ │ │ └── Include │ │ │ │ ├── stm32f103xb.h │ │ │ │ ├── stm32f1xx.h │ │ │ │ └── system_stm32f1xx.h │ │ └── Include │ │ │ ├── cmsis_armcc.h │ │ │ ├── cmsis_armclang.h │ │ │ ├── cmsis_compiler.h │ │ │ ├── cmsis_gcc.h │ │ │ ├── cmsis_iccarm.h │ │ │ ├── cmsis_version.h │ │ │ ├── core_armv8mbl.h │ │ │ ├── core_armv8mml.h │ │ │ ├── core_cm0.h │ │ │ ├── core_cm0plus.h │ │ │ ├── core_cm1.h │ │ │ ├── core_cm23.h │ │ │ ├── core_cm3.h │ │ │ ├── core_cm33.h │ │ │ ├── core_cm4.h │ │ │ ├── core_cm7.h │ │ │ ├── core_sc000.h │ │ │ ├── core_sc300.h │ │ │ ├── mpu_armv7.h │ │ │ ├── mpu_armv8.h │ │ │ └── tz_context.h │ └── STM32F1xx_HAL_Driver │ │ ├── Inc │ │ ├── Legacy │ │ │ └── stm32_hal_legacy.h │ │ ├── stm32f1xx_hal.h │ │ ├── stm32f1xx_hal_cortex.h │ │ ├── stm32f1xx_hal_def.h │ │ ├── stm32f1xx_hal_dma.h │ │ ├── stm32f1xx_hal_dma_ex.h │ │ ├── stm32f1xx_hal_exti.h │ │ ├── stm32f1xx_hal_flash.h │ │ ├── stm32f1xx_hal_flash_ex.h │ │ ├── stm32f1xx_hal_gpio.h │ │ ├── stm32f1xx_hal_gpio_ex.h │ │ ├── stm32f1xx_hal_pwr.h │ │ ├── stm32f1xx_hal_rcc.h │ │ ├── stm32f1xx_hal_rcc_ex.h │ │ ├── stm32f1xx_hal_tim.h │ │ └── stm32f1xx_hal_tim_ex.h │ │ └── Src │ │ ├── stm32f1xx_hal.c │ │ ├── stm32f1xx_hal_cortex.c │ │ ├── stm32f1xx_hal_dma.c │ │ ├── stm32f1xx_hal_exti.c │ │ ├── stm32f1xx_hal_flash.c │ │ ├── stm32f1xx_hal_flash_ex.c │ │ ├── stm32f1xx_hal_gpio.c │ │ ├── stm32f1xx_hal_gpio_ex.c │ │ ├── stm32f1xx_hal_pwr.c │ │ ├── stm32f1xx_hal_rcc.c │ │ ├── stm32f1xx_hal_rcc_ex.c │ │ ├── stm32f1xx_hal_tim.c │ │ └── stm32f1xx_hal_tim_ex.c ├── STM32F103C8TX_FLASH.ld ├── readme.txt └── schematic.pdf ├── BluePillDemo_RTC ├── .cproject ├── .gitignore ├── .mxproject ├── .project ├── .settings │ └── language.settings.xml ├── BluePillDemo_RTC Debug.launch ├── BluePillDemo_RTC.ioc ├── Core │ ├── Inc │ │ ├── main.h │ │ ├── stm32f1xx_hal_conf.h │ │ └── stm32f1xx_it.h │ ├── Src │ │ ├── main.c │ │ ├── stm32f1xx_hal_msp.c │ │ ├── stm32f1xx_it.c │ │ ├── syscalls.c │ │ ├── sysmem.c │ │ └── system_stm32f1xx.c │ └── Startup │ │ └── startup_stm32f103c8tx.s ├── Drivers │ ├── CMSIS │ │ ├── Device │ │ │ └── ST │ │ │ │ └── STM32F1xx │ │ │ │ └── Include │ │ │ │ ├── stm32f103xb.h │ │ │ │ ├── stm32f1xx.h │ │ │ │ └── system_stm32f1xx.h │ │ └── Include │ │ │ ├── cmsis_armcc.h │ │ │ ├── cmsis_armclang.h │ │ │ ├── cmsis_compiler.h │ │ │ ├── cmsis_gcc.h │ │ │ ├── cmsis_iccarm.h │ │ │ ├── cmsis_version.h │ │ │ ├── core_armv8mbl.h │ │ │ ├── core_armv8mml.h │ │ │ ├── core_cm0.h │ │ │ ├── core_cm0plus.h │ │ │ ├── core_cm1.h │ │ │ ├── core_cm23.h │ │ │ ├── core_cm3.h │ │ │ ├── core_cm33.h │ │ │ ├── core_cm4.h │ │ │ ├── core_cm7.h │ │ │ ├── core_sc000.h │ │ │ ├── core_sc300.h │ │ │ ├── mpu_armv7.h │ │ │ ├── mpu_armv8.h │ │ │ └── tz_context.h │ └── STM32F1xx_HAL_Driver │ │ ├── Inc │ │ ├── Legacy │ │ │ └── stm32_hal_legacy.h │ │ ├── stm32f1xx_hal.h │ │ ├── stm32f1xx_hal_cortex.h │ │ ├── stm32f1xx_hal_def.h │ │ ├── stm32f1xx_hal_dma.h │ │ ├── stm32f1xx_hal_dma_ex.h │ │ ├── stm32f1xx_hal_exti.h │ │ ├── stm32f1xx_hal_flash.h │ │ ├── stm32f1xx_hal_flash_ex.h │ │ ├── stm32f1xx_hal_gpio.h │ │ ├── stm32f1xx_hal_gpio_ex.h │ │ ├── stm32f1xx_hal_pwr.h │ │ ├── stm32f1xx_hal_rcc.h │ │ ├── stm32f1xx_hal_rcc_ex.h │ │ ├── stm32f1xx_hal_rtc.h │ │ ├── stm32f1xx_hal_rtc_ex.h │ │ ├── stm32f1xx_hal_tim.h │ │ └── stm32f1xx_hal_tim_ex.h │ │ └── Src │ │ ├── stm32f1xx_hal.c │ │ ├── stm32f1xx_hal_cortex.c │ │ ├── stm32f1xx_hal_dma.c │ │ ├── stm32f1xx_hal_exti.c │ │ ├── stm32f1xx_hal_flash.c │ │ ├── stm32f1xx_hal_flash_ex.c │ │ ├── stm32f1xx_hal_gpio.c │ │ ├── stm32f1xx_hal_gpio_ex.c │ │ ├── stm32f1xx_hal_pwr.c │ │ ├── stm32f1xx_hal_rcc.c │ │ ├── stm32f1xx_hal_rcc_ex.c │ │ ├── stm32f1xx_hal_rtc.c │ │ ├── stm32f1xx_hal_rtc_ex.c │ │ ├── stm32f1xx_hal_tim.c │ │ └── stm32f1xx_hal_tim_ex.c ├── STM32F103C8TX_FLASH.ld └── readme.txt ├── BluePillDemo_SHA1 ├── .cproject ├── .gitignore ├── .mxproject ├── .project ├── .settings │ └── language.settings.xml ├── BluePillDemo_SHA1 Debug.launch ├── BluePillDemo_SHA1.ioc ├── Core │ ├── Inc │ │ ├── main.h │ │ ├── sha1.h │ │ ├── stm32f1xx_hal_conf.h │ │ └── stm32f1xx_it.h │ ├── Src │ │ ├── main.c │ │ ├── sha1.c │ │ ├── stm32f1xx_hal_msp.c │ │ ├── stm32f1xx_it.c │ │ ├── syscalls.c │ │ ├── sysmem.c │ │ └── system_stm32f1xx.c │ └── Startup │ │ └── startup_stm32f103c8tx.s ├── Drivers │ ├── CMSIS │ │ ├── Device │ │ │ └── ST │ │ │ │ └── STM32F1xx │ │ │ │ └── Include │ │ │ │ ├── stm32f103xb.h │ │ │ │ ├── stm32f1xx.h │ │ │ │ └── system_stm32f1xx.h │ │ └── Include │ │ │ ├── cmsis_armcc.h │ │ │ ├── cmsis_armclang.h │ │ │ ├── cmsis_compiler.h │ │ │ ├── cmsis_gcc.h │ │ │ ├── cmsis_iccarm.h │ │ │ ├── cmsis_version.h │ │ │ ├── core_armv8mbl.h │ │ │ ├── core_armv8mml.h │ │ │ ├── core_cm0.h │ │ │ ├── core_cm0plus.h │ │ │ ├── core_cm1.h │ │ │ ├── core_cm23.h │ │ │ ├── core_cm3.h │ │ │ ├── core_cm33.h │ │ │ ├── core_cm4.h │ │ │ ├── core_cm7.h │ │ │ ├── core_sc000.h │ │ │ ├── core_sc300.h │ │ │ ├── mpu_armv7.h │ │ │ ├── mpu_armv8.h │ │ │ └── tz_context.h │ └── STM32F1xx_HAL_Driver │ │ ├── Inc │ │ ├── Legacy │ │ │ └── stm32_hal_legacy.h │ │ ├── stm32f1xx_hal.h │ │ ├── stm32f1xx_hal_cortex.h │ │ ├── stm32f1xx_hal_def.h │ │ ├── stm32f1xx_hal_dma.h │ │ ├── stm32f1xx_hal_dma_ex.h │ │ ├── stm32f1xx_hal_exti.h │ │ ├── stm32f1xx_hal_flash.h │ │ ├── stm32f1xx_hal_flash_ex.h │ │ ├── stm32f1xx_hal_gpio.h │ │ ├── stm32f1xx_hal_gpio_ex.h │ │ ├── stm32f1xx_hal_pwr.h │ │ ├── stm32f1xx_hal_rcc.h │ │ ├── stm32f1xx_hal_rcc_ex.h │ │ ├── stm32f1xx_hal_tim.h │ │ └── stm32f1xx_hal_tim_ex.h │ │ └── Src │ │ ├── stm32f1xx_hal.c │ │ ├── stm32f1xx_hal_cortex.c │ │ ├── stm32f1xx_hal_dma.c │ │ ├── stm32f1xx_hal_exti.c │ │ ├── stm32f1xx_hal_flash.c │ │ ├── stm32f1xx_hal_flash_ex.c │ │ ├── stm32f1xx_hal_gpio.c │ │ ├── stm32f1xx_hal_gpio_ex.c │ │ ├── stm32f1xx_hal_pwr.c │ │ ├── stm32f1xx_hal_rcc.c │ │ ├── stm32f1xx_hal_rcc_ex.c │ │ ├── stm32f1xx_hal_tim.c │ │ └── stm32f1xx_hal_tim_ex.c ├── STM32F103C8TX_FLASH.ld └── readme.txt ├── BluePillDemo_SIM800L_HTTP ├── .cproject ├── .gitignore ├── .mxproject ├── .project ├── .settings │ └── language.settings.xml ├── BluePillDemo_SIM800L_HTTP Debug.launch ├── BluePillDemo_SIM800L_HTTP.ioc ├── Core │ ├── Inc │ │ ├── buffered_serial.h │ │ ├── main.h │ │ ├── modem.h │ │ ├── stm32f1xx_hal_conf.h │ │ └── stm32f1xx_it.h │ ├── Src │ │ ├── buffered_serial.c │ │ ├── main.c │ │ ├── modem.c │ │ ├── stm32f1xx_hal_msp.c │ │ ├── stm32f1xx_it.c │ │ ├── syscalls.c │ │ ├── sysmem.c │ │ └── system_stm32f1xx.c │ └── Startup │ │ └── startup_stm32f103c8tx.s ├── Drivers │ ├── CMSIS │ │ ├── Device │ │ │ └── ST │ │ │ │ └── STM32F1xx │ │ │ │ └── Include │ │ │ │ ├── stm32f103xb.h │ │ │ │ ├── stm32f1xx.h │ │ │ │ └── system_stm32f1xx.h │ │ └── Include │ │ │ ├── cmsis_armcc.h │ │ │ ├── cmsis_armclang.h │ │ │ ├── cmsis_compiler.h │ │ │ ├── cmsis_gcc.h │ │ │ ├── cmsis_iccarm.h │ │ │ ├── cmsis_version.h │ │ │ ├── core_armv8mbl.h │ │ │ ├── core_armv8mml.h │ │ │ ├── core_cm0.h │ │ │ ├── core_cm0plus.h │ │ │ ├── core_cm1.h │ │ │ ├── core_cm23.h │ │ │ ├── core_cm3.h │ │ │ ├── core_cm33.h │ │ │ ├── core_cm4.h │ │ │ ├── core_cm7.h │ │ │ ├── core_sc000.h │ │ │ ├── core_sc300.h │ │ │ ├── mpu_armv7.h │ │ │ ├── mpu_armv8.h │ │ │ └── tz_context.h │ └── STM32F1xx_HAL_Driver │ │ ├── Inc │ │ ├── Legacy │ │ │ └── stm32_hal_legacy.h │ │ ├── stm32f1xx_hal.h │ │ ├── stm32f1xx_hal_cortex.h │ │ ├── stm32f1xx_hal_def.h │ │ ├── stm32f1xx_hal_dma.h │ │ ├── stm32f1xx_hal_dma_ex.h │ │ ├── stm32f1xx_hal_exti.h │ │ ├── stm32f1xx_hal_flash.h │ │ ├── stm32f1xx_hal_flash_ex.h │ │ ├── stm32f1xx_hal_gpio.h │ │ ├── stm32f1xx_hal_gpio_ex.h │ │ ├── stm32f1xx_hal_pwr.h │ │ ├── stm32f1xx_hal_rcc.h │ │ ├── stm32f1xx_hal_rcc_ex.h │ │ ├── stm32f1xx_hal_tim.h │ │ ├── stm32f1xx_hal_tim_ex.h │ │ └── stm32f1xx_hal_uart.h │ │ └── Src │ │ ├── stm32f1xx_hal.c │ │ ├── stm32f1xx_hal_cortex.c │ │ ├── stm32f1xx_hal_dma.c │ │ ├── stm32f1xx_hal_exti.c │ │ ├── stm32f1xx_hal_flash.c │ │ ├── stm32f1xx_hal_flash_ex.c │ │ ├── stm32f1xx_hal_gpio.c │ │ ├── stm32f1xx_hal_gpio_ex.c │ │ ├── stm32f1xx_hal_pwr.c │ │ ├── stm32f1xx_hal_rcc.c │ │ ├── stm32f1xx_hal_rcc_ex.c │ │ ├── stm32f1xx_hal_tim.c │ │ ├── stm32f1xx_hal_tim_ex.c │ │ └── stm32f1xx_hal_uart.c ├── STM32F103C8TX_FLASH.ld ├── ftdi cable.png ├── readme.txt └── schematic.pdf ├── BluePillDemo_SIM800L_MQTT_FreeRTOS ├── .cproject ├── .gitignore ├── .mxproject ├── .project ├── .settings │ └── language.settings.xml ├── BluePillDemo_SIM800L_MQTT_FreeRTOS Debug.launch ├── BluePillDemo_SIM800L_MQTT_FreeRTOS.ioc ├── Core │ ├── Inc │ │ ├── FreeRTOSConfig.h │ │ ├── buffered_serial.h │ │ ├── main.h │ │ ├── modem.h │ │ ├── mqtt.h │ │ ├── stm32f1xx_hal_conf.h │ │ └── stm32f1xx_it.h │ ├── Src │ │ ├── buffered_serial.c │ │ ├── freertos.c │ │ ├── main.c │ │ ├── modem.c │ │ ├── mqtt.c │ │ ├── stm32f1xx_hal_msp.c │ │ ├── stm32f1xx_hal_timebase_tim.c │ │ ├── stm32f1xx_it.c │ │ ├── syscalls.c │ │ ├── sysmem.c │ │ └── system_stm32f1xx.c │ └── Startup │ │ └── startup_stm32f103c8tx.s ├── Drivers │ ├── CMSIS │ │ ├── Device │ │ │ └── ST │ │ │ │ └── STM32F1xx │ │ │ │ └── Include │ │ │ │ ├── stm32f103xb.h │ │ │ │ ├── stm32f1xx.h │ │ │ │ └── system_stm32f1xx.h │ │ └── Include │ │ │ ├── cmsis_armcc.h │ │ │ ├── cmsis_armclang.h │ │ │ ├── cmsis_compiler.h │ │ │ ├── cmsis_gcc.h │ │ │ ├── cmsis_iccarm.h │ │ │ ├── cmsis_version.h │ │ │ ├── core_armv8mbl.h │ │ │ ├── core_armv8mml.h │ │ │ ├── core_cm0.h │ │ │ ├── core_cm0plus.h │ │ │ ├── core_cm1.h │ │ │ ├── core_cm23.h │ │ │ ├── core_cm3.h │ │ │ ├── core_cm33.h │ │ │ ├── core_cm4.h │ │ │ ├── core_cm7.h │ │ │ ├── core_sc000.h │ │ │ ├── core_sc300.h │ │ │ ├── mpu_armv7.h │ │ │ ├── mpu_armv8.h │ │ │ └── tz_context.h │ └── STM32F1xx_HAL_Driver │ │ ├── Inc │ │ ├── Legacy │ │ │ └── stm32_hal_legacy.h │ │ ├── stm32f1xx_hal.h │ │ ├── stm32f1xx_hal_cortex.h │ │ ├── stm32f1xx_hal_def.h │ │ ├── stm32f1xx_hal_dma.h │ │ ├── stm32f1xx_hal_dma_ex.h │ │ ├── stm32f1xx_hal_exti.h │ │ ├── stm32f1xx_hal_flash.h │ │ ├── stm32f1xx_hal_flash_ex.h │ │ ├── stm32f1xx_hal_gpio.h │ │ ├── stm32f1xx_hal_gpio_ex.h │ │ ├── stm32f1xx_hal_pwr.h │ │ ├── stm32f1xx_hal_rcc.h │ │ ├── stm32f1xx_hal_rcc_ex.h │ │ ├── stm32f1xx_hal_tim.h │ │ ├── stm32f1xx_hal_tim_ex.h │ │ └── stm32f1xx_hal_uart.h │ │ └── Src │ │ ├── stm32f1xx_hal.c │ │ ├── stm32f1xx_hal_cortex.c │ │ ├── stm32f1xx_hal_dma.c │ │ ├── stm32f1xx_hal_exti.c │ │ ├── stm32f1xx_hal_flash.c │ │ ├── stm32f1xx_hal_flash_ex.c │ │ ├── stm32f1xx_hal_gpio.c │ │ ├── stm32f1xx_hal_gpio_ex.c │ │ ├── stm32f1xx_hal_pwr.c │ │ ├── stm32f1xx_hal_rcc.c │ │ ├── stm32f1xx_hal_rcc_ex.c │ │ ├── stm32f1xx_hal_tim.c │ │ ├── stm32f1xx_hal_tim_ex.c │ │ └── stm32f1xx_hal_uart.c ├── Middlewares │ └── Third_Party │ │ └── FreeRTOS │ │ └── Source │ │ ├── CMSIS_RTOS_V2 │ │ ├── cmsis_os.h │ │ ├── cmsis_os2.c │ │ └── cmsis_os2.h │ │ ├── croutine.c │ │ ├── event_groups.c │ │ ├── include │ │ ├── FreeRTOS.h │ │ ├── StackMacros.h │ │ ├── croutine.h │ │ ├── deprecated_definitions.h │ │ ├── event_groups.h │ │ ├── list.h │ │ ├── message_buffer.h │ │ ├── mpu_prototypes.h │ │ ├── mpu_wrappers.h │ │ ├── portable.h │ │ ├── projdefs.h │ │ ├── queue.h │ │ ├── semphr.h │ │ ├── stack_macros.h │ │ ├── stream_buffer.h │ │ ├── task.h │ │ └── timers.h │ │ ├── list.c │ │ ├── portable │ │ ├── GCC │ │ │ └── ARM_CM3 │ │ │ │ ├── port.c │ │ │ │ └── portmacro.h │ │ └── MemMang │ │ │ └── heap_4.c │ │ ├── queue.c │ │ ├── stream_buffer.c │ │ ├── tasks.c │ │ └── timers.c ├── STM32F103C8TX_FLASH.ld ├── readme.txt └── schematic.pdf ├── BluePillDemo_SIM800L_MQTT_FreeRTOS_Website ├── .cproject ├── .gitignore ├── .mxproject ├── .project ├── .settings │ └── language.settings.xml ├── BluePillDemo_SIM800L_MQTT_FreeRTOS_Website Debug.launch ├── BluePillDemo_SIM800L_MQTT_FreeRTOS_Website.ioc ├── Core │ ├── Inc │ │ ├── FreeRTOSConfig.h │ │ ├── buffered_serial.h │ │ ├── main.h │ │ ├── modem.h │ │ ├── mqtt.h │ │ ├── stm32f1xx_hal_conf.h │ │ └── stm32f1xx_it.h │ ├── Src │ │ ├── buffered_serial.c │ │ ├── freertos.c │ │ ├── main.c │ │ ├── modem.c │ │ ├── mqtt.c │ │ ├── stm32f1xx_hal_msp.c │ │ ├── stm32f1xx_hal_timebase_tim.c │ │ ├── stm32f1xx_it.c │ │ ├── syscalls.c │ │ ├── sysmem.c │ │ └── system_stm32f1xx.c │ └── Startup │ │ └── startup_stm32f103c8tx.s ├── Drivers │ ├── CMSIS │ │ ├── Device │ │ │ └── ST │ │ │ │ └── STM32F1xx │ │ │ │ └── Include │ │ │ │ ├── stm32f103xb.h │ │ │ │ ├── stm32f1xx.h │ │ │ │ └── system_stm32f1xx.h │ │ └── Include │ │ │ ├── cmsis_armcc.h │ │ │ ├── cmsis_armclang.h │ │ │ ├── cmsis_compiler.h │ │ │ ├── cmsis_gcc.h │ │ │ ├── cmsis_iccarm.h │ │ │ ├── cmsis_version.h │ │ │ ├── core_armv8mbl.h │ │ │ ├── core_armv8mml.h │ │ │ ├── core_cm0.h │ │ │ ├── core_cm0plus.h │ │ │ ├── core_cm1.h │ │ │ ├── core_cm23.h │ │ │ ├── core_cm3.h │ │ │ ├── core_cm33.h │ │ │ ├── core_cm4.h │ │ │ ├── core_cm7.h │ │ │ ├── core_sc000.h │ │ │ ├── core_sc300.h │ │ │ ├── mpu_armv7.h │ │ │ ├── mpu_armv8.h │ │ │ └── tz_context.h │ └── STM32F1xx_HAL_Driver │ │ ├── Inc │ │ ├── Legacy │ │ │ └── stm32_hal_legacy.h │ │ ├── stm32f1xx_hal.h │ │ ├── stm32f1xx_hal_adc.h │ │ ├── stm32f1xx_hal_adc_ex.h │ │ ├── stm32f1xx_hal_cortex.h │ │ ├── stm32f1xx_hal_def.h │ │ ├── stm32f1xx_hal_dma.h │ │ ├── stm32f1xx_hal_dma_ex.h │ │ ├── stm32f1xx_hal_exti.h │ │ ├── stm32f1xx_hal_flash.h │ │ ├── stm32f1xx_hal_flash_ex.h │ │ ├── stm32f1xx_hal_gpio.h │ │ ├── stm32f1xx_hal_gpio_ex.h │ │ ├── stm32f1xx_hal_pwr.h │ │ ├── stm32f1xx_hal_rcc.h │ │ ├── stm32f1xx_hal_rcc_ex.h │ │ ├── stm32f1xx_hal_tim.h │ │ ├── stm32f1xx_hal_tim_ex.h │ │ └── stm32f1xx_hal_uart.h │ │ └── Src │ │ ├── stm32f1xx_hal.c │ │ ├── stm32f1xx_hal_adc.c │ │ ├── stm32f1xx_hal_adc_ex.c │ │ ├── stm32f1xx_hal_cortex.c │ │ ├── stm32f1xx_hal_dma.c │ │ ├── stm32f1xx_hal_exti.c │ │ ├── stm32f1xx_hal_flash.c │ │ ├── stm32f1xx_hal_flash_ex.c │ │ ├── stm32f1xx_hal_gpio.c │ │ ├── stm32f1xx_hal_gpio_ex.c │ │ ├── stm32f1xx_hal_pwr.c │ │ ├── stm32f1xx_hal_rcc.c │ │ ├── stm32f1xx_hal_rcc_ex.c │ │ ├── stm32f1xx_hal_tim.c │ │ ├── stm32f1xx_hal_tim_ex.c │ │ └── stm32f1xx_hal_uart.c ├── Middlewares │ └── Third_Party │ │ └── FreeRTOS │ │ └── Source │ │ ├── CMSIS_RTOS_V2 │ │ ├── cmsis_os.h │ │ ├── cmsis_os2.c │ │ └── cmsis_os2.h │ │ ├── croutine.c │ │ ├── event_groups.c │ │ ├── include │ │ ├── FreeRTOS.h │ │ ├── StackMacros.h │ │ ├── croutine.h │ │ ├── deprecated_definitions.h │ │ ├── event_groups.h │ │ ├── list.h │ │ ├── message_buffer.h │ │ ├── mpu_prototypes.h │ │ ├── mpu_wrappers.h │ │ ├── portable.h │ │ ├── projdefs.h │ │ ├── queue.h │ │ ├── semphr.h │ │ ├── stack_macros.h │ │ ├── stream_buffer.h │ │ ├── task.h │ │ └── timers.h │ │ ├── list.c │ │ ├── portable │ │ ├── GCC │ │ │ └── ARM_CM3 │ │ │ │ ├── port.c │ │ │ │ └── portmacro.h │ │ └── MemMang │ │ │ └── heap_4.c │ │ ├── queue.c │ │ ├── stream_buffer.c │ │ ├── tasks.c │ │ └── timers.c ├── STM32F103C8TX_FLASH.ld ├── green_led.gif ├── grey_led.gif ├── index.html ├── readme.txt └── schematic.pdf ├── BluePillDemo_SIM800L_SMS ├── .cproject ├── .gitignore ├── .mxproject ├── .project ├── .settings │ └── language.settings.xml ├── BluePillDemo_SIM800L_SMS Debug.launch ├── BluePillDemo_SIM800L_SMS.ioc ├── Core │ ├── Inc │ │ ├── buffered_serial.h │ │ ├── main.h │ │ ├── modem.h │ │ ├── stm32f1xx_hal_conf.h │ │ └── stm32f1xx_it.h │ ├── Src │ │ ├── buffered_serial.c │ │ ├── main.c │ │ ├── modem.c │ │ ├── stm32f1xx_hal_msp.c │ │ ├── stm32f1xx_it.c │ │ ├── syscalls.c │ │ ├── sysmem.c │ │ └── system_stm32f1xx.c │ └── Startup │ │ └── startup_stm32f103c8tx.s ├── Drivers │ ├── CMSIS │ │ ├── Device │ │ │ └── ST │ │ │ │ └── STM32F1xx │ │ │ │ └── Include │ │ │ │ ├── stm32f103xb.h │ │ │ │ ├── stm32f1xx.h │ │ │ │ └── system_stm32f1xx.h │ │ └── Include │ │ │ ├── cmsis_armcc.h │ │ │ ├── cmsis_armclang.h │ │ │ ├── cmsis_compiler.h │ │ │ ├── cmsis_gcc.h │ │ │ ├── cmsis_iccarm.h │ │ │ ├── cmsis_version.h │ │ │ ├── core_armv8mbl.h │ │ │ ├── core_armv8mml.h │ │ │ ├── core_cm0.h │ │ │ ├── core_cm0plus.h │ │ │ ├── core_cm1.h │ │ │ ├── core_cm23.h │ │ │ ├── core_cm3.h │ │ │ ├── core_cm33.h │ │ │ ├── core_cm4.h │ │ │ ├── core_cm7.h │ │ │ ├── core_sc000.h │ │ │ ├── core_sc300.h │ │ │ ├── mpu_armv7.h │ │ │ ├── mpu_armv8.h │ │ │ └── tz_context.h │ └── STM32F1xx_HAL_Driver │ │ ├── Inc │ │ ├── Legacy │ │ │ └── stm32_hal_legacy.h │ │ ├── stm32f1xx_hal.h │ │ ├── stm32f1xx_hal_cortex.h │ │ ├── stm32f1xx_hal_def.h │ │ ├── stm32f1xx_hal_dma.h │ │ ├── stm32f1xx_hal_dma_ex.h │ │ ├── stm32f1xx_hal_exti.h │ │ ├── stm32f1xx_hal_flash.h │ │ ├── stm32f1xx_hal_flash_ex.h │ │ ├── stm32f1xx_hal_gpio.h │ │ ├── stm32f1xx_hal_gpio_ex.h │ │ ├── stm32f1xx_hal_pwr.h │ │ ├── stm32f1xx_hal_rcc.h │ │ ├── stm32f1xx_hal_rcc_ex.h │ │ ├── stm32f1xx_hal_tim.h │ │ ├── stm32f1xx_hal_tim_ex.h │ │ └── stm32f1xx_hal_uart.h │ │ └── Src │ │ ├── stm32f1xx_hal.c │ │ ├── stm32f1xx_hal_cortex.c │ │ ├── stm32f1xx_hal_dma.c │ │ ├── stm32f1xx_hal_exti.c │ │ ├── stm32f1xx_hal_flash.c │ │ ├── stm32f1xx_hal_flash_ex.c │ │ ├── stm32f1xx_hal_gpio.c │ │ ├── stm32f1xx_hal_gpio_ex.c │ │ ├── stm32f1xx_hal_pwr.c │ │ ├── stm32f1xx_hal_rcc.c │ │ ├── stm32f1xx_hal_rcc_ex.c │ │ ├── stm32f1xx_hal_tim.c │ │ ├── stm32f1xx_hal_tim_ex.c │ │ └── stm32f1xx_hal_uart.c ├── STM32F103C8TX_FLASH.ld ├── ftdi cable.png ├── readme.txt └── schematic.pdf ├── BluePillDemo_SIM800L_TCP_FreeRTOS ├── .cproject ├── .gitignore ├── .mxproject ├── .project ├── .settings │ └── language.settings.xml ├── BluePillDemo_SIM800L_TCP_FreeRTOS Debug.launch ├── BluePillDemo_SIM800L_TCP_FreeRTOS.ioc ├── Core │ ├── Inc │ │ ├── FreeRTOSConfig.h │ │ ├── buffered_serial.h │ │ ├── main.h │ │ ├── modem.h │ │ ├── stm32f1xx_hal_conf.h │ │ └── stm32f1xx_it.h │ ├── Src │ │ ├── buffered_serial.c │ │ ├── freertos.c │ │ ├── main.c │ │ ├── modem.c │ │ ├── stm32f1xx_hal_msp.c │ │ ├── stm32f1xx_hal_timebase_tim.c │ │ ├── stm32f1xx_it.c │ │ ├── syscalls.c │ │ ├── sysmem.c │ │ └── system_stm32f1xx.c │ └── Startup │ │ └── startup_stm32f103c8tx.s ├── Drivers │ ├── CMSIS │ │ ├── Device │ │ │ └── ST │ │ │ │ └── STM32F1xx │ │ │ │ └── Include │ │ │ │ ├── stm32f103xb.h │ │ │ │ ├── stm32f1xx.h │ │ │ │ └── system_stm32f1xx.h │ │ └── Include │ │ │ ├── cmsis_armcc.h │ │ │ ├── cmsis_armclang.h │ │ │ ├── cmsis_compiler.h │ │ │ ├── cmsis_gcc.h │ │ │ ├── cmsis_iccarm.h │ │ │ ├── cmsis_version.h │ │ │ ├── core_armv8mbl.h │ │ │ ├── core_armv8mml.h │ │ │ ├── core_cm0.h │ │ │ ├── core_cm0plus.h │ │ │ ├── core_cm1.h │ │ │ ├── core_cm23.h │ │ │ ├── core_cm3.h │ │ │ ├── core_cm33.h │ │ │ ├── core_cm4.h │ │ │ ├── core_cm7.h │ │ │ ├── core_sc000.h │ │ │ ├── core_sc300.h │ │ │ ├── mpu_armv7.h │ │ │ ├── mpu_armv8.h │ │ │ └── tz_context.h │ └── STM32F1xx_HAL_Driver │ │ ├── Inc │ │ ├── Legacy │ │ │ └── stm32_hal_legacy.h │ │ ├── stm32f1xx_hal.h │ │ ├── stm32f1xx_hal_cortex.h │ │ ├── stm32f1xx_hal_def.h │ │ ├── stm32f1xx_hal_dma.h │ │ ├── stm32f1xx_hal_dma_ex.h │ │ ├── stm32f1xx_hal_exti.h │ │ ├── stm32f1xx_hal_flash.h │ │ ├── stm32f1xx_hal_flash_ex.h │ │ ├── stm32f1xx_hal_gpio.h │ │ ├── stm32f1xx_hal_gpio_ex.h │ │ ├── stm32f1xx_hal_pwr.h │ │ ├── stm32f1xx_hal_rcc.h │ │ ├── stm32f1xx_hal_rcc_ex.h │ │ ├── stm32f1xx_hal_tim.h │ │ ├── stm32f1xx_hal_tim_ex.h │ │ └── stm32f1xx_hal_uart.h │ │ └── Src │ │ ├── stm32f1xx_hal.c │ │ ├── stm32f1xx_hal_cortex.c │ │ ├── stm32f1xx_hal_dma.c │ │ ├── stm32f1xx_hal_exti.c │ │ ├── stm32f1xx_hal_flash.c │ │ ├── stm32f1xx_hal_flash_ex.c │ │ ├── stm32f1xx_hal_gpio.c │ │ ├── stm32f1xx_hal_gpio_ex.c │ │ ├── stm32f1xx_hal_pwr.c │ │ ├── stm32f1xx_hal_rcc.c │ │ ├── stm32f1xx_hal_rcc_ex.c │ │ ├── stm32f1xx_hal_tim.c │ │ ├── stm32f1xx_hal_tim_ex.c │ │ └── stm32f1xx_hal_uart.c ├── Middlewares │ └── Third_Party │ │ └── FreeRTOS │ │ └── Source │ │ ├── CMSIS_RTOS_V2 │ │ ├── cmsis_os.h │ │ ├── cmsis_os2.c │ │ └── cmsis_os2.h │ │ ├── croutine.c │ │ ├── event_groups.c │ │ ├── include │ │ ├── FreeRTOS.h │ │ ├── StackMacros.h │ │ ├── croutine.h │ │ ├── deprecated_definitions.h │ │ ├── event_groups.h │ │ ├── list.h │ │ ├── message_buffer.h │ │ ├── mpu_prototypes.h │ │ ├── mpu_wrappers.h │ │ ├── portable.h │ │ ├── projdefs.h │ │ ├── queue.h │ │ ├── semphr.h │ │ ├── stack_macros.h │ │ ├── stream_buffer.h │ │ ├── task.h │ │ └── timers.h │ │ ├── list.c │ │ ├── portable │ │ ├── GCC │ │ │ └── ARM_CM3 │ │ │ │ ├── port.c │ │ │ │ └── portmacro.h │ │ └── MemMang │ │ │ └── heap_4.c │ │ ├── queue.c │ │ ├── stream_buffer.c │ │ ├── tasks.c │ │ └── timers.c ├── STM32F103C8TX_FLASH.ld ├── readme.txt └── schematic.pdf ├── BluePillDemo_SPI_2.4GHz_Radio_Rx ├── .cproject ├── .gitignore ├── .mxproject ├── .project ├── .settings │ └── language.settings.xml ├── BluePillDemo_SPI_2.4GHz_Radio_Rx Debug.launch ├── BluePillDemo_SPI_2.4GHz_Radio_Rx.ioc ├── Core │ ├── Inc │ │ ├── main.h │ │ ├── stm32f1xx_hal_conf.h │ │ └── stm32f1xx_it.h │ ├── Src │ │ ├── main.c │ │ ├── nrf24l01.c │ │ ├── nrf24l01.h │ │ ├── stm32f1xx_hal_msp.c │ │ ├── stm32f1xx_it.c │ │ ├── syscalls.c │ │ ├── sysmem.c │ │ └── system_stm32f1xx.c │ └── Startup │ │ └── startup_stm32f103c8tx.s ├── Drivers │ ├── CMSIS │ │ ├── Device │ │ │ └── ST │ │ │ │ └── STM32F1xx │ │ │ │ └── Include │ │ │ │ ├── stm32f103xb.h │ │ │ │ ├── stm32f1xx.h │ │ │ │ └── system_stm32f1xx.h │ │ └── Include │ │ │ ├── cmsis_armcc.h │ │ │ ├── cmsis_armclang.h │ │ │ ├── cmsis_compiler.h │ │ │ ├── cmsis_gcc.h │ │ │ ├── cmsis_iccarm.h │ │ │ ├── cmsis_version.h │ │ │ ├── core_armv8mbl.h │ │ │ ├── core_armv8mml.h │ │ │ ├── core_cm0.h │ │ │ ├── core_cm0plus.h │ │ │ ├── core_cm1.h │ │ │ ├── core_cm23.h │ │ │ ├── core_cm3.h │ │ │ ├── core_cm33.h │ │ │ ├── core_cm4.h │ │ │ ├── core_cm7.h │ │ │ ├── core_sc000.h │ │ │ ├── core_sc300.h │ │ │ ├── mpu_armv7.h │ │ │ ├── mpu_armv8.h │ │ │ └── tz_context.h │ └── STM32F1xx_HAL_Driver │ │ ├── Inc │ │ ├── Legacy │ │ │ └── stm32_hal_legacy.h │ │ ├── stm32f1xx_hal.h │ │ ├── stm32f1xx_hal_cortex.h │ │ ├── stm32f1xx_hal_def.h │ │ ├── stm32f1xx_hal_dma.h │ │ ├── stm32f1xx_hal_dma_ex.h │ │ ├── stm32f1xx_hal_exti.h │ │ ├── stm32f1xx_hal_flash.h │ │ ├── stm32f1xx_hal_flash_ex.h │ │ ├── stm32f1xx_hal_gpio.h │ │ ├── stm32f1xx_hal_gpio_ex.h │ │ ├── stm32f1xx_hal_pwr.h │ │ ├── stm32f1xx_hal_rcc.h │ │ ├── stm32f1xx_hal_rcc_ex.h │ │ ├── stm32f1xx_hal_spi.h │ │ ├── stm32f1xx_hal_tim.h │ │ └── stm32f1xx_hal_tim_ex.h │ │ └── Src │ │ ├── stm32f1xx_hal.c │ │ ├── stm32f1xx_hal_cortex.c │ │ ├── stm32f1xx_hal_dma.c │ │ ├── stm32f1xx_hal_exti.c │ │ ├── stm32f1xx_hal_flash.c │ │ ├── stm32f1xx_hal_flash_ex.c │ │ ├── stm32f1xx_hal_gpio.c │ │ ├── stm32f1xx_hal_gpio_ex.c │ │ ├── stm32f1xx_hal_pwr.c │ │ ├── stm32f1xx_hal_rcc.c │ │ ├── stm32f1xx_hal_rcc_ex.c │ │ ├── stm32f1xx_hal_spi.c │ │ ├── stm32f1xx_hal_tim.c │ │ └── stm32f1xx_hal_tim_ex.c ├── STM32F103C8TX_FLASH.ld ├── readme.txt └── schematic.pdf ├── BluePillDemo_SPI_2.4GHz_Radio_Tx ├── .cproject ├── .gitignore ├── .mxproject ├── .project ├── .settings │ └── language.settings.xml ├── BluePillDemo_SPI_2.4GHz_Radio_Tx Debug.launch ├── BluePillDemo_SPI_2.4GHz_Radio_Tx.ioc ├── Core │ ├── Inc │ │ ├── main.h │ │ ├── nrf24l01.h │ │ ├── stm32f1xx_hal_conf.h │ │ └── stm32f1xx_it.h │ ├── Src │ │ ├── main.c │ │ ├── nrf24l01.c │ │ ├── stm32f1xx_hal_msp.c │ │ ├── stm32f1xx_it.c │ │ ├── syscalls.c │ │ ├── sysmem.c │ │ └── system_stm32f1xx.c │ └── Startup │ │ └── startup_stm32f103c8tx.s ├── Drivers │ ├── CMSIS │ │ ├── Device │ │ │ └── ST │ │ │ │ └── STM32F1xx │ │ │ │ └── Include │ │ │ │ ├── stm32f103xb.h │ │ │ │ ├── stm32f1xx.h │ │ │ │ └── system_stm32f1xx.h │ │ └── Include │ │ │ ├── cmsis_armcc.h │ │ │ ├── cmsis_armclang.h │ │ │ ├── cmsis_compiler.h │ │ │ ├── cmsis_gcc.h │ │ │ ├── cmsis_iccarm.h │ │ │ ├── cmsis_version.h │ │ │ ├── core_armv8mbl.h │ │ │ ├── core_armv8mml.h │ │ │ ├── core_cm0.h │ │ │ ├── core_cm0plus.h │ │ │ ├── core_cm1.h │ │ │ ├── core_cm23.h │ │ │ ├── core_cm3.h │ │ │ ├── core_cm33.h │ │ │ ├── core_cm4.h │ │ │ ├── core_cm7.h │ │ │ ├── core_sc000.h │ │ │ ├── core_sc300.h │ │ │ ├── mpu_armv7.h │ │ │ ├── mpu_armv8.h │ │ │ └── tz_context.h │ └── STM32F1xx_HAL_Driver │ │ ├── Inc │ │ ├── Legacy │ │ │ └── stm32_hal_legacy.h │ │ ├── stm32f1xx_hal.h │ │ ├── stm32f1xx_hal_cortex.h │ │ ├── stm32f1xx_hal_def.h │ │ ├── stm32f1xx_hal_dma.h │ │ ├── stm32f1xx_hal_dma_ex.h │ │ ├── stm32f1xx_hal_exti.h │ │ ├── stm32f1xx_hal_flash.h │ │ ├── stm32f1xx_hal_flash_ex.h │ │ ├── stm32f1xx_hal_gpio.h │ │ ├── stm32f1xx_hal_gpio_ex.h │ │ ├── stm32f1xx_hal_pwr.h │ │ ├── stm32f1xx_hal_rcc.h │ │ ├── stm32f1xx_hal_rcc_ex.h │ │ ├── stm32f1xx_hal_spi.h │ │ ├── stm32f1xx_hal_tim.h │ │ └── stm32f1xx_hal_tim_ex.h │ │ └── Src │ │ ├── stm32f1xx_hal.c │ │ ├── stm32f1xx_hal_cortex.c │ │ ├── stm32f1xx_hal_dma.c │ │ ├── stm32f1xx_hal_exti.c │ │ ├── stm32f1xx_hal_flash.c │ │ ├── stm32f1xx_hal_flash_ex.c │ │ ├── stm32f1xx_hal_gpio.c │ │ ├── stm32f1xx_hal_gpio_ex.c │ │ ├── stm32f1xx_hal_pwr.c │ │ ├── stm32f1xx_hal_rcc.c │ │ ├── stm32f1xx_hal_rcc_ex.c │ │ ├── stm32f1xx_hal_spi.c │ │ ├── stm32f1xx_hal_tim.c │ │ └── stm32f1xx_hal_tim_ex.c ├── STM32F103C8TX_FLASH.ld └── readme.txt ├── BluePillDemo_SPI_EEPROM ├── .cproject ├── .gitignore ├── .mxproject ├── .project ├── .settings │ └── language.settings.xml ├── BluePillDemo_SPI_EEPROM Debug.launch ├── BluePillDemo_SPI_EEPROM.ioc ├── Core │ ├── Inc │ │ ├── eeprom.h │ │ ├── main.h │ │ ├── stm32f1xx_hal_conf.h │ │ └── stm32f1xx_it.h │ ├── Src │ │ ├── eeprom.c │ │ ├── main.c │ │ ├── stm32f1xx_hal_msp.c │ │ ├── stm32f1xx_it.c │ │ ├── syscalls.c │ │ ├── sysmem.c │ │ └── system_stm32f1xx.c │ └── Startup │ │ └── startup_stm32f103c8tx.s ├── Drivers │ ├── CMSIS │ │ ├── Device │ │ │ └── ST │ │ │ │ └── STM32F1xx │ │ │ │ └── Include │ │ │ │ ├── stm32f103xb.h │ │ │ │ ├── stm32f1xx.h │ │ │ │ └── system_stm32f1xx.h │ │ └── Include │ │ │ ├── cmsis_armcc.h │ │ │ ├── cmsis_armclang.h │ │ │ ├── cmsis_compiler.h │ │ │ ├── cmsis_gcc.h │ │ │ ├── cmsis_iccarm.h │ │ │ ├── cmsis_version.h │ │ │ ├── core_armv8mbl.h │ │ │ ├── core_armv8mml.h │ │ │ ├── core_cm0.h │ │ │ ├── core_cm0plus.h │ │ │ ├── core_cm1.h │ │ │ ├── core_cm23.h │ │ │ ├── core_cm3.h │ │ │ ├── core_cm33.h │ │ │ ├── core_cm4.h │ │ │ ├── core_cm7.h │ │ │ ├── core_sc000.h │ │ │ ├── core_sc300.h │ │ │ ├── mpu_armv7.h │ │ │ ├── mpu_armv8.h │ │ │ └── tz_context.h │ └── STM32F1xx_HAL_Driver │ │ ├── Inc │ │ ├── Legacy │ │ │ └── stm32_hal_legacy.h │ │ ├── stm32f1xx_hal.h │ │ ├── stm32f1xx_hal_cortex.h │ │ ├── stm32f1xx_hal_def.h │ │ ├── stm32f1xx_hal_dma.h │ │ ├── stm32f1xx_hal_dma_ex.h │ │ ├── stm32f1xx_hal_exti.h │ │ ├── stm32f1xx_hal_flash.h │ │ ├── stm32f1xx_hal_flash_ex.h │ │ ├── stm32f1xx_hal_gpio.h │ │ ├── stm32f1xx_hal_gpio_ex.h │ │ ├── stm32f1xx_hal_pwr.h │ │ ├── stm32f1xx_hal_rcc.h │ │ ├── stm32f1xx_hal_rcc_ex.h │ │ ├── stm32f1xx_hal_spi.h │ │ ├── stm32f1xx_hal_tim.h │ │ └── stm32f1xx_hal_tim_ex.h │ │ └── Src │ │ ├── stm32f1xx_hal.c │ │ ├── stm32f1xx_hal_cortex.c │ │ ├── stm32f1xx_hal_dma.c │ │ ├── stm32f1xx_hal_exti.c │ │ ├── stm32f1xx_hal_flash.c │ │ ├── stm32f1xx_hal_flash_ex.c │ │ ├── stm32f1xx_hal_gpio.c │ │ ├── stm32f1xx_hal_gpio_ex.c │ │ ├── stm32f1xx_hal_pwr.c │ │ ├── stm32f1xx_hal_rcc.c │ │ ├── stm32f1xx_hal_rcc_ex.c │ │ ├── stm32f1xx_hal_spi.c │ │ ├── stm32f1xx_hal_tim.c │ │ └── stm32f1xx_hal_tim_ex.c ├── STM32F103C8TX_FLASH.ld ├── readme.txt └── schematic.pdf ├── BluePillDemo_SPI_FatFS ├── .cproject ├── .gitignore ├── .mxproject ├── .project ├── .settings │ └── language.settings.xml ├── BluePillDemo_SPI_FatFS Debug.launch ├── BluePillDemo_SPI_FatFS.ioc ├── Core │ ├── Inc │ │ ├── main.h │ │ ├── stm32f1xx_hal_conf.h │ │ └── stm32f1xx_it.h │ ├── Src │ │ ├── main.c │ │ ├── stm32f1xx_hal_msp.c │ │ ├── stm32f1xx_it.c │ │ ├── syscalls.c │ │ ├── sysmem.c │ │ └── system_stm32f1xx.c │ └── Startup │ │ └── startup_stm32f103c8tx.s ├── Drivers │ ├── CMSIS │ │ ├── Device │ │ │ └── ST │ │ │ │ └── STM32F1xx │ │ │ │ └── Include │ │ │ │ ├── stm32f103xb.h │ │ │ │ ├── stm32f1xx.h │ │ │ │ └── system_stm32f1xx.h │ │ └── Include │ │ │ ├── cmsis_armcc.h │ │ │ ├── cmsis_armclang.h │ │ │ ├── cmsis_compiler.h │ │ │ ├── cmsis_gcc.h │ │ │ ├── cmsis_iccarm.h │ │ │ ├── cmsis_version.h │ │ │ ├── core_armv8mbl.h │ │ │ ├── core_armv8mml.h │ │ │ ├── core_cm0.h │ │ │ ├── core_cm0plus.h │ │ │ ├── core_cm1.h │ │ │ ├── core_cm23.h │ │ │ ├── core_cm3.h │ │ │ ├── core_cm33.h │ │ │ ├── core_cm4.h │ │ │ ├── core_cm7.h │ │ │ ├── core_sc000.h │ │ │ ├── core_sc300.h │ │ │ ├── mpu_armv7.h │ │ │ ├── mpu_armv8.h │ │ │ └── tz_context.h │ └── STM32F1xx_HAL_Driver │ │ ├── Inc │ │ ├── Legacy │ │ │ └── stm32_hal_legacy.h │ │ ├── stm32f1xx_hal.h │ │ ├── stm32f1xx_hal_cortex.h │ │ ├── stm32f1xx_hal_def.h │ │ ├── stm32f1xx_hal_dma.h │ │ ├── stm32f1xx_hal_dma_ex.h │ │ ├── stm32f1xx_hal_exti.h │ │ ├── stm32f1xx_hal_flash.h │ │ ├── stm32f1xx_hal_flash_ex.h │ │ ├── stm32f1xx_hal_gpio.h │ │ ├── stm32f1xx_hal_gpio_ex.h │ │ ├── stm32f1xx_hal_pwr.h │ │ ├── stm32f1xx_hal_rcc.h │ │ ├── stm32f1xx_hal_rcc_ex.h │ │ ├── stm32f1xx_hal_spi.h │ │ ├── stm32f1xx_hal_tim.h │ │ └── stm32f1xx_hal_tim_ex.h │ │ └── Src │ │ ├── stm32f1xx_hal.c │ │ ├── stm32f1xx_hal_cortex.c │ │ ├── stm32f1xx_hal_dma.c │ │ ├── stm32f1xx_hal_exti.c │ │ ├── stm32f1xx_hal_flash.c │ │ ├── stm32f1xx_hal_flash_ex.c │ │ ├── stm32f1xx_hal_gpio.c │ │ ├── stm32f1xx_hal_gpio_ex.c │ │ ├── stm32f1xx_hal_pwr.c │ │ ├── stm32f1xx_hal_rcc.c │ │ ├── stm32f1xx_hal_rcc_ex.c │ │ ├── stm32f1xx_hal_spi.c │ │ ├── stm32f1xx_hal_tim.c │ │ └── stm32f1xx_hal_tim_ex.c ├── FATFS │ ├── App │ │ ├── fatfs.c │ │ └── fatfs.h │ └── Target │ │ ├── ffconf.h │ │ ├── user_diskio.c │ │ └── user_diskio.h ├── Middlewares │ └── Third_Party │ │ └── FatFs │ │ └── src │ │ ├── diskio.c │ │ ├── diskio.h │ │ ├── ff.c │ │ ├── ff.h │ │ ├── ff_gen_drv.c │ │ ├── ff_gen_drv.h │ │ ├── integer.h │ │ └── option │ │ └── syscall.c ├── STM32F103C8TX_FLASH.ld ├── readme.txt └── schematic.pdf ├── BluePillDemo_SPI_IT ├── .cproject ├── .gitignore ├── .mxproject ├── .project ├── .settings │ └── language.settings.xml ├── BluePillDemo_SPI_IT Debug.launch ├── BluePillDemo_SPI_IT.ioc ├── Core │ ├── Inc │ │ ├── main.h │ │ ├── stm32f1xx_hal_conf.h │ │ └── stm32f1xx_it.h │ ├── Src │ │ ├── main.c │ │ ├── stm32f1xx_hal_msp.c │ │ ├── stm32f1xx_it.c │ │ ├── syscalls.c │ │ ├── sysmem.c │ │ └── system_stm32f1xx.c │ └── Startup │ │ └── startup_stm32f103c8tx.s ├── Drivers │ ├── CMSIS │ │ ├── Device │ │ │ └── ST │ │ │ │ └── STM32F1xx │ │ │ │ └── Include │ │ │ │ ├── stm32f103xb.h │ │ │ │ ├── stm32f1xx.h │ │ │ │ └── system_stm32f1xx.h │ │ └── Include │ │ │ ├── cmsis_armcc.h │ │ │ ├── cmsis_armclang.h │ │ │ ├── cmsis_compiler.h │ │ │ ├── cmsis_gcc.h │ │ │ ├── cmsis_iccarm.h │ │ │ ├── cmsis_version.h │ │ │ ├── core_armv8mbl.h │ │ │ ├── core_armv8mml.h │ │ │ ├── core_cm0.h │ │ │ ├── core_cm0plus.h │ │ │ ├── core_cm1.h │ │ │ ├── core_cm23.h │ │ │ ├── core_cm3.h │ │ │ ├── core_cm33.h │ │ │ ├── core_cm4.h │ │ │ ├── core_cm7.h │ │ │ ├── core_sc000.h │ │ │ ├── core_sc300.h │ │ │ ├── mpu_armv7.h │ │ │ ├── mpu_armv8.h │ │ │ └── tz_context.h │ └── STM32F1xx_HAL_Driver │ │ ├── Inc │ │ ├── Legacy │ │ │ └── stm32_hal_legacy.h │ │ ├── stm32f1xx_hal.h │ │ ├── stm32f1xx_hal_cortex.h │ │ ├── stm32f1xx_hal_def.h │ │ ├── stm32f1xx_hal_dma.h │ │ ├── stm32f1xx_hal_dma_ex.h │ │ ├── stm32f1xx_hal_exti.h │ │ ├── stm32f1xx_hal_flash.h │ │ ├── stm32f1xx_hal_flash_ex.h │ │ ├── stm32f1xx_hal_gpio.h │ │ ├── stm32f1xx_hal_gpio_ex.h │ │ ├── stm32f1xx_hal_pwr.h │ │ ├── stm32f1xx_hal_rcc.h │ │ ├── stm32f1xx_hal_rcc_ex.h │ │ ├── stm32f1xx_hal_spi.h │ │ ├── stm32f1xx_hal_tim.h │ │ └── stm32f1xx_hal_tim_ex.h │ │ └── Src │ │ ├── stm32f1xx_hal.c │ │ ├── stm32f1xx_hal_cortex.c │ │ ├── stm32f1xx_hal_dma.c │ │ ├── stm32f1xx_hal_exti.c │ │ ├── stm32f1xx_hal_flash.c │ │ ├── stm32f1xx_hal_flash_ex.c │ │ ├── stm32f1xx_hal_gpio.c │ │ ├── stm32f1xx_hal_gpio_ex.c │ │ ├── stm32f1xx_hal_pwr.c │ │ ├── stm32f1xx_hal_rcc.c │ │ ├── stm32f1xx_hal_rcc_ex.c │ │ ├── stm32f1xx_hal_spi.c │ │ ├── stm32f1xx_hal_tim.c │ │ └── stm32f1xx_hal_tim_ex.c ├── STM32F103C8TX_FLASH.ld ├── readme.txt └── schematic.pdf ├── BluePillDemo_SPI_Poll ├── .cproject ├── .gitignore ├── .mxproject ├── .project ├── .settings │ └── language.settings.xml ├── BluePillDemo_SPI_Poll Debug.launch ├── BluePillDemo_SPI_Poll.ioc ├── Core │ ├── Inc │ │ ├── main.h │ │ ├── stm32f1xx_hal_conf.h │ │ └── stm32f1xx_it.h │ ├── Src │ │ ├── main.c │ │ ├── stm32f1xx_hal_msp.c │ │ ├── stm32f1xx_it.c │ │ ├── syscalls.c │ │ ├── sysmem.c │ │ └── system_stm32f1xx.c │ └── Startup │ │ └── startup_stm32f103c8tx.s ├── Drivers │ ├── CMSIS │ │ ├── Device │ │ │ └── ST │ │ │ │ └── STM32F1xx │ │ │ │ └── Include │ │ │ │ ├── stm32f103xb.h │ │ │ │ ├── stm32f1xx.h │ │ │ │ └── system_stm32f1xx.h │ │ └── Include │ │ │ ├── cmsis_armcc.h │ │ │ ├── cmsis_armclang.h │ │ │ ├── cmsis_compiler.h │ │ │ ├── cmsis_gcc.h │ │ │ ├── cmsis_iccarm.h │ │ │ ├── cmsis_version.h │ │ │ ├── core_armv8mbl.h │ │ │ ├── core_armv8mml.h │ │ │ ├── core_cm0.h │ │ │ ├── core_cm0plus.h │ │ │ ├── core_cm1.h │ │ │ ├── core_cm23.h │ │ │ ├── core_cm3.h │ │ │ ├── core_cm33.h │ │ │ ├── core_cm4.h │ │ │ ├── core_cm7.h │ │ │ ├── core_sc000.h │ │ │ ├── core_sc300.h │ │ │ ├── mpu_armv7.h │ │ │ ├── mpu_armv8.h │ │ │ └── tz_context.h │ └── STM32F1xx_HAL_Driver │ │ ├── Inc │ │ ├── Legacy │ │ │ └── stm32_hal_legacy.h │ │ ├── stm32f1xx_hal.h │ │ ├── stm32f1xx_hal_cortex.h │ │ ├── stm32f1xx_hal_def.h │ │ ├── stm32f1xx_hal_dma.h │ │ ├── stm32f1xx_hal_dma_ex.h │ │ ├── stm32f1xx_hal_exti.h │ │ ├── stm32f1xx_hal_flash.h │ │ ├── stm32f1xx_hal_flash_ex.h │ │ ├── stm32f1xx_hal_gpio.h │ │ ├── stm32f1xx_hal_gpio_ex.h │ │ ├── stm32f1xx_hal_pwr.h │ │ ├── stm32f1xx_hal_rcc.h │ │ ├── stm32f1xx_hal_rcc_ex.h │ │ ├── stm32f1xx_hal_spi.h │ │ ├── stm32f1xx_hal_tim.h │ │ └── stm32f1xx_hal_tim_ex.h │ │ └── Src │ │ ├── stm32f1xx_hal.c │ │ ├── stm32f1xx_hal_cortex.c │ │ ├── stm32f1xx_hal_dma.c │ │ ├── stm32f1xx_hal_exti.c │ │ ├── stm32f1xx_hal_flash.c │ │ ├── stm32f1xx_hal_flash_ex.c │ │ ├── stm32f1xx_hal_gpio.c │ │ ├── stm32f1xx_hal_gpio_ex.c │ │ ├── stm32f1xx_hal_pwr.c │ │ ├── stm32f1xx_hal_rcc.c │ │ ├── stm32f1xx_hal_rcc_ex.c │ │ ├── stm32f1xx_hal_spi.c │ │ ├── stm32f1xx_hal_tim.c │ │ └── stm32f1xx_hal_tim_ex.c ├── STM32F103C8TX_FLASH.ld ├── readme.txt └── schematic.pdf ├── BluePillDemo_Seatalk ├── .cproject ├── .gitignore ├── .mxproject ├── .project ├── .settings │ └── language.settings.xml ├── BluePillDemo_Seatalk Debug.launch ├── BluePillDemo_Seatalk.ioc ├── Core │ ├── Inc │ │ ├── main.h │ │ ├── seatalk.h │ │ ├── stm32f1xx_hal_conf.h │ │ └── stm32f1xx_it.h │ ├── Src │ │ ├── main.c │ │ ├── seatalk.c │ │ ├── stm32f1xx_hal_msp.c │ │ ├── stm32f1xx_it.c │ │ ├── syscalls.c │ │ ├── sysmem.c │ │ └── system_stm32f1xx.c │ └── Startup │ │ └── startup_stm32f103c8tx.s ├── Drivers │ ├── CMSIS │ │ ├── Device │ │ │ └── ST │ │ │ │ └── STM32F1xx │ │ │ │ └── Include │ │ │ │ ├── stm32f103xb.h │ │ │ │ ├── stm32f1xx.h │ │ │ │ └── system_stm32f1xx.h │ │ └── Include │ │ │ ├── cmsis_armcc.h │ │ │ ├── cmsis_armclang.h │ │ │ ├── cmsis_compiler.h │ │ │ ├── cmsis_gcc.h │ │ │ ├── cmsis_iccarm.h │ │ │ ├── cmsis_version.h │ │ │ ├── core_armv8mbl.h │ │ │ ├── core_armv8mml.h │ │ │ ├── core_cm0.h │ │ │ ├── core_cm0plus.h │ │ │ ├── core_cm1.h │ │ │ ├── core_cm23.h │ │ │ ├── core_cm3.h │ │ │ ├── core_cm33.h │ │ │ ├── core_cm4.h │ │ │ ├── core_cm7.h │ │ │ ├── core_sc000.h │ │ │ ├── core_sc300.h │ │ │ ├── mpu_armv7.h │ │ │ ├── mpu_armv8.h │ │ │ └── tz_context.h │ └── STM32F1xx_HAL_Driver │ │ ├── Inc │ │ ├── Legacy │ │ │ └── stm32_hal_legacy.h │ │ ├── stm32f1xx_hal.h │ │ ├── stm32f1xx_hal_cortex.h │ │ ├── stm32f1xx_hal_def.h │ │ ├── stm32f1xx_hal_dma.h │ │ ├── stm32f1xx_hal_dma_ex.h │ │ ├── stm32f1xx_hal_exti.h │ │ ├── stm32f1xx_hal_flash.h │ │ ├── stm32f1xx_hal_flash_ex.h │ │ ├── stm32f1xx_hal_gpio.h │ │ ├── stm32f1xx_hal_gpio_ex.h │ │ ├── stm32f1xx_hal_pwr.h │ │ ├── stm32f1xx_hal_rcc.h │ │ ├── stm32f1xx_hal_rcc_ex.h │ │ ├── stm32f1xx_hal_tim.h │ │ ├── stm32f1xx_hal_tim_ex.h │ │ └── stm32f1xx_hal_uart.h │ │ └── Src │ │ ├── stm32f1xx_hal.c │ │ ├── stm32f1xx_hal_cortex.c │ │ ├── stm32f1xx_hal_dma.c │ │ ├── stm32f1xx_hal_exti.c │ │ ├── stm32f1xx_hal_flash.c │ │ ├── stm32f1xx_hal_flash_ex.c │ │ ├── stm32f1xx_hal_gpio.c │ │ ├── stm32f1xx_hal_gpio_ex.c │ │ ├── stm32f1xx_hal_pwr.c │ │ ├── stm32f1xx_hal_rcc.c │ │ ├── stm32f1xx_hal_rcc_ex.c │ │ ├── stm32f1xx_hal_tim.c │ │ ├── stm32f1xx_hal_tim_ex.c │ │ └── stm32f1xx_hal_uart.c ├── STM32F103C8TX_FLASH.ld ├── readme.txt └── schematic.pdf ├── BluePillDemo_Seatalk_MQTT_Website ├── .cproject ├── .gitignore ├── .mxproject ├── .project ├── .settings │ └── language.settings.xml ├── BluePillDemo_Seatalk_MQTT_Website Debug.launch ├── BluePillDemo_Seatalk_MQTT_Website.ioc ├── Core │ ├── Inc │ │ ├── FreeRTOSConfig.h │ │ ├── buffered_serial.h │ │ ├── main.h │ │ ├── modem.h │ │ ├── mqtt.h │ │ ├── printf.h │ │ ├── seatalk.h │ │ ├── stm32f1xx_hal_conf.h │ │ └── stm32f1xx_it.h │ ├── Src │ │ ├── buffered_serial.c │ │ ├── freertos.c │ │ ├── main.c │ │ ├── modem.c │ │ ├── mqtt.c │ │ ├── printf.c │ │ ├── seatalk.c │ │ ├── stm32f1xx_hal_msp.c │ │ ├── stm32f1xx_hal_timebase_tim.c │ │ ├── stm32f1xx_it.c │ │ └── system_stm32f1xx.c │ └── Startup │ │ └── startup_stm32f103c8tx.s ├── Drivers │ ├── CMSIS │ │ ├── Device │ │ │ └── ST │ │ │ │ └── STM32F1xx │ │ │ │ └── Include │ │ │ │ ├── stm32f103xb.h │ │ │ │ ├── stm32f1xx.h │ │ │ │ └── system_stm32f1xx.h │ │ └── Include │ │ │ ├── cmsis_armcc.h │ │ │ ├── cmsis_armclang.h │ │ │ ├── cmsis_compiler.h │ │ │ ├── cmsis_gcc.h │ │ │ ├── cmsis_iccarm.h │ │ │ ├── cmsis_version.h │ │ │ ├── core_armv8mbl.h │ │ │ ├── core_armv8mml.h │ │ │ ├── core_cm0.h │ │ │ ├── core_cm0plus.h │ │ │ ├── core_cm1.h │ │ │ ├── core_cm23.h │ │ │ ├── core_cm3.h │ │ │ ├── core_cm33.h │ │ │ ├── core_cm4.h │ │ │ ├── core_cm7.h │ │ │ ├── core_sc000.h │ │ │ ├── core_sc300.h │ │ │ ├── mpu_armv7.h │ │ │ ├── mpu_armv8.h │ │ │ └── tz_context.h │ └── STM32F1xx_HAL_Driver │ │ ├── Inc │ │ ├── Legacy │ │ │ └── stm32_hal_legacy.h │ │ ├── stm32f1xx_hal.h │ │ ├── stm32f1xx_hal_cortex.h │ │ ├── stm32f1xx_hal_def.h │ │ ├── stm32f1xx_hal_dma.h │ │ ├── stm32f1xx_hal_dma_ex.h │ │ ├── stm32f1xx_hal_exti.h │ │ ├── stm32f1xx_hal_flash.h │ │ ├── stm32f1xx_hal_flash_ex.h │ │ ├── stm32f1xx_hal_gpio.h │ │ ├── stm32f1xx_hal_gpio_ex.h │ │ ├── stm32f1xx_hal_iwdg.h │ │ ├── stm32f1xx_hal_pwr.h │ │ ├── stm32f1xx_hal_rcc.h │ │ ├── stm32f1xx_hal_rcc_ex.h │ │ ├── stm32f1xx_hal_tim.h │ │ ├── stm32f1xx_hal_tim_ex.h │ │ └── stm32f1xx_hal_uart.h │ │ └── Src │ │ ├── stm32f1xx_hal.c │ │ ├── stm32f1xx_hal_cortex.c │ │ ├── stm32f1xx_hal_dma.c │ │ ├── stm32f1xx_hal_exti.c │ │ ├── stm32f1xx_hal_flash.c │ │ ├── stm32f1xx_hal_flash_ex.c │ │ ├── stm32f1xx_hal_gpio.c │ │ ├── stm32f1xx_hal_gpio_ex.c │ │ ├── stm32f1xx_hal_iwdg.c │ │ ├── stm32f1xx_hal_pwr.c │ │ ├── stm32f1xx_hal_rcc.c │ │ ├── stm32f1xx_hal_rcc_ex.c │ │ ├── stm32f1xx_hal_tim.c │ │ ├── stm32f1xx_hal_tim_ex.c │ │ └── stm32f1xx_hal_uart.c ├── Mapiator.js ├── Middlewares │ └── Third_Party │ │ └── FreeRTOS │ │ └── Source │ │ ├── CMSIS_RTOS_V2 │ │ ├── cmsis_os.h │ │ ├── cmsis_os2.c │ │ └── cmsis_os2.h │ │ ├── croutine.c │ │ ├── event_groups.c │ │ ├── include │ │ ├── FreeRTOS.h │ │ ├── StackMacros.h │ │ ├── croutine.h │ │ ├── deprecated_definitions.h │ │ ├── event_groups.h │ │ ├── list.h │ │ ├── message_buffer.h │ │ ├── mpu_prototypes.h │ │ ├── mpu_wrappers.h │ │ ├── portable.h │ │ ├── projdefs.h │ │ ├── queue.h │ │ ├── semphr.h │ │ ├── stack_macros.h │ │ ├── stream_buffer.h │ │ ├── task.h │ │ └── timers.h │ │ ├── list.c │ │ ├── portable │ │ ├── GCC │ │ │ └── ARM_CM3 │ │ │ │ ├── port.c │ │ │ │ └── portmacro.h │ │ └── MemMang │ │ │ └── heap_4.c │ │ ├── queue.c │ │ ├── stream_buffer.c │ │ ├── tasks.c │ │ └── timers.c ├── STM32F103C8TX_FLASH.ld ├── images │ ├── zoomIn_blur.png │ ├── zoomIn_focus.png │ ├── zoomOut_blur.png │ └── zoomOut_focus.png ├── index.html ├── readme.txt ├── reativeAngleBg.bmp ├── schematic.pdf └── segment-display.js ├── BluePillDemo_Standby_RTC ├── .cproject ├── .gitignore ├── .mxproject ├── .project ├── .settings │ └── language.settings.xml ├── BluePillDemo_Standby_RTC Debug.launch ├── BluePillDemo_Standby_RTC.ioc ├── Core │ ├── Inc │ │ ├── main.h │ │ ├── stm32f1xx_hal_conf.h │ │ └── stm32f1xx_it.h │ ├── Src │ │ ├── main.c │ │ ├── stm32f1xx_hal_msp.c │ │ ├── stm32f1xx_it.c │ │ ├── syscalls.c │ │ ├── sysmem.c │ │ └── system_stm32f1xx.c │ └── Startup │ │ └── startup_stm32f103c8tx.s ├── Drivers │ ├── CMSIS │ │ ├── Device │ │ │ └── ST │ │ │ │ └── STM32F1xx │ │ │ │ └── Include │ │ │ │ ├── stm32f103xb.h │ │ │ │ ├── stm32f1xx.h │ │ │ │ └── system_stm32f1xx.h │ │ └── Include │ │ │ ├── cmsis_armcc.h │ │ │ ├── cmsis_armclang.h │ │ │ ├── cmsis_compiler.h │ │ │ ├── cmsis_gcc.h │ │ │ ├── cmsis_iccarm.h │ │ │ ├── cmsis_version.h │ │ │ ├── core_armv8mbl.h │ │ │ ├── core_armv8mml.h │ │ │ ├── core_cm0.h │ │ │ ├── core_cm0plus.h │ │ │ ├── core_cm1.h │ │ │ ├── core_cm23.h │ │ │ ├── core_cm3.h │ │ │ ├── core_cm33.h │ │ │ ├── core_cm4.h │ │ │ ├── core_cm7.h │ │ │ ├── core_sc000.h │ │ │ ├── core_sc300.h │ │ │ ├── mpu_armv7.h │ │ │ ├── mpu_armv8.h │ │ │ └── tz_context.h │ └── STM32F1xx_HAL_Driver │ │ ├── Inc │ │ ├── Legacy │ │ │ └── stm32_hal_legacy.h │ │ ├── stm32f1xx_hal.h │ │ ├── stm32f1xx_hal_cortex.h │ │ ├── stm32f1xx_hal_def.h │ │ ├── stm32f1xx_hal_dma.h │ │ ├── stm32f1xx_hal_dma_ex.h │ │ ├── stm32f1xx_hal_exti.h │ │ ├── stm32f1xx_hal_flash.h │ │ ├── stm32f1xx_hal_flash_ex.h │ │ ├── stm32f1xx_hal_gpio.h │ │ ├── stm32f1xx_hal_gpio_ex.h │ │ ├── stm32f1xx_hal_pwr.h │ │ ├── stm32f1xx_hal_rcc.h │ │ ├── stm32f1xx_hal_rcc_ex.h │ │ ├── stm32f1xx_hal_rtc.h │ │ ├── stm32f1xx_hal_rtc_ex.h │ │ ├── stm32f1xx_hal_tim.h │ │ └── stm32f1xx_hal_tim_ex.h │ │ └── Src │ │ ├── stm32f1xx_hal.c │ │ ├── stm32f1xx_hal_cortex.c │ │ ├── stm32f1xx_hal_dma.c │ │ ├── stm32f1xx_hal_exti.c │ │ ├── stm32f1xx_hal_flash.c │ │ ├── stm32f1xx_hal_flash_ex.c │ │ ├── stm32f1xx_hal_gpio.c │ │ ├── stm32f1xx_hal_gpio_ex.c │ │ ├── stm32f1xx_hal_pwr.c │ │ ├── stm32f1xx_hal_rcc.c │ │ ├── stm32f1xx_hal_rcc_ex.c │ │ ├── stm32f1xx_hal_rtc.c │ │ ├── stm32f1xx_hal_rtc_ex.c │ │ ├── stm32f1xx_hal_tim.c │ │ └── stm32f1xx_hal_tim_ex.c ├── STM32F103C8TX_FLASH.ld ├── readme.txt └── schematic.pdf ├── BluePillDemo_Standby_WKUP ├── .cproject ├── .gitignore ├── .mxproject ├── .project ├── .settings │ └── language.settings.xml ├── BluePillDemo_Standby_WKUP Debug.launch ├── BluePillDemo_Standby_WKUP.ioc ├── Core │ ├── Inc │ │ ├── main.h │ │ ├── stm32f1xx_hal_conf.h │ │ └── stm32f1xx_it.h │ ├── Src │ │ ├── main.c │ │ ├── stm32f1xx_hal_msp.c │ │ ├── stm32f1xx_it.c │ │ ├── syscalls.c │ │ ├── sysmem.c │ │ └── system_stm32f1xx.c │ └── Startup │ │ └── startup_stm32f103c8tx.s ├── Drivers │ ├── CMSIS │ │ ├── Device │ │ │ └── ST │ │ │ │ └── STM32F1xx │ │ │ │ └── Include │ │ │ │ ├── stm32f103xb.h │ │ │ │ ├── stm32f1xx.h │ │ │ │ └── system_stm32f1xx.h │ │ └── Include │ │ │ ├── cmsis_armcc.h │ │ │ ├── cmsis_armclang.h │ │ │ ├── cmsis_compiler.h │ │ │ ├── cmsis_gcc.h │ │ │ ├── cmsis_iccarm.h │ │ │ ├── cmsis_version.h │ │ │ ├── core_armv8mbl.h │ │ │ ├── core_armv8mml.h │ │ │ ├── core_cm0.h │ │ │ ├── core_cm0plus.h │ │ │ ├── core_cm1.h │ │ │ ├── core_cm23.h │ │ │ ├── core_cm3.h │ │ │ ├── core_cm33.h │ │ │ ├── core_cm4.h │ │ │ ├── core_cm7.h │ │ │ ├── core_sc000.h │ │ │ ├── core_sc300.h │ │ │ ├── mpu_armv7.h │ │ │ ├── mpu_armv8.h │ │ │ └── tz_context.h │ └── STM32F1xx_HAL_Driver │ │ ├── Inc │ │ ├── Legacy │ │ │ └── stm32_hal_legacy.h │ │ ├── stm32f1xx_hal.h │ │ ├── stm32f1xx_hal_cortex.h │ │ ├── stm32f1xx_hal_def.h │ │ ├── stm32f1xx_hal_dma.h │ │ ├── stm32f1xx_hal_dma_ex.h │ │ ├── stm32f1xx_hal_exti.h │ │ ├── stm32f1xx_hal_flash.h │ │ ├── stm32f1xx_hal_flash_ex.h │ │ ├── stm32f1xx_hal_gpio.h │ │ ├── stm32f1xx_hal_gpio_ex.h │ │ ├── stm32f1xx_hal_pwr.h │ │ ├── stm32f1xx_hal_rcc.h │ │ ├── stm32f1xx_hal_rcc_ex.h │ │ ├── stm32f1xx_hal_tim.h │ │ └── stm32f1xx_hal_tim_ex.h │ │ └── Src │ │ ├── stm32f1xx_hal.c │ │ ├── stm32f1xx_hal_cortex.c │ │ ├── stm32f1xx_hal_dma.c │ │ ├── stm32f1xx_hal_exti.c │ │ ├── stm32f1xx_hal_flash.c │ │ ├── stm32f1xx_hal_flash_ex.c │ │ ├── stm32f1xx_hal_gpio.c │ │ ├── stm32f1xx_hal_gpio_ex.c │ │ ├── stm32f1xx_hal_pwr.c │ │ ├── stm32f1xx_hal_rcc.c │ │ ├── stm32f1xx_hal_rcc_ex.c │ │ ├── stm32f1xx_hal_tim.c │ │ └── stm32f1xx_hal_tim_ex.c ├── STM32F103C8TX_FLASH.ld ├── readme.txt └── schematic.pdf ├── BluePillDemo_USART_DMA_Buffered ├── .cproject ├── .gitignore ├── .mxproject ├── .project ├── .settings │ └── language.settings.xml ├── BluePillDemo_USART_DMA_Buffered Debug.launch ├── BluePillDemo_USART_DMA_Buffered.ioc ├── Core │ ├── Inc │ │ ├── buffered_serial.h │ │ ├── main.h │ │ ├── stm32f1xx_hal_conf.h │ │ └── stm32f1xx_it.h │ ├── Src │ │ ├── buffered_serial.c │ │ ├── main.c │ │ ├── stm32f1xx_hal_msp.c │ │ ├── stm32f1xx_it.c │ │ ├── syscalls.c │ │ ├── sysmem.c │ │ └── system_stm32f1xx.c │ └── Startup │ │ └── startup_stm32f103c8tx.s ├── Drivers │ ├── CMSIS │ │ ├── Device │ │ │ └── ST │ │ │ │ └── STM32F1xx │ │ │ │ └── Include │ │ │ │ ├── stm32f103xb.h │ │ │ │ ├── stm32f1xx.h │ │ │ │ └── system_stm32f1xx.h │ │ └── Include │ │ │ ├── cmsis_armcc.h │ │ │ ├── cmsis_armclang.h │ │ │ ├── cmsis_compiler.h │ │ │ ├── cmsis_gcc.h │ │ │ ├── cmsis_iccarm.h │ │ │ ├── cmsis_version.h │ │ │ ├── core_armv8mbl.h │ │ │ ├── core_armv8mml.h │ │ │ ├── core_cm0.h │ │ │ ├── core_cm0plus.h │ │ │ ├── core_cm1.h │ │ │ ├── core_cm23.h │ │ │ ├── core_cm3.h │ │ │ ├── core_cm33.h │ │ │ ├── core_cm4.h │ │ │ ├── core_cm7.h │ │ │ ├── core_sc000.h │ │ │ ├── core_sc300.h │ │ │ ├── mpu_armv7.h │ │ │ ├── mpu_armv8.h │ │ │ └── tz_context.h │ └── STM32F1xx_HAL_Driver │ │ ├── Inc │ │ ├── Legacy │ │ │ └── stm32_hal_legacy.h │ │ ├── stm32f1xx_hal.h │ │ ├── stm32f1xx_hal_cortex.h │ │ ├── stm32f1xx_hal_def.h │ │ ├── stm32f1xx_hal_dma.h │ │ ├── stm32f1xx_hal_dma_ex.h │ │ ├── stm32f1xx_hal_exti.h │ │ ├── stm32f1xx_hal_flash.h │ │ ├── stm32f1xx_hal_flash_ex.h │ │ ├── stm32f1xx_hal_gpio.h │ │ ├── stm32f1xx_hal_gpio_ex.h │ │ ├── stm32f1xx_hal_pwr.h │ │ ├── stm32f1xx_hal_rcc.h │ │ ├── stm32f1xx_hal_rcc_ex.h │ │ ├── stm32f1xx_hal_tim.h │ │ ├── stm32f1xx_hal_tim_ex.h │ │ └── stm32f1xx_hal_uart.h │ │ └── Src │ │ ├── stm32f1xx_hal.c │ │ ├── stm32f1xx_hal_cortex.c │ │ ├── stm32f1xx_hal_dma.c │ │ ├── stm32f1xx_hal_exti.c │ │ ├── stm32f1xx_hal_flash.c │ │ ├── stm32f1xx_hal_flash_ex.c │ │ ├── stm32f1xx_hal_gpio.c │ │ ├── stm32f1xx_hal_gpio_ex.c │ │ ├── stm32f1xx_hal_pwr.c │ │ ├── stm32f1xx_hal_rcc.c │ │ ├── stm32f1xx_hal_rcc_ex.c │ │ ├── stm32f1xx_hal_tim.c │ │ ├── stm32f1xx_hal_tim_ex.c │ │ └── stm32f1xx_hal_uart.c ├── STM32F103C8TX_FLASH.ld ├── ftdi cable.png ├── readme.txt └── schematic.pdf ├── BluePillDemo_USART_IT ├── .cproject ├── .gitignore ├── .mxproject ├── .project ├── .settings │ └── language.settings.xml ├── BluePillDemo_USART_IT Debug.launch ├── BluePillDemo_USART_IT.ioc ├── Core │ ├── Inc │ │ ├── main.h │ │ ├── stm32f1xx_hal_conf.h │ │ └── stm32f1xx_it.h │ ├── Src │ │ ├── main.c │ │ ├── stm32f1xx_hal_msp.c │ │ ├── stm32f1xx_it.c │ │ ├── syscalls.c │ │ ├── sysmem.c │ │ └── system_stm32f1xx.c │ └── Startup │ │ └── startup_stm32f103c8tx.s ├── Drivers │ ├── CMSIS │ │ ├── Device │ │ │ └── ST │ │ │ │ └── STM32F1xx │ │ │ │ └── Include │ │ │ │ ├── stm32f103xb.h │ │ │ │ ├── stm32f1xx.h │ │ │ │ └── system_stm32f1xx.h │ │ └── Include │ │ │ ├── cmsis_armcc.h │ │ │ ├── cmsis_armclang.h │ │ │ ├── cmsis_compiler.h │ │ │ ├── cmsis_gcc.h │ │ │ ├── cmsis_iccarm.h │ │ │ ├── cmsis_version.h │ │ │ ├── core_armv8mbl.h │ │ │ ├── core_armv8mml.h │ │ │ ├── core_cm0.h │ │ │ ├── core_cm0plus.h │ │ │ ├── core_cm1.h │ │ │ ├── core_cm23.h │ │ │ ├── core_cm3.h │ │ │ ├── core_cm33.h │ │ │ ├── core_cm4.h │ │ │ ├── core_cm7.h │ │ │ ├── core_sc000.h │ │ │ ├── core_sc300.h │ │ │ ├── mpu_armv7.h │ │ │ ├── mpu_armv8.h │ │ │ └── tz_context.h │ └── STM32F1xx_HAL_Driver │ │ ├── Inc │ │ ├── Legacy │ │ │ └── stm32_hal_legacy.h │ │ ├── stm32f1xx_hal.h │ │ ├── stm32f1xx_hal_cortex.h │ │ ├── stm32f1xx_hal_def.h │ │ ├── stm32f1xx_hal_dma.h │ │ ├── stm32f1xx_hal_dma_ex.h │ │ ├── stm32f1xx_hal_exti.h │ │ ├── stm32f1xx_hal_flash.h │ │ ├── stm32f1xx_hal_flash_ex.h │ │ ├── stm32f1xx_hal_gpio.h │ │ ├── stm32f1xx_hal_gpio_ex.h │ │ ├── stm32f1xx_hal_pwr.h │ │ ├── stm32f1xx_hal_rcc.h │ │ ├── stm32f1xx_hal_rcc_ex.h │ │ ├── stm32f1xx_hal_tim.h │ │ ├── stm32f1xx_hal_tim_ex.h │ │ └── stm32f1xx_hal_uart.h │ │ └── Src │ │ ├── stm32f1xx_hal.c │ │ ├── stm32f1xx_hal_cortex.c │ │ ├── stm32f1xx_hal_dma.c │ │ ├── stm32f1xx_hal_exti.c │ │ ├── stm32f1xx_hal_flash.c │ │ ├── stm32f1xx_hal_flash_ex.c │ │ ├── stm32f1xx_hal_gpio.c │ │ ├── stm32f1xx_hal_gpio_ex.c │ │ ├── stm32f1xx_hal_pwr.c │ │ ├── stm32f1xx_hal_rcc.c │ │ ├── stm32f1xx_hal_rcc_ex.c │ │ ├── stm32f1xx_hal_tim.c │ │ ├── stm32f1xx_hal_tim_ex.c │ │ └── stm32f1xx_hal_uart.c ├── STM32F103C8TX_FLASH.ld ├── ftdi cable.png ├── readme.txt └── schematic.pdf ├── BluePillDemo_USART_Poll ├── .cproject ├── .gitignore ├── .mxproject ├── .project ├── .settings │ └── language.settings.xml ├── BluePillDemo_USART_Poll Debug.launch ├── BluePillDemo_USART_Poll.ioc ├── Core │ ├── Inc │ │ ├── main.h │ │ ├── stm32f1xx_hal_conf.h │ │ └── stm32f1xx_it.h │ ├── Src │ │ ├── main.c │ │ ├── stm32f1xx_hal_msp.c │ │ ├── stm32f1xx_it.c │ │ ├── syscalls.c │ │ ├── sysmem.c │ │ └── system_stm32f1xx.c │ └── Startup │ │ └── startup_stm32f103c8tx.s ├── Drivers │ ├── CMSIS │ │ ├── Device │ │ │ └── ST │ │ │ │ └── STM32F1xx │ │ │ │ └── Include │ │ │ │ ├── stm32f103xb.h │ │ │ │ ├── stm32f1xx.h │ │ │ │ └── system_stm32f1xx.h │ │ └── Include │ │ │ ├── cmsis_armcc.h │ │ │ ├── cmsis_armclang.h │ │ │ ├── cmsis_compiler.h │ │ │ ├── cmsis_gcc.h │ │ │ ├── cmsis_iccarm.h │ │ │ ├── cmsis_version.h │ │ │ ├── core_armv8mbl.h │ │ │ ├── core_armv8mml.h │ │ │ ├── core_cm0.h │ │ │ ├── core_cm0plus.h │ │ │ ├── core_cm1.h │ │ │ ├── core_cm23.h │ │ │ ├── core_cm3.h │ │ │ ├── core_cm33.h │ │ │ ├── core_cm4.h │ │ │ ├── core_cm7.h │ │ │ ├── core_sc000.h │ │ │ ├── core_sc300.h │ │ │ ├── mpu_armv7.h │ │ │ ├── mpu_armv8.h │ │ │ └── tz_context.h │ └── STM32F1xx_HAL_Driver │ │ ├── Inc │ │ ├── Legacy │ │ │ └── stm32_hal_legacy.h │ │ ├── stm32f1xx_hal.h │ │ ├── stm32f1xx_hal_cortex.h │ │ ├── stm32f1xx_hal_def.h │ │ ├── stm32f1xx_hal_dma.h │ │ ├── stm32f1xx_hal_dma_ex.h │ │ ├── stm32f1xx_hal_exti.h │ │ ├── stm32f1xx_hal_flash.h │ │ ├── stm32f1xx_hal_flash_ex.h │ │ ├── stm32f1xx_hal_gpio.h │ │ ├── stm32f1xx_hal_gpio_ex.h │ │ ├── stm32f1xx_hal_pwr.h │ │ ├── stm32f1xx_hal_rcc.h │ │ ├── stm32f1xx_hal_rcc_ex.h │ │ ├── stm32f1xx_hal_tim.h │ │ ├── stm32f1xx_hal_tim_ex.h │ │ └── stm32f1xx_hal_uart.h │ │ └── Src │ │ ├── stm32f1xx_hal.c │ │ ├── stm32f1xx_hal_cortex.c │ │ ├── stm32f1xx_hal_dma.c │ │ ├── stm32f1xx_hal_exti.c │ │ ├── stm32f1xx_hal_flash.c │ │ ├── stm32f1xx_hal_flash_ex.c │ │ ├── stm32f1xx_hal_gpio.c │ │ ├── stm32f1xx_hal_gpio_ex.c │ │ ├── stm32f1xx_hal_pwr.c │ │ ├── stm32f1xx_hal_rcc.c │ │ ├── stm32f1xx_hal_rcc_ex.c │ │ ├── stm32f1xx_hal_tim.c │ │ ├── stm32f1xx_hal_tim_ex.c │ │ └── stm32f1xx_hal_uart.c ├── STM32F103C8TX_FLASH.ld ├── ftdi cable.png ├── readme.txt └── schematic.pdf ├── BluePillDemo_USB_CDC ├── .cproject ├── .gitignore ├── .mxproject ├── .project ├── .settings │ └── language.settings.xml ├── BluePillDemo_USB_CDC Debug.launch ├── BluePillDemo_USB_CDC.ioc ├── Core │ ├── Inc │ │ ├── main.h │ │ ├── stm32f1xx_hal_conf.h │ │ └── stm32f1xx_it.h │ ├── Src │ │ ├── main.c │ │ ├── stm32f1xx_hal_msp.c │ │ ├── stm32f1xx_it.c │ │ ├── syscalls.c │ │ ├── sysmem.c │ │ └── system_stm32f1xx.c │ └── Startup │ │ └── startup_stm32f103c8tx.s ├── Drivers │ ├── CMSIS │ │ ├── Device │ │ │ └── ST │ │ │ │ └── STM32F1xx │ │ │ │ └── Include │ │ │ │ ├── stm32f103xb.h │ │ │ │ ├── stm32f1xx.h │ │ │ │ └── system_stm32f1xx.h │ │ └── Include │ │ │ ├── cmsis_armcc.h │ │ │ ├── cmsis_armclang.h │ │ │ ├── cmsis_compiler.h │ │ │ ├── cmsis_gcc.h │ │ │ ├── cmsis_iccarm.h │ │ │ ├── cmsis_version.h │ │ │ ├── core_armv8mbl.h │ │ │ ├── core_armv8mml.h │ │ │ ├── core_cm0.h │ │ │ ├── core_cm0plus.h │ │ │ ├── core_cm1.h │ │ │ ├── core_cm23.h │ │ │ ├── core_cm3.h │ │ │ ├── core_cm33.h │ │ │ ├── core_cm4.h │ │ │ ├── core_cm7.h │ │ │ ├── core_sc000.h │ │ │ ├── core_sc300.h │ │ │ ├── mpu_armv7.h │ │ │ ├── mpu_armv8.h │ │ │ └── tz_context.h │ └── STM32F1xx_HAL_Driver │ │ ├── Inc │ │ ├── Legacy │ │ │ └── stm32_hal_legacy.h │ │ ├── stm32f1xx_hal.h │ │ ├── stm32f1xx_hal_cortex.h │ │ ├── stm32f1xx_hal_def.h │ │ ├── stm32f1xx_hal_dma.h │ │ ├── stm32f1xx_hal_dma_ex.h │ │ ├── stm32f1xx_hal_exti.h │ │ ├── stm32f1xx_hal_flash.h │ │ ├── stm32f1xx_hal_flash_ex.h │ │ ├── stm32f1xx_hal_gpio.h │ │ ├── stm32f1xx_hal_gpio_ex.h │ │ ├── stm32f1xx_hal_pcd.h │ │ ├── stm32f1xx_hal_pcd_ex.h │ │ ├── stm32f1xx_hal_pwr.h │ │ ├── stm32f1xx_hal_rcc.h │ │ ├── stm32f1xx_hal_rcc_ex.h │ │ ├── stm32f1xx_hal_tim.h │ │ ├── stm32f1xx_hal_tim_ex.h │ │ └── stm32f1xx_ll_usb.h │ │ └── Src │ │ ├── stm32f1xx_hal.c │ │ ├── stm32f1xx_hal_cortex.c │ │ ├── stm32f1xx_hal_dma.c │ │ ├── stm32f1xx_hal_exti.c │ │ ├── stm32f1xx_hal_flash.c │ │ ├── stm32f1xx_hal_flash_ex.c │ │ ├── stm32f1xx_hal_gpio.c │ │ ├── stm32f1xx_hal_gpio_ex.c │ │ ├── stm32f1xx_hal_pcd.c │ │ ├── stm32f1xx_hal_pcd_ex.c │ │ ├── stm32f1xx_hal_pwr.c │ │ ├── stm32f1xx_hal_rcc.c │ │ ├── stm32f1xx_hal_rcc_ex.c │ │ ├── stm32f1xx_hal_tim.c │ │ ├── stm32f1xx_hal_tim_ex.c │ │ └── stm32f1xx_ll_usb.c ├── Middlewares │ └── ST │ │ └── STM32_USB_Device_Library │ │ ├── Class │ │ └── CDC │ │ │ ├── Inc │ │ │ └── usbd_cdc.h │ │ │ └── Src │ │ │ └── usbd_cdc.c │ │ └── Core │ │ ├── Inc │ │ ├── usbd_core.h │ │ ├── usbd_ctlreq.h │ │ ├── usbd_def.h │ │ └── usbd_ioreq.h │ │ └── Src │ │ ├── usbd_core.c │ │ ├── usbd_ctlreq.c │ │ └── usbd_ioreq.c ├── STM32F103C8TX_FLASH.ld ├── USB_DEVICE │ ├── App │ │ ├── usb_device.c │ │ ├── usb_device.h │ │ ├── usbd_cdc_if.c │ │ ├── usbd_cdc_if.h │ │ ├── usbd_desc.c │ │ └── usbd_desc.h │ └── Target │ │ ├── usbd_conf.c │ │ └── usbd_conf.h └── readme.txt ├── BluePillDemo_USB_HID ├── .cproject ├── .gitignore ├── .mxproject ├── .project ├── .settings │ └── language.settings.xml ├── BluePillDemo_USB_HID Debug.launch ├── BluePillDemo_USB_HID.ioc ├── Core │ ├── Inc │ │ ├── main.h │ │ ├── stm32f1xx_hal_conf.h │ │ └── stm32f1xx_it.h │ ├── Src │ │ ├── main.c │ │ ├── stm32f1xx_hal_msp.c │ │ ├── stm32f1xx_it.c │ │ ├── syscalls.c │ │ ├── sysmem.c │ │ └── system_stm32f1xx.c │ └── Startup │ │ └── startup_stm32f103c8tx.s ├── Drivers │ ├── CMSIS │ │ ├── Device │ │ │ └── ST │ │ │ │ └── STM32F1xx │ │ │ │ └── Include │ │ │ │ ├── stm32f103xb.h │ │ │ │ ├── stm32f1xx.h │ │ │ │ └── system_stm32f1xx.h │ │ └── Include │ │ │ ├── cmsis_armcc.h │ │ │ ├── cmsis_armclang.h │ │ │ ├── cmsis_compiler.h │ │ │ ├── cmsis_gcc.h │ │ │ ├── cmsis_iccarm.h │ │ │ ├── cmsis_version.h │ │ │ ├── core_armv8mbl.h │ │ │ ├── core_armv8mml.h │ │ │ ├── core_cm0.h │ │ │ ├── core_cm0plus.h │ │ │ ├── core_cm1.h │ │ │ ├── core_cm23.h │ │ │ ├── core_cm3.h │ │ │ ├── core_cm33.h │ │ │ ├── core_cm4.h │ │ │ ├── core_cm7.h │ │ │ ├── core_sc000.h │ │ │ ├── core_sc300.h │ │ │ ├── mpu_armv7.h │ │ │ ├── mpu_armv8.h │ │ │ └── tz_context.h │ └── STM32F1xx_HAL_Driver │ │ ├── Inc │ │ ├── Legacy │ │ │ └── stm32_hal_legacy.h │ │ ├── stm32f1xx_hal.h │ │ ├── stm32f1xx_hal_cortex.h │ │ ├── stm32f1xx_hal_def.h │ │ ├── stm32f1xx_hal_dma.h │ │ ├── stm32f1xx_hal_dma_ex.h │ │ ├── stm32f1xx_hal_exti.h │ │ ├── stm32f1xx_hal_flash.h │ │ ├── stm32f1xx_hal_flash_ex.h │ │ ├── stm32f1xx_hal_gpio.h │ │ ├── stm32f1xx_hal_gpio_ex.h │ │ ├── stm32f1xx_hal_pcd.h │ │ ├── stm32f1xx_hal_pcd_ex.h │ │ ├── stm32f1xx_hal_pwr.h │ │ ├── stm32f1xx_hal_rcc.h │ │ ├── stm32f1xx_hal_rcc_ex.h │ │ ├── stm32f1xx_hal_tim.h │ │ ├── stm32f1xx_hal_tim_ex.h │ │ └── stm32f1xx_ll_usb.h │ │ └── Src │ │ ├── stm32f1xx_hal.c │ │ ├── stm32f1xx_hal_cortex.c │ │ ├── stm32f1xx_hal_dma.c │ │ ├── stm32f1xx_hal_exti.c │ │ ├── stm32f1xx_hal_flash.c │ │ ├── stm32f1xx_hal_flash_ex.c │ │ ├── stm32f1xx_hal_gpio.c │ │ ├── stm32f1xx_hal_gpio_ex.c │ │ ├── stm32f1xx_hal_pcd.c │ │ ├── stm32f1xx_hal_pcd_ex.c │ │ ├── stm32f1xx_hal_pwr.c │ │ ├── stm32f1xx_hal_rcc.c │ │ ├── stm32f1xx_hal_rcc_ex.c │ │ ├── stm32f1xx_hal_tim.c │ │ ├── stm32f1xx_hal_tim_ex.c │ │ └── stm32f1xx_ll_usb.c ├── Middlewares │ └── ST │ │ └── STM32_USB_Device_Library │ │ ├── Class │ │ └── HID │ │ │ ├── Inc │ │ │ └── usbd_hid.h │ │ │ └── Src │ │ │ └── usbd_hid.c │ │ └── Core │ │ ├── Inc │ │ ├── usbd_core.h │ │ ├── usbd_ctlreq.h │ │ ├── usbd_def.h │ │ └── usbd_ioreq.h │ │ └── Src │ │ ├── usbd_core.c │ │ ├── usbd_ctlreq.c │ │ └── usbd_ioreq.c ├── STM32F103C8TX_FLASH.ld ├── USB_DEVICE │ ├── App │ │ ├── usb_device.c │ │ ├── usb_device.h │ │ ├── usbd_desc.c │ │ └── usbd_desc.h │ └── Target │ │ ├── usbd_conf.c │ │ └── usbd_conf.h └── readme.txt ├── BluePillDemo_WWDG ├── .cproject ├── .gitignore ├── .mxproject ├── .project ├── .settings │ └── language.settings.xml ├── BluePillDemo_WWDG Debug.launch ├── BluePillDemo_WWDG.ioc ├── Core │ ├── Inc │ │ ├── main.h │ │ ├── stm32f1xx_hal_conf.h │ │ └── stm32f1xx_it.h │ ├── Src │ │ ├── main.c │ │ ├── stm32f1xx_hal_msp.c │ │ ├── stm32f1xx_it.c │ │ ├── syscalls.c │ │ ├── sysmem.c │ │ └── system_stm32f1xx.c │ └── Startup │ │ └── startup_stm32f103c8tx.s ├── Drivers │ ├── CMSIS │ │ ├── Device │ │ │ └── ST │ │ │ │ └── STM32F1xx │ │ │ │ └── Include │ │ │ │ ├── stm32f103xb.h │ │ │ │ ├── stm32f1xx.h │ │ │ │ └── system_stm32f1xx.h │ │ └── Include │ │ │ ├── cmsis_armcc.h │ │ │ ├── cmsis_armclang.h │ │ │ ├── cmsis_compiler.h │ │ │ ├── cmsis_gcc.h │ │ │ ├── cmsis_iccarm.h │ │ │ ├── cmsis_version.h │ │ │ ├── core_armv8mbl.h │ │ │ ├── core_armv8mml.h │ │ │ ├── core_cm0.h │ │ │ ├── core_cm0plus.h │ │ │ ├── core_cm1.h │ │ │ ├── core_cm23.h │ │ │ ├── core_cm3.h │ │ │ ├── core_cm33.h │ │ │ ├── core_cm4.h │ │ │ ├── core_cm7.h │ │ │ ├── core_sc000.h │ │ │ ├── core_sc300.h │ │ │ ├── mpu_armv7.h │ │ │ ├── mpu_armv8.h │ │ │ └── tz_context.h │ └── STM32F1xx_HAL_Driver │ │ ├── Inc │ │ ├── Legacy │ │ │ └── stm32_hal_legacy.h │ │ ├── stm32f1xx_hal.h │ │ ├── stm32f1xx_hal_cortex.h │ │ ├── stm32f1xx_hal_def.h │ │ ├── stm32f1xx_hal_dma.h │ │ ├── stm32f1xx_hal_dma_ex.h │ │ ├── stm32f1xx_hal_exti.h │ │ ├── stm32f1xx_hal_flash.h │ │ ├── stm32f1xx_hal_flash_ex.h │ │ ├── stm32f1xx_hal_gpio.h │ │ ├── stm32f1xx_hal_gpio_ex.h │ │ ├── stm32f1xx_hal_pwr.h │ │ ├── stm32f1xx_hal_rcc.h │ │ ├── stm32f1xx_hal_rcc_ex.h │ │ ├── stm32f1xx_hal_tim.h │ │ ├── stm32f1xx_hal_tim_ex.h │ │ └── stm32f1xx_hal_wwdg.h │ │ └── Src │ │ ├── stm32f1xx_hal.c │ │ ├── stm32f1xx_hal_cortex.c │ │ ├── stm32f1xx_hal_dma.c │ │ ├── stm32f1xx_hal_exti.c │ │ ├── stm32f1xx_hal_flash.c │ │ ├── stm32f1xx_hal_flash_ex.c │ │ ├── stm32f1xx_hal_gpio.c │ │ ├── stm32f1xx_hal_gpio_ex.c │ │ ├── stm32f1xx_hal_pwr.c │ │ ├── stm32f1xx_hal_rcc.c │ │ ├── stm32f1xx_hal_rcc_ex.c │ │ ├── stm32f1xx_hal_tim.c │ │ ├── stm32f1xx_hal_tim_ex.c │ │ └── stm32f1xx_hal_wwdg.c ├── STM32F103C8TX_FLASH.ld ├── readme.txt └── schematic.pdf ├── LICENSE └── README.md /BluePillDemo_ADC_Poll/.cproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_ADC_Poll/.cproject -------------------------------------------------------------------------------- /BluePillDemo_ADC_Poll/.gitignore: -------------------------------------------------------------------------------- 1 | /Debug/ 2 | -------------------------------------------------------------------------------- /BluePillDemo_ADC_Poll/.mxproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_ADC_Poll/.mxproject -------------------------------------------------------------------------------- /BluePillDemo_ADC_Poll/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_ADC_Poll/.project -------------------------------------------------------------------------------- /BluePillDemo_ADC_Poll/BluePillDemo_ADC_Poll.ioc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_ADC_Poll/BluePillDemo_ADC_Poll.ioc -------------------------------------------------------------------------------- /BluePillDemo_ADC_Poll/Core/Inc/main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_ADC_Poll/Core/Inc/main.h -------------------------------------------------------------------------------- /BluePillDemo_ADC_Poll/Core/Inc/stm32f1xx_it.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_ADC_Poll/Core/Inc/stm32f1xx_it.h -------------------------------------------------------------------------------- /BluePillDemo_ADC_Poll/Core/Src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_ADC_Poll/Core/Src/main.c -------------------------------------------------------------------------------- /BluePillDemo_ADC_Poll/Core/Src/stm32f1xx_hal_msp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_ADC_Poll/Core/Src/stm32f1xx_hal_msp.c -------------------------------------------------------------------------------- /BluePillDemo_ADC_Poll/Core/Src/stm32f1xx_it.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_ADC_Poll/Core/Src/stm32f1xx_it.c -------------------------------------------------------------------------------- /BluePillDemo_ADC_Poll/Core/Src/syscalls.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_ADC_Poll/Core/Src/syscalls.c -------------------------------------------------------------------------------- /BluePillDemo_ADC_Poll/Core/Src/sysmem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_ADC_Poll/Core/Src/sysmem.c -------------------------------------------------------------------------------- /BluePillDemo_ADC_Poll/Core/Src/system_stm32f1xx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_ADC_Poll/Core/Src/system_stm32f1xx.c -------------------------------------------------------------------------------- /BluePillDemo_ADC_Poll/STM32F103C8TX_FLASH.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_ADC_Poll/STM32F103C8TX_FLASH.ld -------------------------------------------------------------------------------- /BluePillDemo_ADC_Poll/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_ADC_Poll/readme.txt -------------------------------------------------------------------------------- /BluePillDemo_ADC_Poll/schematic.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_ADC_Poll/schematic.pdf -------------------------------------------------------------------------------- /BluePillDemo_AES/.cproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_AES/.cproject -------------------------------------------------------------------------------- /BluePillDemo_AES/.gitignore: -------------------------------------------------------------------------------- 1 | /Debug/ 2 | -------------------------------------------------------------------------------- /BluePillDemo_AES/.mxproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_AES/.mxproject -------------------------------------------------------------------------------- /BluePillDemo_AES/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_AES/.project -------------------------------------------------------------------------------- /BluePillDemo_AES/.settings/language.settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_AES/.settings/language.settings.xml -------------------------------------------------------------------------------- /BluePillDemo_AES/BluePillDemo_AES Debug.launch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_AES/BluePillDemo_AES Debug.launch -------------------------------------------------------------------------------- /BluePillDemo_AES/BluePillDemo_AES.ioc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_AES/BluePillDemo_AES.ioc -------------------------------------------------------------------------------- /BluePillDemo_AES/Core/Inc/aes256.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_AES/Core/Inc/aes256.h -------------------------------------------------------------------------------- /BluePillDemo_AES/Core/Inc/main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_AES/Core/Inc/main.h -------------------------------------------------------------------------------- /BluePillDemo_AES/Core/Inc/stm32f1xx_hal_conf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_AES/Core/Inc/stm32f1xx_hal_conf.h -------------------------------------------------------------------------------- /BluePillDemo_AES/Core/Inc/stm32f1xx_it.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_AES/Core/Inc/stm32f1xx_it.h -------------------------------------------------------------------------------- /BluePillDemo_AES/Core/Src/aes256.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_AES/Core/Src/aes256.c -------------------------------------------------------------------------------- /BluePillDemo_AES/Core/Src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_AES/Core/Src/main.c -------------------------------------------------------------------------------- /BluePillDemo_AES/Core/Src/stm32f1xx_hal_msp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_AES/Core/Src/stm32f1xx_hal_msp.c -------------------------------------------------------------------------------- /BluePillDemo_AES/Core/Src/stm32f1xx_it.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_AES/Core/Src/stm32f1xx_it.c -------------------------------------------------------------------------------- /BluePillDemo_AES/Core/Src/syscalls.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_AES/Core/Src/syscalls.c -------------------------------------------------------------------------------- /BluePillDemo_AES/Core/Src/sysmem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_AES/Core/Src/sysmem.c -------------------------------------------------------------------------------- /BluePillDemo_AES/Core/Src/system_stm32f1xx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_AES/Core/Src/system_stm32f1xx.c -------------------------------------------------------------------------------- /BluePillDemo_AES/Drivers/CMSIS/Include/cmsis_gcc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_AES/Drivers/CMSIS/Include/cmsis_gcc.h -------------------------------------------------------------------------------- /BluePillDemo_AES/Drivers/CMSIS/Include/core_cm0.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_AES/Drivers/CMSIS/Include/core_cm0.h -------------------------------------------------------------------------------- /BluePillDemo_AES/Drivers/CMSIS/Include/core_cm1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_AES/Drivers/CMSIS/Include/core_cm1.h -------------------------------------------------------------------------------- /BluePillDemo_AES/Drivers/CMSIS/Include/core_cm23.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_AES/Drivers/CMSIS/Include/core_cm23.h -------------------------------------------------------------------------------- /BluePillDemo_AES/Drivers/CMSIS/Include/core_cm3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_AES/Drivers/CMSIS/Include/core_cm3.h -------------------------------------------------------------------------------- /BluePillDemo_AES/Drivers/CMSIS/Include/core_cm33.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_AES/Drivers/CMSIS/Include/core_cm33.h -------------------------------------------------------------------------------- /BluePillDemo_AES/Drivers/CMSIS/Include/core_cm4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_AES/Drivers/CMSIS/Include/core_cm4.h -------------------------------------------------------------------------------- /BluePillDemo_AES/Drivers/CMSIS/Include/core_cm7.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_AES/Drivers/CMSIS/Include/core_cm7.h -------------------------------------------------------------------------------- /BluePillDemo_AES/Drivers/CMSIS/Include/mpu_armv7.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_AES/Drivers/CMSIS/Include/mpu_armv7.h -------------------------------------------------------------------------------- /BluePillDemo_AES/Drivers/CMSIS/Include/mpu_armv8.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_AES/Drivers/CMSIS/Include/mpu_armv8.h -------------------------------------------------------------------------------- /BluePillDemo_AES/STM32F103C8TX_FLASH.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_AES/STM32F103C8TX_FLASH.ld -------------------------------------------------------------------------------- /BluePillDemo_AES/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_AES/readme.txt -------------------------------------------------------------------------------- /BluePillDemo_CAN_Loopback/.cproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_CAN_Loopback/.cproject -------------------------------------------------------------------------------- /BluePillDemo_CAN_Loopback/.gitignore: -------------------------------------------------------------------------------- 1 | /Debug/ 2 | -------------------------------------------------------------------------------- /BluePillDemo_CAN_Loopback/.mxproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_CAN_Loopback/.mxproject -------------------------------------------------------------------------------- /BluePillDemo_CAN_Loopback/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_CAN_Loopback/.project -------------------------------------------------------------------------------- /BluePillDemo_CAN_Loopback/Core/Inc/main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_CAN_Loopback/Core/Inc/main.h -------------------------------------------------------------------------------- /BluePillDemo_CAN_Loopback/Core/Inc/stm32f1xx_it.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_CAN_Loopback/Core/Inc/stm32f1xx_it.h -------------------------------------------------------------------------------- /BluePillDemo_CAN_Loopback/Core/Src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_CAN_Loopback/Core/Src/main.c -------------------------------------------------------------------------------- /BluePillDemo_CAN_Loopback/Core/Src/stm32f1xx_it.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_CAN_Loopback/Core/Src/stm32f1xx_it.c -------------------------------------------------------------------------------- /BluePillDemo_CAN_Loopback/Core/Src/syscalls.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_CAN_Loopback/Core/Src/syscalls.c -------------------------------------------------------------------------------- /BluePillDemo_CAN_Loopback/Core/Src/sysmem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_CAN_Loopback/Core/Src/sysmem.c -------------------------------------------------------------------------------- /BluePillDemo_CAN_Loopback/STM32F103C8TX_FLASH.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_CAN_Loopback/STM32F103C8TX_FLASH.ld -------------------------------------------------------------------------------- /BluePillDemo_CAN_Loopback/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_CAN_Loopback/readme.txt -------------------------------------------------------------------------------- /BluePillDemo_CAN_Rx/.cproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_CAN_Rx/.cproject -------------------------------------------------------------------------------- /BluePillDemo_CAN_Rx/.gitignore: -------------------------------------------------------------------------------- 1 | /Debug/ 2 | -------------------------------------------------------------------------------- /BluePillDemo_CAN_Rx/.mxproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_CAN_Rx/.mxproject -------------------------------------------------------------------------------- /BluePillDemo_CAN_Rx/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_CAN_Rx/.project -------------------------------------------------------------------------------- /BluePillDemo_CAN_Rx/BluePillDemo_CAN_Rx.ioc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_CAN_Rx/BluePillDemo_CAN_Rx.ioc -------------------------------------------------------------------------------- /BluePillDemo_CAN_Rx/Core/Inc/main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_CAN_Rx/Core/Inc/main.h -------------------------------------------------------------------------------- /BluePillDemo_CAN_Rx/Core/Inc/stm32f1xx_hal_conf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_CAN_Rx/Core/Inc/stm32f1xx_hal_conf.h -------------------------------------------------------------------------------- /BluePillDemo_CAN_Rx/Core/Inc/stm32f1xx_it.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_CAN_Rx/Core/Inc/stm32f1xx_it.h -------------------------------------------------------------------------------- /BluePillDemo_CAN_Rx/Core/Src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_CAN_Rx/Core/Src/main.c -------------------------------------------------------------------------------- /BluePillDemo_CAN_Rx/Core/Src/stm32f1xx_hal_msp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_CAN_Rx/Core/Src/stm32f1xx_hal_msp.c -------------------------------------------------------------------------------- /BluePillDemo_CAN_Rx/Core/Src/stm32f1xx_it.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_CAN_Rx/Core/Src/stm32f1xx_it.c -------------------------------------------------------------------------------- /BluePillDemo_CAN_Rx/Core/Src/syscalls.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_CAN_Rx/Core/Src/syscalls.c -------------------------------------------------------------------------------- /BluePillDemo_CAN_Rx/Core/Src/sysmem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_CAN_Rx/Core/Src/sysmem.c -------------------------------------------------------------------------------- /BluePillDemo_CAN_Rx/Core/Src/system_stm32f1xx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_CAN_Rx/Core/Src/system_stm32f1xx.c -------------------------------------------------------------------------------- /BluePillDemo_CAN_Rx/STM32F103C8TX_FLASH.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_CAN_Rx/STM32F103C8TX_FLASH.ld -------------------------------------------------------------------------------- /BluePillDemo_CAN_Rx/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_CAN_Rx/readme.txt -------------------------------------------------------------------------------- /BluePillDemo_CAN_Rx/schematic.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_CAN_Rx/schematic.pdf -------------------------------------------------------------------------------- /BluePillDemo_CAN_Tx/.cproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_CAN_Tx/.cproject -------------------------------------------------------------------------------- /BluePillDemo_CAN_Tx/.gitignore: -------------------------------------------------------------------------------- 1 | /Debug/ 2 | -------------------------------------------------------------------------------- /BluePillDemo_CAN_Tx/.mxproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_CAN_Tx/.mxproject -------------------------------------------------------------------------------- /BluePillDemo_CAN_Tx/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_CAN_Tx/.project -------------------------------------------------------------------------------- /BluePillDemo_CAN_Tx/BluePillDemo_CAN_Tx.ioc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_CAN_Tx/BluePillDemo_CAN_Tx.ioc -------------------------------------------------------------------------------- /BluePillDemo_CAN_Tx/Core/Inc/main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_CAN_Tx/Core/Inc/main.h -------------------------------------------------------------------------------- /BluePillDemo_CAN_Tx/Core/Inc/stm32f1xx_hal_conf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_CAN_Tx/Core/Inc/stm32f1xx_hal_conf.h -------------------------------------------------------------------------------- /BluePillDemo_CAN_Tx/Core/Inc/stm32f1xx_it.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_CAN_Tx/Core/Inc/stm32f1xx_it.h -------------------------------------------------------------------------------- /BluePillDemo_CAN_Tx/Core/Src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_CAN_Tx/Core/Src/main.c -------------------------------------------------------------------------------- /BluePillDemo_CAN_Tx/Core/Src/stm32f1xx_hal_msp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_CAN_Tx/Core/Src/stm32f1xx_hal_msp.c -------------------------------------------------------------------------------- /BluePillDemo_CAN_Tx/Core/Src/stm32f1xx_it.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_CAN_Tx/Core/Src/stm32f1xx_it.c -------------------------------------------------------------------------------- /BluePillDemo_CAN_Tx/Core/Src/syscalls.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_CAN_Tx/Core/Src/syscalls.c -------------------------------------------------------------------------------- /BluePillDemo_CAN_Tx/Core/Src/sysmem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_CAN_Tx/Core/Src/sysmem.c -------------------------------------------------------------------------------- /BluePillDemo_CAN_Tx/Core/Src/system_stm32f1xx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_CAN_Tx/Core/Src/system_stm32f1xx.c -------------------------------------------------------------------------------- /BluePillDemo_CAN_Tx/STM32F103C8TX_FLASH.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_CAN_Tx/STM32F103C8TX_FLASH.ld -------------------------------------------------------------------------------- /BluePillDemo_CAN_Tx/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_CAN_Tx/readme.txt -------------------------------------------------------------------------------- /BluePillDemo_CRC/.cproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_CRC/.cproject -------------------------------------------------------------------------------- /BluePillDemo_CRC/.gitignore: -------------------------------------------------------------------------------- 1 | /Debug/ 2 | -------------------------------------------------------------------------------- /BluePillDemo_CRC/.mxproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_CRC/.mxproject -------------------------------------------------------------------------------- /BluePillDemo_CRC/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_CRC/.project -------------------------------------------------------------------------------- /BluePillDemo_CRC/.settings/language.settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_CRC/.settings/language.settings.xml -------------------------------------------------------------------------------- /BluePillDemo_CRC/BluePillDemo_CRC Debug.launch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_CRC/BluePillDemo_CRC Debug.launch -------------------------------------------------------------------------------- /BluePillDemo_CRC/BluePillDemo_CRC.ioc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_CRC/BluePillDemo_CRC.ioc -------------------------------------------------------------------------------- /BluePillDemo_CRC/Core/Inc/main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_CRC/Core/Inc/main.h -------------------------------------------------------------------------------- /BluePillDemo_CRC/Core/Inc/stm32f1xx_hal_conf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_CRC/Core/Inc/stm32f1xx_hal_conf.h -------------------------------------------------------------------------------- /BluePillDemo_CRC/Core/Inc/stm32f1xx_it.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_CRC/Core/Inc/stm32f1xx_it.h -------------------------------------------------------------------------------- /BluePillDemo_CRC/Core/Src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_CRC/Core/Src/main.c -------------------------------------------------------------------------------- /BluePillDemo_CRC/Core/Src/stm32f1xx_hal_msp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_CRC/Core/Src/stm32f1xx_hal_msp.c -------------------------------------------------------------------------------- /BluePillDemo_CRC/Core/Src/stm32f1xx_it.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_CRC/Core/Src/stm32f1xx_it.c -------------------------------------------------------------------------------- /BluePillDemo_CRC/Core/Src/syscalls.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_CRC/Core/Src/syscalls.c -------------------------------------------------------------------------------- /BluePillDemo_CRC/Core/Src/sysmem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_CRC/Core/Src/sysmem.c -------------------------------------------------------------------------------- /BluePillDemo_CRC/Core/Src/system_stm32f1xx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_CRC/Core/Src/system_stm32f1xx.c -------------------------------------------------------------------------------- /BluePillDemo_CRC/Drivers/CMSIS/Include/cmsis_gcc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_CRC/Drivers/CMSIS/Include/cmsis_gcc.h -------------------------------------------------------------------------------- /BluePillDemo_CRC/Drivers/CMSIS/Include/core_cm0.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_CRC/Drivers/CMSIS/Include/core_cm0.h -------------------------------------------------------------------------------- /BluePillDemo_CRC/Drivers/CMSIS/Include/core_cm1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_CRC/Drivers/CMSIS/Include/core_cm1.h -------------------------------------------------------------------------------- /BluePillDemo_CRC/Drivers/CMSIS/Include/core_cm23.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_CRC/Drivers/CMSIS/Include/core_cm23.h -------------------------------------------------------------------------------- /BluePillDemo_CRC/Drivers/CMSIS/Include/core_cm3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_CRC/Drivers/CMSIS/Include/core_cm3.h -------------------------------------------------------------------------------- /BluePillDemo_CRC/Drivers/CMSIS/Include/core_cm33.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_CRC/Drivers/CMSIS/Include/core_cm33.h -------------------------------------------------------------------------------- /BluePillDemo_CRC/Drivers/CMSIS/Include/core_cm4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_CRC/Drivers/CMSIS/Include/core_cm4.h -------------------------------------------------------------------------------- /BluePillDemo_CRC/Drivers/CMSIS/Include/core_cm7.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_CRC/Drivers/CMSIS/Include/core_cm7.h -------------------------------------------------------------------------------- /BluePillDemo_CRC/Drivers/CMSIS/Include/mpu_armv7.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_CRC/Drivers/CMSIS/Include/mpu_armv7.h -------------------------------------------------------------------------------- /BluePillDemo_CRC/Drivers/CMSIS/Include/mpu_armv8.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_CRC/Drivers/CMSIS/Include/mpu_armv8.h -------------------------------------------------------------------------------- /BluePillDemo_CRC/STM32F103C8TX_FLASH.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_CRC/STM32F103C8TX_FLASH.ld -------------------------------------------------------------------------------- /BluePillDemo_CRC/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_CRC/readme.txt -------------------------------------------------------------------------------- /BluePillDemo_DMA_Mem2Mem/.cproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_DMA_Mem2Mem/.cproject -------------------------------------------------------------------------------- /BluePillDemo_DMA_Mem2Mem/.gitignore: -------------------------------------------------------------------------------- 1 | /Debug/ 2 | -------------------------------------------------------------------------------- /BluePillDemo_DMA_Mem2Mem/.mxproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_DMA_Mem2Mem/.mxproject -------------------------------------------------------------------------------- /BluePillDemo_DMA_Mem2Mem/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_DMA_Mem2Mem/.project -------------------------------------------------------------------------------- /BluePillDemo_DMA_Mem2Mem/Core/Inc/main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_DMA_Mem2Mem/Core/Inc/main.h -------------------------------------------------------------------------------- /BluePillDemo_DMA_Mem2Mem/Core/Inc/stm32f1xx_it.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_DMA_Mem2Mem/Core/Inc/stm32f1xx_it.h -------------------------------------------------------------------------------- /BluePillDemo_DMA_Mem2Mem/Core/Src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_DMA_Mem2Mem/Core/Src/main.c -------------------------------------------------------------------------------- /BluePillDemo_DMA_Mem2Mem/Core/Src/stm32f1xx_it.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_DMA_Mem2Mem/Core/Src/stm32f1xx_it.c -------------------------------------------------------------------------------- /BluePillDemo_DMA_Mem2Mem/Core/Src/syscalls.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_DMA_Mem2Mem/Core/Src/syscalls.c -------------------------------------------------------------------------------- /BluePillDemo_DMA_Mem2Mem/Core/Src/sysmem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_DMA_Mem2Mem/Core/Src/sysmem.c -------------------------------------------------------------------------------- /BluePillDemo_DMA_Mem2Mem/STM32F103C8TX_FLASH.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_DMA_Mem2Mem/STM32F103C8TX_FLASH.ld -------------------------------------------------------------------------------- /BluePillDemo_DMA_Mem2Mem/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_DMA_Mem2Mem/readme.txt -------------------------------------------------------------------------------- /BluePillDemo_Debounced_Buttons/.cproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_Debounced_Buttons/.cproject -------------------------------------------------------------------------------- /BluePillDemo_Debounced_Buttons/.gitignore: -------------------------------------------------------------------------------- 1 | /Debug/ 2 | -------------------------------------------------------------------------------- /BluePillDemo_Debounced_Buttons/.mxproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_Debounced_Buttons/.mxproject -------------------------------------------------------------------------------- /BluePillDemo_Debounced_Buttons/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_Debounced_Buttons/.project -------------------------------------------------------------------------------- /BluePillDemo_Debounced_Buttons/Core/Inc/main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_Debounced_Buttons/Core/Inc/main.h -------------------------------------------------------------------------------- /BluePillDemo_Debounced_Buttons/Core/Src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_Debounced_Buttons/Core/Src/main.c -------------------------------------------------------------------------------- /BluePillDemo_Debounced_Buttons/Core/Src/syscalls.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_Debounced_Buttons/Core/Src/syscalls.c -------------------------------------------------------------------------------- /BluePillDemo_Debounced_Buttons/Core/Src/sysmem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_Debounced_Buttons/Core/Src/sysmem.c -------------------------------------------------------------------------------- /BluePillDemo_Debounced_Buttons/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_Debounced_Buttons/readme.txt -------------------------------------------------------------------------------- /BluePillDemo_Debounced_Buttons/schematic.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_Debounced_Buttons/schematic.pdf -------------------------------------------------------------------------------- /BluePillDemo_EXTI/.cproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_EXTI/.cproject -------------------------------------------------------------------------------- /BluePillDemo_EXTI/.gitignore: -------------------------------------------------------------------------------- 1 | /Debug/ 2 | -------------------------------------------------------------------------------- /BluePillDemo_EXTI/.mxproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_EXTI/.mxproject -------------------------------------------------------------------------------- /BluePillDemo_EXTI/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_EXTI/.project -------------------------------------------------------------------------------- /BluePillDemo_EXTI/.settings/language.settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_EXTI/.settings/language.settings.xml -------------------------------------------------------------------------------- /BluePillDemo_EXTI/BluePillDemo_EXTI Debug.launch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_EXTI/BluePillDemo_EXTI Debug.launch -------------------------------------------------------------------------------- /BluePillDemo_EXTI/BluePillDemo_EXTI.ioc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_EXTI/BluePillDemo_EXTI.ioc -------------------------------------------------------------------------------- /BluePillDemo_EXTI/Core/Inc/main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_EXTI/Core/Inc/main.h -------------------------------------------------------------------------------- /BluePillDemo_EXTI/Core/Inc/stm32f1xx_hal_conf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_EXTI/Core/Inc/stm32f1xx_hal_conf.h -------------------------------------------------------------------------------- /BluePillDemo_EXTI/Core/Inc/stm32f1xx_it.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_EXTI/Core/Inc/stm32f1xx_it.h -------------------------------------------------------------------------------- /BluePillDemo_EXTI/Core/Src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_EXTI/Core/Src/main.c -------------------------------------------------------------------------------- /BluePillDemo_EXTI/Core/Src/stm32f1xx_hal_msp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_EXTI/Core/Src/stm32f1xx_hal_msp.c -------------------------------------------------------------------------------- /BluePillDemo_EXTI/Core/Src/stm32f1xx_it.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_EXTI/Core/Src/stm32f1xx_it.c -------------------------------------------------------------------------------- /BluePillDemo_EXTI/Core/Src/syscalls.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_EXTI/Core/Src/syscalls.c -------------------------------------------------------------------------------- /BluePillDemo_EXTI/Core/Src/sysmem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_EXTI/Core/Src/sysmem.c -------------------------------------------------------------------------------- /BluePillDemo_EXTI/Core/Src/system_stm32f1xx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_EXTI/Core/Src/system_stm32f1xx.c -------------------------------------------------------------------------------- /BluePillDemo_EXTI/Drivers/CMSIS/Include/core_cm0.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_EXTI/Drivers/CMSIS/Include/core_cm0.h -------------------------------------------------------------------------------- /BluePillDemo_EXTI/Drivers/CMSIS/Include/core_cm1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_EXTI/Drivers/CMSIS/Include/core_cm1.h -------------------------------------------------------------------------------- /BluePillDemo_EXTI/Drivers/CMSIS/Include/core_cm3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_EXTI/Drivers/CMSIS/Include/core_cm3.h -------------------------------------------------------------------------------- /BluePillDemo_EXTI/Drivers/CMSIS/Include/core_cm4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_EXTI/Drivers/CMSIS/Include/core_cm4.h -------------------------------------------------------------------------------- /BluePillDemo_EXTI/Drivers/CMSIS/Include/core_cm7.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_EXTI/Drivers/CMSIS/Include/core_cm7.h -------------------------------------------------------------------------------- /BluePillDemo_EXTI/STM32F103C8TX_FLASH.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_EXTI/STM32F103C8TX_FLASH.ld -------------------------------------------------------------------------------- /BluePillDemo_EXTI/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_EXTI/readme.txt -------------------------------------------------------------------------------- /BluePillDemo_EXTI/schematic.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_EXTI/schematic.pdf -------------------------------------------------------------------------------- /BluePillDemo_EXTI_4x4_Keypad/.cproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_EXTI_4x4_Keypad/.cproject -------------------------------------------------------------------------------- /BluePillDemo_EXTI_4x4_Keypad/.gitignore: -------------------------------------------------------------------------------- 1 | /Debug/ 2 | -------------------------------------------------------------------------------- /BluePillDemo_EXTI_4x4_Keypad/.mxproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_EXTI_4x4_Keypad/.mxproject -------------------------------------------------------------------------------- /BluePillDemo_EXTI_4x4_Keypad/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_EXTI_4x4_Keypad/.project -------------------------------------------------------------------------------- /BluePillDemo_EXTI_4x4_Keypad/Core/Inc/main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_EXTI_4x4_Keypad/Core/Inc/main.h -------------------------------------------------------------------------------- /BluePillDemo_EXTI_4x4_Keypad/Core/Src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_EXTI_4x4_Keypad/Core/Src/main.c -------------------------------------------------------------------------------- /BluePillDemo_EXTI_4x4_Keypad/Core/Src/syscalls.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_EXTI_4x4_Keypad/Core/Src/syscalls.c -------------------------------------------------------------------------------- /BluePillDemo_EXTI_4x4_Keypad/Core/Src/sysmem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_EXTI_4x4_Keypad/Core/Src/sysmem.c -------------------------------------------------------------------------------- /BluePillDemo_EXTI_4x4_Keypad/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_EXTI_4x4_Keypad/readme.txt -------------------------------------------------------------------------------- /BluePillDemo_EXTI_4x4_Keypad/schematic.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_EXTI_4x4_Keypad/schematic.pdf -------------------------------------------------------------------------------- /BluePillDemo_Flash/.cproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_Flash/.cproject -------------------------------------------------------------------------------- /BluePillDemo_Flash/.gitignore: -------------------------------------------------------------------------------- 1 | /Debug/ 2 | -------------------------------------------------------------------------------- /BluePillDemo_Flash/.mxproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_Flash/.mxproject -------------------------------------------------------------------------------- /BluePillDemo_Flash/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_Flash/.project -------------------------------------------------------------------------------- /BluePillDemo_Flash/.settings/language.settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_Flash/.settings/language.settings.xml -------------------------------------------------------------------------------- /BluePillDemo_Flash/BluePillDemo_Flash Debug.launch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_Flash/BluePillDemo_Flash Debug.launch -------------------------------------------------------------------------------- /BluePillDemo_Flash/BluePillDemo_Flash.ioc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_Flash/BluePillDemo_Flash.ioc -------------------------------------------------------------------------------- /BluePillDemo_Flash/Core/Inc/main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_Flash/Core/Inc/main.h -------------------------------------------------------------------------------- /BluePillDemo_Flash/Core/Inc/stm32f1xx_hal_conf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_Flash/Core/Inc/stm32f1xx_hal_conf.h -------------------------------------------------------------------------------- /BluePillDemo_Flash/Core/Inc/stm32f1xx_it.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_Flash/Core/Inc/stm32f1xx_it.h -------------------------------------------------------------------------------- /BluePillDemo_Flash/Core/Src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_Flash/Core/Src/main.c -------------------------------------------------------------------------------- /BluePillDemo_Flash/Core/Src/stm32f1xx_hal_msp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_Flash/Core/Src/stm32f1xx_hal_msp.c -------------------------------------------------------------------------------- /BluePillDemo_Flash/Core/Src/stm32f1xx_it.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_Flash/Core/Src/stm32f1xx_it.c -------------------------------------------------------------------------------- /BluePillDemo_Flash/Core/Src/syscalls.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_Flash/Core/Src/syscalls.c -------------------------------------------------------------------------------- /BluePillDemo_Flash/Core/Src/sysmem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_Flash/Core/Src/sysmem.c -------------------------------------------------------------------------------- /BluePillDemo_Flash/Core/Src/system_stm32f1xx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_Flash/Core/Src/system_stm32f1xx.c -------------------------------------------------------------------------------- /BluePillDemo_Flash/STM32F103C8TX_FLASH.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_Flash/STM32F103C8TX_FLASH.ld -------------------------------------------------------------------------------- /BluePillDemo_Flash/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_Flash/readme.txt -------------------------------------------------------------------------------- /BluePillDemo_FreeRTOS/.cproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_FreeRTOS/.cproject -------------------------------------------------------------------------------- /BluePillDemo_FreeRTOS/.gitignore: -------------------------------------------------------------------------------- 1 | /Debug/ 2 | -------------------------------------------------------------------------------- /BluePillDemo_FreeRTOS/.mxproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_FreeRTOS/.mxproject -------------------------------------------------------------------------------- /BluePillDemo_FreeRTOS/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_FreeRTOS/.project -------------------------------------------------------------------------------- /BluePillDemo_FreeRTOS/BluePillDemo_FreeRTOS.ioc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_FreeRTOS/BluePillDemo_FreeRTOS.ioc -------------------------------------------------------------------------------- /BluePillDemo_FreeRTOS/Core/Inc/FreeRTOSConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_FreeRTOS/Core/Inc/FreeRTOSConfig.h -------------------------------------------------------------------------------- /BluePillDemo_FreeRTOS/Core/Inc/main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_FreeRTOS/Core/Inc/main.h -------------------------------------------------------------------------------- /BluePillDemo_FreeRTOS/Core/Inc/stm32f1xx_it.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_FreeRTOS/Core/Inc/stm32f1xx_it.h -------------------------------------------------------------------------------- /BluePillDemo_FreeRTOS/Core/Src/freertos.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_FreeRTOS/Core/Src/freertos.c -------------------------------------------------------------------------------- /BluePillDemo_FreeRTOS/Core/Src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_FreeRTOS/Core/Src/main.c -------------------------------------------------------------------------------- /BluePillDemo_FreeRTOS/Core/Src/stm32f1xx_hal_msp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_FreeRTOS/Core/Src/stm32f1xx_hal_msp.c -------------------------------------------------------------------------------- /BluePillDemo_FreeRTOS/Core/Src/stm32f1xx_it.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_FreeRTOS/Core/Src/stm32f1xx_it.c -------------------------------------------------------------------------------- /BluePillDemo_FreeRTOS/Core/Src/syscalls.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_FreeRTOS/Core/Src/syscalls.c -------------------------------------------------------------------------------- /BluePillDemo_FreeRTOS/Core/Src/sysmem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_FreeRTOS/Core/Src/sysmem.c -------------------------------------------------------------------------------- /BluePillDemo_FreeRTOS/Core/Src/system_stm32f1xx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_FreeRTOS/Core/Src/system_stm32f1xx.c -------------------------------------------------------------------------------- /BluePillDemo_FreeRTOS/STM32F103C8TX_FLASH.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_FreeRTOS/STM32F103C8TX_FLASH.ld -------------------------------------------------------------------------------- /BluePillDemo_FreeRTOS/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_FreeRTOS/readme.txt -------------------------------------------------------------------------------- /BluePillDemo_FreeRTOS_FatFS/.cproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_FreeRTOS_FatFS/.cproject -------------------------------------------------------------------------------- /BluePillDemo_FreeRTOS_FatFS/.gitignore: -------------------------------------------------------------------------------- 1 | /Debug/ 2 | -------------------------------------------------------------------------------- /BluePillDemo_FreeRTOS_FatFS/.mxproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_FreeRTOS_FatFS/.mxproject -------------------------------------------------------------------------------- /BluePillDemo_FreeRTOS_FatFS/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_FreeRTOS_FatFS/.project -------------------------------------------------------------------------------- /BluePillDemo_FreeRTOS_FatFS/Core/Inc/main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_FreeRTOS_FatFS/Core/Inc/main.h -------------------------------------------------------------------------------- /BluePillDemo_FreeRTOS_FatFS/Core/Src/freertos.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_FreeRTOS_FatFS/Core/Src/freertos.c -------------------------------------------------------------------------------- /BluePillDemo_FreeRTOS_FatFS/Core/Src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_FreeRTOS_FatFS/Core/Src/main.c -------------------------------------------------------------------------------- /BluePillDemo_FreeRTOS_FatFS/Core/Src/syscalls.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_FreeRTOS_FatFS/Core/Src/syscalls.c -------------------------------------------------------------------------------- /BluePillDemo_FreeRTOS_FatFS/Core/Src/sysmem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_FreeRTOS_FatFS/Core/Src/sysmem.c -------------------------------------------------------------------------------- /BluePillDemo_FreeRTOS_FatFS/FATFS/App/fatfs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_FreeRTOS_FatFS/FATFS/App/fatfs.c -------------------------------------------------------------------------------- /BluePillDemo_FreeRTOS_FatFS/FATFS/App/fatfs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_FreeRTOS_FatFS/FATFS/App/fatfs.h -------------------------------------------------------------------------------- /BluePillDemo_FreeRTOS_FatFS/FATFS/Target/ffconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_FreeRTOS_FatFS/FATFS/Target/ffconf.h -------------------------------------------------------------------------------- /BluePillDemo_FreeRTOS_FatFS/STM32F103C8TX_FLASH.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_FreeRTOS_FatFS/STM32F103C8TX_FLASH.ld -------------------------------------------------------------------------------- /BluePillDemo_FreeRTOS_FatFS/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_FreeRTOS_FatFS/readme.txt -------------------------------------------------------------------------------- /BluePillDemo_FreeRTOS_FatFS/schematic.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_FreeRTOS_FatFS/schematic.pdf -------------------------------------------------------------------------------- /BluePillDemo_FreeRTOS_I2C_Pressure_BMP280_Server/.gitignore: -------------------------------------------------------------------------------- 1 | /Debug/ 2 | -------------------------------------------------------------------------------- /BluePillDemo_FreeRTOS_LCD_HD44780_Server/.cproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_FreeRTOS_LCD_HD44780_Server/.cproject -------------------------------------------------------------------------------- /BluePillDemo_FreeRTOS_LCD_HD44780_Server/.gitignore: -------------------------------------------------------------------------------- 1 | /Debug/ 2 | -------------------------------------------------------------------------------- /BluePillDemo_FreeRTOS_LCD_HD44780_Server/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_FreeRTOS_LCD_HD44780_Server/.project -------------------------------------------------------------------------------- /BluePillDemo_GPIO/.cproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_GPIO/.cproject -------------------------------------------------------------------------------- /BluePillDemo_GPIO/.gitignore: -------------------------------------------------------------------------------- 1 | /Debug/ 2 | -------------------------------------------------------------------------------- /BluePillDemo_GPIO/.mxproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_GPIO/.mxproject -------------------------------------------------------------------------------- /BluePillDemo_GPIO/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_GPIO/.project -------------------------------------------------------------------------------- /BluePillDemo_GPIO/.settings/language.settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_GPIO/.settings/language.settings.xml -------------------------------------------------------------------------------- /BluePillDemo_GPIO/BluePillDemo_GPIO Debug.launch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_GPIO/BluePillDemo_GPIO Debug.launch -------------------------------------------------------------------------------- /BluePillDemo_GPIO/BluePillDemo_GPIO.ioc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_GPIO/BluePillDemo_GPIO.ioc -------------------------------------------------------------------------------- /BluePillDemo_GPIO/Core/Inc/main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_GPIO/Core/Inc/main.h -------------------------------------------------------------------------------- /BluePillDemo_GPIO/Core/Inc/stm32f1xx_hal_conf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_GPIO/Core/Inc/stm32f1xx_hal_conf.h -------------------------------------------------------------------------------- /BluePillDemo_GPIO/Core/Inc/stm32f1xx_it.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_GPIO/Core/Inc/stm32f1xx_it.h -------------------------------------------------------------------------------- /BluePillDemo_GPIO/Core/Src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_GPIO/Core/Src/main.c -------------------------------------------------------------------------------- /BluePillDemo_GPIO/Core/Src/stm32f1xx_hal_msp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_GPIO/Core/Src/stm32f1xx_hal_msp.c -------------------------------------------------------------------------------- /BluePillDemo_GPIO/Core/Src/stm32f1xx_it.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_GPIO/Core/Src/stm32f1xx_it.c -------------------------------------------------------------------------------- /BluePillDemo_GPIO/Core/Src/syscalls.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_GPIO/Core/Src/syscalls.c -------------------------------------------------------------------------------- /BluePillDemo_GPIO/Core/Src/sysmem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_GPIO/Core/Src/sysmem.c -------------------------------------------------------------------------------- /BluePillDemo_GPIO/Core/Src/system_stm32f1xx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_GPIO/Core/Src/system_stm32f1xx.c -------------------------------------------------------------------------------- /BluePillDemo_GPIO/Drivers/CMSIS/Include/core_cm0.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_GPIO/Drivers/CMSIS/Include/core_cm0.h -------------------------------------------------------------------------------- /BluePillDemo_GPIO/Drivers/CMSIS/Include/core_cm1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_GPIO/Drivers/CMSIS/Include/core_cm1.h -------------------------------------------------------------------------------- /BluePillDemo_GPIO/Drivers/CMSIS/Include/core_cm3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_GPIO/Drivers/CMSIS/Include/core_cm3.h -------------------------------------------------------------------------------- /BluePillDemo_GPIO/Drivers/CMSIS/Include/core_cm4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_GPIO/Drivers/CMSIS/Include/core_cm4.h -------------------------------------------------------------------------------- /BluePillDemo_GPIO/Drivers/CMSIS/Include/core_cm7.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_GPIO/Drivers/CMSIS/Include/core_cm7.h -------------------------------------------------------------------------------- /BluePillDemo_GPIO/STM32F103C8TX_FLASH.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_GPIO/STM32F103C8TX_FLASH.ld -------------------------------------------------------------------------------- /BluePillDemo_GPIO/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_GPIO/readme.txt -------------------------------------------------------------------------------- /BluePillDemo_GPIO/schematic.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_GPIO/schematic.pdf -------------------------------------------------------------------------------- /BluePillDemo_General_Timer/.cproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_General_Timer/.cproject -------------------------------------------------------------------------------- /BluePillDemo_General_Timer/.gitignore: -------------------------------------------------------------------------------- 1 | /Debug/ 2 | -------------------------------------------------------------------------------- /BluePillDemo_General_Timer/.mxproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_General_Timer/.mxproject -------------------------------------------------------------------------------- /BluePillDemo_General_Timer/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_General_Timer/.project -------------------------------------------------------------------------------- /BluePillDemo_General_Timer/Core/Inc/main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_General_Timer/Core/Inc/main.h -------------------------------------------------------------------------------- /BluePillDemo_General_Timer/Core/Inc/stm32f1xx_it.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_General_Timer/Core/Inc/stm32f1xx_it.h -------------------------------------------------------------------------------- /BluePillDemo_General_Timer/Core/Src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_General_Timer/Core/Src/main.c -------------------------------------------------------------------------------- /BluePillDemo_General_Timer/Core/Src/stm32f1xx_it.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_General_Timer/Core/Src/stm32f1xx_it.c -------------------------------------------------------------------------------- /BluePillDemo_General_Timer/Core/Src/syscalls.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_General_Timer/Core/Src/syscalls.c -------------------------------------------------------------------------------- /BluePillDemo_General_Timer/Core/Src/sysmem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_General_Timer/Core/Src/sysmem.c -------------------------------------------------------------------------------- /BluePillDemo_General_Timer/STM32F103C8TX_FLASH.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_General_Timer/STM32F103C8TX_FLASH.ld -------------------------------------------------------------------------------- /BluePillDemo_General_Timer/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_General_Timer/readme.txt -------------------------------------------------------------------------------- /BluePillDemo_General_Timer_Capture/.cproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_General_Timer_Capture/.cproject -------------------------------------------------------------------------------- /BluePillDemo_General_Timer_Capture/.gitignore: -------------------------------------------------------------------------------- 1 | /Debug/ 2 | -------------------------------------------------------------------------------- /BluePillDemo_General_Timer_Capture/.mxproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_General_Timer_Capture/.mxproject -------------------------------------------------------------------------------- /BluePillDemo_General_Timer_Capture/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_General_Timer_Capture/.project -------------------------------------------------------------------------------- /BluePillDemo_General_Timer_Capture/Core/Inc/main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_General_Timer_Capture/Core/Inc/main.h -------------------------------------------------------------------------------- /BluePillDemo_General_Timer_Capture/Core/Src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_General_Timer_Capture/Core/Src/main.c -------------------------------------------------------------------------------- /BluePillDemo_General_Timer_Capture/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_General_Timer_Capture/readme.txt -------------------------------------------------------------------------------- /BluePillDemo_General_Timer_Capture/schematic.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_General_Timer_Capture/schematic.pdf -------------------------------------------------------------------------------- /BluePillDemo_I2C_EEPROM/.cproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_I2C_EEPROM/.cproject -------------------------------------------------------------------------------- /BluePillDemo_I2C_EEPROM/.gitignore: -------------------------------------------------------------------------------- 1 | /Debug/ 2 | -------------------------------------------------------------------------------- /BluePillDemo_I2C_EEPROM/.mxproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_I2C_EEPROM/.mxproject -------------------------------------------------------------------------------- /BluePillDemo_I2C_EEPROM/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_I2C_EEPROM/.project -------------------------------------------------------------------------------- /BluePillDemo_I2C_EEPROM/Core/Inc/eeprom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_I2C_EEPROM/Core/Inc/eeprom.h -------------------------------------------------------------------------------- /BluePillDemo_I2C_EEPROM/Core/Inc/main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_I2C_EEPROM/Core/Inc/main.h -------------------------------------------------------------------------------- /BluePillDemo_I2C_EEPROM/Core/Inc/stm32f1xx_it.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_I2C_EEPROM/Core/Inc/stm32f1xx_it.h -------------------------------------------------------------------------------- /BluePillDemo_I2C_EEPROM/Core/Src/eeprom.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_I2C_EEPROM/Core/Src/eeprom.c -------------------------------------------------------------------------------- /BluePillDemo_I2C_EEPROM/Core/Src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_I2C_EEPROM/Core/Src/main.c -------------------------------------------------------------------------------- /BluePillDemo_I2C_EEPROM/Core/Src/stm32f1xx_it.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_I2C_EEPROM/Core/Src/stm32f1xx_it.c -------------------------------------------------------------------------------- /BluePillDemo_I2C_EEPROM/Core/Src/syscalls.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_I2C_EEPROM/Core/Src/syscalls.c -------------------------------------------------------------------------------- /BluePillDemo_I2C_EEPROM/Core/Src/sysmem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_I2C_EEPROM/Core/Src/sysmem.c -------------------------------------------------------------------------------- /BluePillDemo_I2C_EEPROM/STM32F103C8TX_FLASH.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_I2C_EEPROM/STM32F103C8TX_FLASH.ld -------------------------------------------------------------------------------- /BluePillDemo_I2C_EEPROM/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_I2C_EEPROM/readme.txt -------------------------------------------------------------------------------- /BluePillDemo_I2C_EEPROM/schematic.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_I2C_EEPROM/schematic.pdf -------------------------------------------------------------------------------- /BluePillDemo_I2C_MAX30102_Pulse_Oximeter/.cproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_I2C_MAX30102_Pulse_Oximeter/.cproject -------------------------------------------------------------------------------- /BluePillDemo_I2C_MAX30102_Pulse_Oximeter/.gitignore: -------------------------------------------------------------------------------- 1 | /Debug/ 2 | -------------------------------------------------------------------------------- /BluePillDemo_I2C_MAX30102_Pulse_Oximeter/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_I2C_MAX30102_Pulse_Oximeter/.project -------------------------------------------------------------------------------- /BluePillDemo_I2C_MAX30102_Pulse_Oximeter_LCD/.gitignore: -------------------------------------------------------------------------------- 1 | /Debug/ 2 | -------------------------------------------------------------------------------- /BluePillDemo_I2C_Pressure_BMP280/.cproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_I2C_Pressure_BMP280/.cproject -------------------------------------------------------------------------------- /BluePillDemo_I2C_Pressure_BMP280/.gitignore: -------------------------------------------------------------------------------- 1 | /Debug/ 2 | -------------------------------------------------------------------------------- /BluePillDemo_I2C_Pressure_BMP280/.mxproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_I2C_Pressure_BMP280/.mxproject -------------------------------------------------------------------------------- /BluePillDemo_I2C_Pressure_BMP280/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_I2C_Pressure_BMP280/.project -------------------------------------------------------------------------------- /BluePillDemo_I2C_Pressure_BMP280/Core/Inc/main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_I2C_Pressure_BMP280/Core/Inc/main.h -------------------------------------------------------------------------------- /BluePillDemo_I2C_Pressure_BMP280/Core/Src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_I2C_Pressure_BMP280/Core/Src/main.c -------------------------------------------------------------------------------- /BluePillDemo_I2C_Pressure_BMP280/Core/Src/sysmem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_I2C_Pressure_BMP280/Core/Src/sysmem.c -------------------------------------------------------------------------------- /BluePillDemo_I2C_Pressure_BMP280/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_I2C_Pressure_BMP280/readme.txt -------------------------------------------------------------------------------- /BluePillDemo_I2C_Pressure_BMP280/schematic.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_I2C_Pressure_BMP280/schematic.pdf -------------------------------------------------------------------------------- /BluePillDemo_IWDG/.cproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_IWDG/.cproject -------------------------------------------------------------------------------- /BluePillDemo_IWDG/.gitignore: -------------------------------------------------------------------------------- 1 | /Debug/ 2 | -------------------------------------------------------------------------------- /BluePillDemo_IWDG/.mxproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_IWDG/.mxproject -------------------------------------------------------------------------------- /BluePillDemo_IWDG/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_IWDG/.project -------------------------------------------------------------------------------- /BluePillDemo_IWDG/.settings/language.settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_IWDG/.settings/language.settings.xml -------------------------------------------------------------------------------- /BluePillDemo_IWDG/BluePillDemo_IWDG Debug.launch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_IWDG/BluePillDemo_IWDG Debug.launch -------------------------------------------------------------------------------- /BluePillDemo_IWDG/BluePillDemo_IWDG.ioc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_IWDG/BluePillDemo_IWDG.ioc -------------------------------------------------------------------------------- /BluePillDemo_IWDG/Core/Inc/main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_IWDG/Core/Inc/main.h -------------------------------------------------------------------------------- /BluePillDemo_IWDG/Core/Inc/stm32f1xx_hal_conf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_IWDG/Core/Inc/stm32f1xx_hal_conf.h -------------------------------------------------------------------------------- /BluePillDemo_IWDG/Core/Inc/stm32f1xx_it.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_IWDG/Core/Inc/stm32f1xx_it.h -------------------------------------------------------------------------------- /BluePillDemo_IWDG/Core/Src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_IWDG/Core/Src/main.c -------------------------------------------------------------------------------- /BluePillDemo_IWDG/Core/Src/stm32f1xx_hal_msp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_IWDG/Core/Src/stm32f1xx_hal_msp.c -------------------------------------------------------------------------------- /BluePillDemo_IWDG/Core/Src/stm32f1xx_it.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_IWDG/Core/Src/stm32f1xx_it.c -------------------------------------------------------------------------------- /BluePillDemo_IWDG/Core/Src/syscalls.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_IWDG/Core/Src/syscalls.c -------------------------------------------------------------------------------- /BluePillDemo_IWDG/Core/Src/sysmem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_IWDG/Core/Src/sysmem.c -------------------------------------------------------------------------------- /BluePillDemo_IWDG/Core/Src/system_stm32f1xx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_IWDG/Core/Src/system_stm32f1xx.c -------------------------------------------------------------------------------- /BluePillDemo_IWDG/Drivers/CMSIS/Include/core_cm0.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_IWDG/Drivers/CMSIS/Include/core_cm0.h -------------------------------------------------------------------------------- /BluePillDemo_IWDG/Drivers/CMSIS/Include/core_cm1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_IWDG/Drivers/CMSIS/Include/core_cm1.h -------------------------------------------------------------------------------- /BluePillDemo_IWDG/Drivers/CMSIS/Include/core_cm3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_IWDG/Drivers/CMSIS/Include/core_cm3.h -------------------------------------------------------------------------------- /BluePillDemo_IWDG/Drivers/CMSIS/Include/core_cm4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_IWDG/Drivers/CMSIS/Include/core_cm4.h -------------------------------------------------------------------------------- /BluePillDemo_IWDG/Drivers/CMSIS/Include/core_cm7.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_IWDG/Drivers/CMSIS/Include/core_cm7.h -------------------------------------------------------------------------------- /BluePillDemo_IWDG/STM32F103C8TX_FLASH.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_IWDG/STM32F103C8TX_FLASH.ld -------------------------------------------------------------------------------- /BluePillDemo_IWDG/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_IWDG/readme.txt -------------------------------------------------------------------------------- /BluePillDemo_IWDG/schematic.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_IWDG/schematic.pdf -------------------------------------------------------------------------------- /BluePillDemo_LCD_HD44780/.cproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_LCD_HD44780/.cproject -------------------------------------------------------------------------------- /BluePillDemo_LCD_HD44780/.gitignore: -------------------------------------------------------------------------------- 1 | /Debug/ 2 | -------------------------------------------------------------------------------- /BluePillDemo_LCD_HD44780/.mxproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_LCD_HD44780/.mxproject -------------------------------------------------------------------------------- /BluePillDemo_LCD_HD44780/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_LCD_HD44780/.project -------------------------------------------------------------------------------- /BluePillDemo_LCD_HD44780/Core/Inc/lcd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_LCD_HD44780/Core/Inc/lcd.h -------------------------------------------------------------------------------- /BluePillDemo_LCD_HD44780/Core/Inc/main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_LCD_HD44780/Core/Inc/main.h -------------------------------------------------------------------------------- /BluePillDemo_LCD_HD44780/Core/Inc/stm32f1xx_it.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_LCD_HD44780/Core/Inc/stm32f1xx_it.h -------------------------------------------------------------------------------- /BluePillDemo_LCD_HD44780/Core/Src/lcd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_LCD_HD44780/Core/Src/lcd.c -------------------------------------------------------------------------------- /BluePillDemo_LCD_HD44780/Core/Src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_LCD_HD44780/Core/Src/main.c -------------------------------------------------------------------------------- /BluePillDemo_LCD_HD44780/Core/Src/stm32f1xx_it.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_LCD_HD44780/Core/Src/stm32f1xx_it.c -------------------------------------------------------------------------------- /BluePillDemo_LCD_HD44780/Core/Src/syscalls.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_LCD_HD44780/Core/Src/syscalls.c -------------------------------------------------------------------------------- /BluePillDemo_LCD_HD44780/Core/Src/sysmem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_LCD_HD44780/Core/Src/sysmem.c -------------------------------------------------------------------------------- /BluePillDemo_LCD_HD44780/STM32F103C8TX_FLASH.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_LCD_HD44780/STM32F103C8TX_FLASH.ld -------------------------------------------------------------------------------- /BluePillDemo_LCD_HD44780/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_LCD_HD44780/readme.txt -------------------------------------------------------------------------------- /BluePillDemo_LCD_HD44780/schematic.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_LCD_HD44780/schematic.pdf -------------------------------------------------------------------------------- /BluePillDemo_LCD_ILI9341/.cproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_LCD_ILI9341/.cproject -------------------------------------------------------------------------------- /BluePillDemo_LCD_ILI9341/.gitignore: -------------------------------------------------------------------------------- 1 | /Debug/ 2 | -------------------------------------------------------------------------------- /BluePillDemo_LCD_ILI9341/.mxproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_LCD_ILI9341/.mxproject -------------------------------------------------------------------------------- /BluePillDemo_LCD_ILI9341/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_LCD_ILI9341/.project -------------------------------------------------------------------------------- /BluePillDemo_LCD_ILI9341/Core/Inc/graphics.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_LCD_ILI9341/Core/Inc/graphics.h -------------------------------------------------------------------------------- /BluePillDemo_LCD_ILI9341/Core/Inc/ili9341.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_LCD_ILI9341/Core/Inc/ili9341.h -------------------------------------------------------------------------------- /BluePillDemo_LCD_ILI9341/Core/Inc/main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_LCD_ILI9341/Core/Inc/main.h -------------------------------------------------------------------------------- /BluePillDemo_LCD_ILI9341/Core/Inc/stm32f1xx_it.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_LCD_ILI9341/Core/Inc/stm32f1xx_it.h -------------------------------------------------------------------------------- /BluePillDemo_LCD_ILI9341/Core/Src/bitmaps.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_LCD_ILI9341/Core/Src/bitmaps.c -------------------------------------------------------------------------------- /BluePillDemo_LCD_ILI9341/Core/Src/graphics.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_LCD_ILI9341/Core/Src/graphics.c -------------------------------------------------------------------------------- /BluePillDemo_LCD_ILI9341/Core/Src/ili9341.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_LCD_ILI9341/Core/Src/ili9341.c -------------------------------------------------------------------------------- /BluePillDemo_LCD_ILI9341/Core/Src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_LCD_ILI9341/Core/Src/main.c -------------------------------------------------------------------------------- /BluePillDemo_LCD_ILI9341/Core/Src/stm32f1xx_it.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_LCD_ILI9341/Core/Src/stm32f1xx_it.c -------------------------------------------------------------------------------- /BluePillDemo_LCD_ILI9341/Core/Src/syscalls.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_LCD_ILI9341/Core/Src/syscalls.c -------------------------------------------------------------------------------- /BluePillDemo_LCD_ILI9341/Core/Src/sysmem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_LCD_ILI9341/Core/Src/sysmem.c -------------------------------------------------------------------------------- /BluePillDemo_LCD_ILI9341/STM32F103C8TX_FLASH.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_LCD_ILI9341/STM32F103C8TX_FLASH.ld -------------------------------------------------------------------------------- /BluePillDemo_LCD_ILI9341/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_LCD_ILI9341/readme.txt -------------------------------------------------------------------------------- /BluePillDemo_LCD_ILI9341/schematic.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_LCD_ILI9341/schematic.pdf -------------------------------------------------------------------------------- /BluePillDemo_LCD_ILI9341_Touch/.cproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_LCD_ILI9341_Touch/.cproject -------------------------------------------------------------------------------- /BluePillDemo_LCD_ILI9341_Touch/.gitignore: -------------------------------------------------------------------------------- 1 | /Debug/ 2 | -------------------------------------------------------------------------------- /BluePillDemo_LCD_ILI9341_Touch/.mxproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_LCD_ILI9341_Touch/.mxproject -------------------------------------------------------------------------------- /BluePillDemo_LCD_ILI9341_Touch/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_LCD_ILI9341_Touch/.project -------------------------------------------------------------------------------- /BluePillDemo_LCD_ILI9341_Touch/Core/Inc/graphics.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_LCD_ILI9341_Touch/Core/Inc/graphics.h -------------------------------------------------------------------------------- /BluePillDemo_LCD_ILI9341_Touch/Core/Inc/ili9341.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_LCD_ILI9341_Touch/Core/Inc/ili9341.h -------------------------------------------------------------------------------- /BluePillDemo_LCD_ILI9341_Touch/Core/Inc/main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_LCD_ILI9341_Touch/Core/Inc/main.h -------------------------------------------------------------------------------- /BluePillDemo_LCD_ILI9341_Touch/Core/Inc/touch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_LCD_ILI9341_Touch/Core/Inc/touch.h -------------------------------------------------------------------------------- /BluePillDemo_LCD_ILI9341_Touch/Core/Src/graphics.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_LCD_ILI9341_Touch/Core/Src/graphics.c -------------------------------------------------------------------------------- /BluePillDemo_LCD_ILI9341_Touch/Core/Src/ili9341.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_LCD_ILI9341_Touch/Core/Src/ili9341.c -------------------------------------------------------------------------------- /BluePillDemo_LCD_ILI9341_Touch/Core/Src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_LCD_ILI9341_Touch/Core/Src/main.c -------------------------------------------------------------------------------- /BluePillDemo_LCD_ILI9341_Touch/Core/Src/syscalls.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_LCD_ILI9341_Touch/Core/Src/syscalls.c -------------------------------------------------------------------------------- /BluePillDemo_LCD_ILI9341_Touch/Core/Src/sysmem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_LCD_ILI9341_Touch/Core/Src/sysmem.c -------------------------------------------------------------------------------- /BluePillDemo_LCD_ILI9341_Touch/Core/Src/touch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_LCD_ILI9341_Touch/Core/Src/touch.c -------------------------------------------------------------------------------- /BluePillDemo_LCD_ILI9341_Touch/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_LCD_ILI9341_Touch/readme.txt -------------------------------------------------------------------------------- /BluePillDemo_LCD_ILI9341_Touch/schematic.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_LCD_ILI9341_Touch/schematic.pdf -------------------------------------------------------------------------------- /BluePillDemo_LCD_ST7789/.cproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_LCD_ST7789/.cproject -------------------------------------------------------------------------------- /BluePillDemo_LCD_ST7789/.gitignore: -------------------------------------------------------------------------------- 1 | /Debug/ 2 | -------------------------------------------------------------------------------- /BluePillDemo_LCD_ST7789/.mxproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_LCD_ST7789/.mxproject -------------------------------------------------------------------------------- /BluePillDemo_LCD_ST7789/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_LCD_ST7789/.project -------------------------------------------------------------------------------- /BluePillDemo_LCD_ST7789/Core/Inc/graphics.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_LCD_ST7789/Core/Inc/graphics.h -------------------------------------------------------------------------------- /BluePillDemo_LCD_ST7789/Core/Inc/main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_LCD_ST7789/Core/Inc/main.h -------------------------------------------------------------------------------- /BluePillDemo_LCD_ST7789/Core/Inc/st7789.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_LCD_ST7789/Core/Inc/st7789.h -------------------------------------------------------------------------------- /BluePillDemo_LCD_ST7789/Core/Inc/stm32f1xx_it.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_LCD_ST7789/Core/Inc/stm32f1xx_it.h -------------------------------------------------------------------------------- /BluePillDemo_LCD_ST7789/Core/Src/bitmaps.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_LCD_ST7789/Core/Src/bitmaps.c -------------------------------------------------------------------------------- /BluePillDemo_LCD_ST7789/Core/Src/graphics.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_LCD_ST7789/Core/Src/graphics.c -------------------------------------------------------------------------------- /BluePillDemo_LCD_ST7789/Core/Src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_LCD_ST7789/Core/Src/main.c -------------------------------------------------------------------------------- /BluePillDemo_LCD_ST7789/Core/Src/st7789.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_LCD_ST7789/Core/Src/st7789.c -------------------------------------------------------------------------------- /BluePillDemo_LCD_ST7789/Core/Src/stm32f1xx_it.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_LCD_ST7789/Core/Src/stm32f1xx_it.c -------------------------------------------------------------------------------- /BluePillDemo_LCD_ST7789/Core/Src/syscalls.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_LCD_ST7789/Core/Src/syscalls.c -------------------------------------------------------------------------------- /BluePillDemo_LCD_ST7789/Core/Src/sysmem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_LCD_ST7789/Core/Src/sysmem.c -------------------------------------------------------------------------------- /BluePillDemo_LCD_ST7789/STM32F103C8TX_FLASH.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_LCD_ST7789/STM32F103C8TX_FLASH.ld -------------------------------------------------------------------------------- /BluePillDemo_LCD_ST7789/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_LCD_ST7789/readme.txt -------------------------------------------------------------------------------- /BluePillDemo_LCD_ST7789/schematic.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_LCD_ST7789/schematic.pdf -------------------------------------------------------------------------------- /BluePillDemo_NMEA0183_MQTT_Website/.cproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_NMEA0183_MQTT_Website/.cproject -------------------------------------------------------------------------------- /BluePillDemo_NMEA0183_MQTT_Website/.gitignore: -------------------------------------------------------------------------------- 1 | /Debug/ 2 | -------------------------------------------------------------------------------- /BluePillDemo_NMEA0183_MQTT_Website/.mxproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_NMEA0183_MQTT_Website/.mxproject -------------------------------------------------------------------------------- /BluePillDemo_NMEA0183_MQTT_Website/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_NMEA0183_MQTT_Website/.project -------------------------------------------------------------------------------- /BluePillDemo_NMEA0183_MQTT_Website/Core/Inc/main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_NMEA0183_MQTT_Website/Core/Inc/main.h -------------------------------------------------------------------------------- /BluePillDemo_NMEA0183_MQTT_Website/Core/Inc/mqtt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_NMEA0183_MQTT_Website/Core/Inc/mqtt.h -------------------------------------------------------------------------------- /BluePillDemo_NMEA0183_MQTT_Website/Core/Inc/nmea.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_NMEA0183_MQTT_Website/Core/Inc/nmea.h -------------------------------------------------------------------------------- /BluePillDemo_NMEA0183_MQTT_Website/Core/Src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_NMEA0183_MQTT_Website/Core/Src/main.c -------------------------------------------------------------------------------- /BluePillDemo_NMEA0183_MQTT_Website/Core/Src/mqtt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_NMEA0183_MQTT_Website/Core/Src/mqtt.c -------------------------------------------------------------------------------- /BluePillDemo_NMEA0183_MQTT_Website/Core/Src/nmea.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_NMEA0183_MQTT_Website/Core/Src/nmea.c -------------------------------------------------------------------------------- /BluePillDemo_NMEA0183_MQTT_Website/Mapiator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_NMEA0183_MQTT_Website/Mapiator.js -------------------------------------------------------------------------------- /BluePillDemo_NMEA0183_MQTT_Website/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_NMEA0183_MQTT_Website/index.html -------------------------------------------------------------------------------- /BluePillDemo_NMEA0183_MQTT_Website/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_NMEA0183_MQTT_Website/readme.txt -------------------------------------------------------------------------------- /BluePillDemo_NMEA0183_MQTT_Website/schematic.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_NMEA0183_MQTT_Website/schematic.pdf -------------------------------------------------------------------------------- /BluePillDemo_OLED_SSD1306/.cproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_OLED_SSD1306/.cproject -------------------------------------------------------------------------------- /BluePillDemo_OLED_SSD1306/.gitignore: -------------------------------------------------------------------------------- 1 | /Debug/ 2 | -------------------------------------------------------------------------------- /BluePillDemo_OLED_SSD1306/.mxproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_OLED_SSD1306/.mxproject -------------------------------------------------------------------------------- /BluePillDemo_OLED_SSD1306/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_OLED_SSD1306/.project -------------------------------------------------------------------------------- /BluePillDemo_OLED_SSD1306/Core/Inc/graphics.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_OLED_SSD1306/Core/Inc/graphics.h -------------------------------------------------------------------------------- /BluePillDemo_OLED_SSD1306/Core/Inc/main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_OLED_SSD1306/Core/Inc/main.h -------------------------------------------------------------------------------- /BluePillDemo_OLED_SSD1306/Core/Inc/ssd1306.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_OLED_SSD1306/Core/Inc/ssd1306.h -------------------------------------------------------------------------------- /BluePillDemo_OLED_SSD1306/Core/Inc/stm32f1xx_it.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_OLED_SSD1306/Core/Inc/stm32f1xx_it.h -------------------------------------------------------------------------------- /BluePillDemo_OLED_SSD1306/Core/Src/bitmaps.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_OLED_SSD1306/Core/Src/bitmaps.c -------------------------------------------------------------------------------- /BluePillDemo_OLED_SSD1306/Core/Src/graphics.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_OLED_SSD1306/Core/Src/graphics.c -------------------------------------------------------------------------------- /BluePillDemo_OLED_SSD1306/Core/Src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_OLED_SSD1306/Core/Src/main.c -------------------------------------------------------------------------------- /BluePillDemo_OLED_SSD1306/Core/Src/ssd1306.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_OLED_SSD1306/Core/Src/ssd1306.c -------------------------------------------------------------------------------- /BluePillDemo_OLED_SSD1306/Core/Src/stm32f1xx_it.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_OLED_SSD1306/Core/Src/stm32f1xx_it.c -------------------------------------------------------------------------------- /BluePillDemo_OLED_SSD1306/Core/Src/syscalls.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_OLED_SSD1306/Core/Src/syscalls.c -------------------------------------------------------------------------------- /BluePillDemo_OLED_SSD1306/Core/Src/sysmem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_OLED_SSD1306/Core/Src/sysmem.c -------------------------------------------------------------------------------- /BluePillDemo_OLED_SSD1306/STM32F103C8TX_FLASH.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_OLED_SSD1306/STM32F103C8TX_FLASH.ld -------------------------------------------------------------------------------- /BluePillDemo_OLED_SSD1306/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_OLED_SSD1306/readme.txt -------------------------------------------------------------------------------- /BluePillDemo_OLED_SSD1306/schematic.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_OLED_SSD1306/schematic.pdf -------------------------------------------------------------------------------- /BluePillDemo_OptionBytes/.cproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_OptionBytes/.cproject -------------------------------------------------------------------------------- /BluePillDemo_OptionBytes/.gitignore: -------------------------------------------------------------------------------- 1 | /Debug/ 2 | -------------------------------------------------------------------------------- /BluePillDemo_OptionBytes/.mxproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_OptionBytes/.mxproject -------------------------------------------------------------------------------- /BluePillDemo_OptionBytes/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_OptionBytes/.project -------------------------------------------------------------------------------- /BluePillDemo_OptionBytes/Core/Inc/main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_OptionBytes/Core/Inc/main.h -------------------------------------------------------------------------------- /BluePillDemo_OptionBytes/Core/Inc/stm32f1xx_it.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_OptionBytes/Core/Inc/stm32f1xx_it.h -------------------------------------------------------------------------------- /BluePillDemo_OptionBytes/Core/Src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_OptionBytes/Core/Src/main.c -------------------------------------------------------------------------------- /BluePillDemo_OptionBytes/Core/Src/stm32f1xx_it.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_OptionBytes/Core/Src/stm32f1xx_it.c -------------------------------------------------------------------------------- /BluePillDemo_OptionBytes/Core/Src/syscalls.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_OptionBytes/Core/Src/syscalls.c -------------------------------------------------------------------------------- /BluePillDemo_OptionBytes/Core/Src/sysmem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_OptionBytes/Core/Src/sysmem.c -------------------------------------------------------------------------------- /BluePillDemo_OptionBytes/STM32F103C8TX_FLASH.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_OptionBytes/STM32F103C8TX_FLASH.ld -------------------------------------------------------------------------------- /BluePillDemo_OptionBytes/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_OptionBytes/readme.txt -------------------------------------------------------------------------------- /BluePillDemo_PWM/.cproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_PWM/.cproject -------------------------------------------------------------------------------- /BluePillDemo_PWM/.gitignore: -------------------------------------------------------------------------------- 1 | /Debug/ 2 | -------------------------------------------------------------------------------- /BluePillDemo_PWM/.mxproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_PWM/.mxproject -------------------------------------------------------------------------------- /BluePillDemo_PWM/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_PWM/.project -------------------------------------------------------------------------------- /BluePillDemo_PWM/.settings/language.settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_PWM/.settings/language.settings.xml -------------------------------------------------------------------------------- /BluePillDemo_PWM/BluePillDemo_PWM Debug.launch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_PWM/BluePillDemo_PWM Debug.launch -------------------------------------------------------------------------------- /BluePillDemo_PWM/BluePillDemo_PWM.ioc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_PWM/BluePillDemo_PWM.ioc -------------------------------------------------------------------------------- /BluePillDemo_PWM/Core/Inc/main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_PWM/Core/Inc/main.h -------------------------------------------------------------------------------- /BluePillDemo_PWM/Core/Inc/stm32f1xx_hal_conf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_PWM/Core/Inc/stm32f1xx_hal_conf.h -------------------------------------------------------------------------------- /BluePillDemo_PWM/Core/Inc/stm32f1xx_it.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_PWM/Core/Inc/stm32f1xx_it.h -------------------------------------------------------------------------------- /BluePillDemo_PWM/Core/Src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_PWM/Core/Src/main.c -------------------------------------------------------------------------------- /BluePillDemo_PWM/Core/Src/stm32f1xx_hal_msp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_PWM/Core/Src/stm32f1xx_hal_msp.c -------------------------------------------------------------------------------- /BluePillDemo_PWM/Core/Src/stm32f1xx_it.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_PWM/Core/Src/stm32f1xx_it.c -------------------------------------------------------------------------------- /BluePillDemo_PWM/Core/Src/syscalls.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_PWM/Core/Src/syscalls.c -------------------------------------------------------------------------------- /BluePillDemo_PWM/Core/Src/sysmem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_PWM/Core/Src/sysmem.c -------------------------------------------------------------------------------- /BluePillDemo_PWM/Core/Src/system_stm32f1xx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_PWM/Core/Src/system_stm32f1xx.c -------------------------------------------------------------------------------- /BluePillDemo_PWM/Drivers/CMSIS/Include/cmsis_gcc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_PWM/Drivers/CMSIS/Include/cmsis_gcc.h -------------------------------------------------------------------------------- /BluePillDemo_PWM/Drivers/CMSIS/Include/core_cm0.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_PWM/Drivers/CMSIS/Include/core_cm0.h -------------------------------------------------------------------------------- /BluePillDemo_PWM/Drivers/CMSIS/Include/core_cm1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_PWM/Drivers/CMSIS/Include/core_cm1.h -------------------------------------------------------------------------------- /BluePillDemo_PWM/Drivers/CMSIS/Include/core_cm23.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_PWM/Drivers/CMSIS/Include/core_cm23.h -------------------------------------------------------------------------------- /BluePillDemo_PWM/Drivers/CMSIS/Include/core_cm3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_PWM/Drivers/CMSIS/Include/core_cm3.h -------------------------------------------------------------------------------- /BluePillDemo_PWM/Drivers/CMSIS/Include/core_cm33.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_PWM/Drivers/CMSIS/Include/core_cm33.h -------------------------------------------------------------------------------- /BluePillDemo_PWM/Drivers/CMSIS/Include/core_cm4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_PWM/Drivers/CMSIS/Include/core_cm4.h -------------------------------------------------------------------------------- /BluePillDemo_PWM/Drivers/CMSIS/Include/core_cm7.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_PWM/Drivers/CMSIS/Include/core_cm7.h -------------------------------------------------------------------------------- /BluePillDemo_PWM/Drivers/CMSIS/Include/mpu_armv7.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_PWM/Drivers/CMSIS/Include/mpu_armv7.h -------------------------------------------------------------------------------- /BluePillDemo_PWM/Drivers/CMSIS/Include/mpu_armv8.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_PWM/Drivers/CMSIS/Include/mpu_armv8.h -------------------------------------------------------------------------------- /BluePillDemo_PWM/STM32F103C8TX_FLASH.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_PWM/STM32F103C8TX_FLASH.ld -------------------------------------------------------------------------------- /BluePillDemo_PWM/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_PWM/readme.txt -------------------------------------------------------------------------------- /BluePillDemo_PWM/schematic.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_PWM/schematic.pdf -------------------------------------------------------------------------------- /BluePillDemo_PWM_Buzzer/.cproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_PWM_Buzzer/.cproject -------------------------------------------------------------------------------- /BluePillDemo_PWM_Buzzer/.gitignore: -------------------------------------------------------------------------------- 1 | /Debug/ 2 | -------------------------------------------------------------------------------- /BluePillDemo_PWM_Buzzer/.mxproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_PWM_Buzzer/.mxproject -------------------------------------------------------------------------------- /BluePillDemo_PWM_Buzzer/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_PWM_Buzzer/.project -------------------------------------------------------------------------------- /BluePillDemo_PWM_Buzzer/Core/Inc/main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_PWM_Buzzer/Core/Inc/main.h -------------------------------------------------------------------------------- /BluePillDemo_PWM_Buzzer/Core/Inc/stm32f1xx_it.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_PWM_Buzzer/Core/Inc/stm32f1xx_it.h -------------------------------------------------------------------------------- /BluePillDemo_PWM_Buzzer/Core/Src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_PWM_Buzzer/Core/Src/main.c -------------------------------------------------------------------------------- /BluePillDemo_PWM_Buzzer/Core/Src/stm32f1xx_it.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_PWM_Buzzer/Core/Src/stm32f1xx_it.c -------------------------------------------------------------------------------- /BluePillDemo_PWM_Buzzer/Core/Src/syscalls.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_PWM_Buzzer/Core/Src/syscalls.c -------------------------------------------------------------------------------- /BluePillDemo_PWM_Buzzer/Core/Src/sysmem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_PWM_Buzzer/Core/Src/sysmem.c -------------------------------------------------------------------------------- /BluePillDemo_PWM_Buzzer/STM32F103C8TX_FLASH.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_PWM_Buzzer/STM32F103C8TX_FLASH.ld -------------------------------------------------------------------------------- /BluePillDemo_PWM_Buzzer/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_PWM_Buzzer/readme.txt -------------------------------------------------------------------------------- /BluePillDemo_PWM_Buzzer/schematic.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_PWM_Buzzer/schematic.pdf -------------------------------------------------------------------------------- /BluePillDemo_RTC/.cproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_RTC/.cproject -------------------------------------------------------------------------------- /BluePillDemo_RTC/.gitignore: -------------------------------------------------------------------------------- 1 | /Debug/ 2 | -------------------------------------------------------------------------------- /BluePillDemo_RTC/.mxproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_RTC/.mxproject -------------------------------------------------------------------------------- /BluePillDemo_RTC/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_RTC/.project -------------------------------------------------------------------------------- /BluePillDemo_RTC/.settings/language.settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_RTC/.settings/language.settings.xml -------------------------------------------------------------------------------- /BluePillDemo_RTC/BluePillDemo_RTC Debug.launch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_RTC/BluePillDemo_RTC Debug.launch -------------------------------------------------------------------------------- /BluePillDemo_RTC/BluePillDemo_RTC.ioc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_RTC/BluePillDemo_RTC.ioc -------------------------------------------------------------------------------- /BluePillDemo_RTC/Core/Inc/main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_RTC/Core/Inc/main.h -------------------------------------------------------------------------------- /BluePillDemo_RTC/Core/Inc/stm32f1xx_hal_conf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_RTC/Core/Inc/stm32f1xx_hal_conf.h -------------------------------------------------------------------------------- /BluePillDemo_RTC/Core/Inc/stm32f1xx_it.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_RTC/Core/Inc/stm32f1xx_it.h -------------------------------------------------------------------------------- /BluePillDemo_RTC/Core/Src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_RTC/Core/Src/main.c -------------------------------------------------------------------------------- /BluePillDemo_RTC/Core/Src/stm32f1xx_hal_msp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_RTC/Core/Src/stm32f1xx_hal_msp.c -------------------------------------------------------------------------------- /BluePillDemo_RTC/Core/Src/stm32f1xx_it.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_RTC/Core/Src/stm32f1xx_it.c -------------------------------------------------------------------------------- /BluePillDemo_RTC/Core/Src/syscalls.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_RTC/Core/Src/syscalls.c -------------------------------------------------------------------------------- /BluePillDemo_RTC/Core/Src/sysmem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_RTC/Core/Src/sysmem.c -------------------------------------------------------------------------------- /BluePillDemo_RTC/Core/Src/system_stm32f1xx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_RTC/Core/Src/system_stm32f1xx.c -------------------------------------------------------------------------------- /BluePillDemo_RTC/Drivers/CMSIS/Include/cmsis_gcc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_RTC/Drivers/CMSIS/Include/cmsis_gcc.h -------------------------------------------------------------------------------- /BluePillDemo_RTC/Drivers/CMSIS/Include/core_cm0.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_RTC/Drivers/CMSIS/Include/core_cm0.h -------------------------------------------------------------------------------- /BluePillDemo_RTC/Drivers/CMSIS/Include/core_cm1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_RTC/Drivers/CMSIS/Include/core_cm1.h -------------------------------------------------------------------------------- /BluePillDemo_RTC/Drivers/CMSIS/Include/core_cm23.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_RTC/Drivers/CMSIS/Include/core_cm23.h -------------------------------------------------------------------------------- /BluePillDemo_RTC/Drivers/CMSIS/Include/core_cm3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_RTC/Drivers/CMSIS/Include/core_cm3.h -------------------------------------------------------------------------------- /BluePillDemo_RTC/Drivers/CMSIS/Include/core_cm33.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_RTC/Drivers/CMSIS/Include/core_cm33.h -------------------------------------------------------------------------------- /BluePillDemo_RTC/Drivers/CMSIS/Include/core_cm4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_RTC/Drivers/CMSIS/Include/core_cm4.h -------------------------------------------------------------------------------- /BluePillDemo_RTC/Drivers/CMSIS/Include/core_cm7.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_RTC/Drivers/CMSIS/Include/core_cm7.h -------------------------------------------------------------------------------- /BluePillDemo_RTC/Drivers/CMSIS/Include/mpu_armv7.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_RTC/Drivers/CMSIS/Include/mpu_armv7.h -------------------------------------------------------------------------------- /BluePillDemo_RTC/Drivers/CMSIS/Include/mpu_armv8.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_RTC/Drivers/CMSIS/Include/mpu_armv8.h -------------------------------------------------------------------------------- /BluePillDemo_RTC/STM32F103C8TX_FLASH.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_RTC/STM32F103C8TX_FLASH.ld -------------------------------------------------------------------------------- /BluePillDemo_RTC/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_RTC/readme.txt -------------------------------------------------------------------------------- /BluePillDemo_SHA1/.cproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_SHA1/.cproject -------------------------------------------------------------------------------- /BluePillDemo_SHA1/.gitignore: -------------------------------------------------------------------------------- 1 | /Debug/ 2 | -------------------------------------------------------------------------------- /BluePillDemo_SHA1/.mxproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_SHA1/.mxproject -------------------------------------------------------------------------------- /BluePillDemo_SHA1/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_SHA1/.project -------------------------------------------------------------------------------- /BluePillDemo_SHA1/.settings/language.settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_SHA1/.settings/language.settings.xml -------------------------------------------------------------------------------- /BluePillDemo_SHA1/BluePillDemo_SHA1 Debug.launch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_SHA1/BluePillDemo_SHA1 Debug.launch -------------------------------------------------------------------------------- /BluePillDemo_SHA1/BluePillDemo_SHA1.ioc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_SHA1/BluePillDemo_SHA1.ioc -------------------------------------------------------------------------------- /BluePillDemo_SHA1/Core/Inc/main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_SHA1/Core/Inc/main.h -------------------------------------------------------------------------------- /BluePillDemo_SHA1/Core/Inc/sha1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_SHA1/Core/Inc/sha1.h -------------------------------------------------------------------------------- /BluePillDemo_SHA1/Core/Inc/stm32f1xx_hal_conf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_SHA1/Core/Inc/stm32f1xx_hal_conf.h -------------------------------------------------------------------------------- /BluePillDemo_SHA1/Core/Inc/stm32f1xx_it.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_SHA1/Core/Inc/stm32f1xx_it.h -------------------------------------------------------------------------------- /BluePillDemo_SHA1/Core/Src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_SHA1/Core/Src/main.c -------------------------------------------------------------------------------- /BluePillDemo_SHA1/Core/Src/sha1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_SHA1/Core/Src/sha1.c -------------------------------------------------------------------------------- /BluePillDemo_SHA1/Core/Src/stm32f1xx_hal_msp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_SHA1/Core/Src/stm32f1xx_hal_msp.c -------------------------------------------------------------------------------- /BluePillDemo_SHA1/Core/Src/stm32f1xx_it.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_SHA1/Core/Src/stm32f1xx_it.c -------------------------------------------------------------------------------- /BluePillDemo_SHA1/Core/Src/syscalls.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_SHA1/Core/Src/syscalls.c -------------------------------------------------------------------------------- /BluePillDemo_SHA1/Core/Src/sysmem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_SHA1/Core/Src/sysmem.c -------------------------------------------------------------------------------- /BluePillDemo_SHA1/Core/Src/system_stm32f1xx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_SHA1/Core/Src/system_stm32f1xx.c -------------------------------------------------------------------------------- /BluePillDemo_SHA1/Drivers/CMSIS/Include/core_cm0.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_SHA1/Drivers/CMSIS/Include/core_cm0.h -------------------------------------------------------------------------------- /BluePillDemo_SHA1/Drivers/CMSIS/Include/core_cm1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_SHA1/Drivers/CMSIS/Include/core_cm1.h -------------------------------------------------------------------------------- /BluePillDemo_SHA1/Drivers/CMSIS/Include/core_cm3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_SHA1/Drivers/CMSIS/Include/core_cm3.h -------------------------------------------------------------------------------- /BluePillDemo_SHA1/Drivers/CMSIS/Include/core_cm4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_SHA1/Drivers/CMSIS/Include/core_cm4.h -------------------------------------------------------------------------------- /BluePillDemo_SHA1/Drivers/CMSIS/Include/core_cm7.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_SHA1/Drivers/CMSIS/Include/core_cm7.h -------------------------------------------------------------------------------- /BluePillDemo_SHA1/STM32F103C8TX_FLASH.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_SHA1/STM32F103C8TX_FLASH.ld -------------------------------------------------------------------------------- /BluePillDemo_SHA1/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_SHA1/readme.txt -------------------------------------------------------------------------------- /BluePillDemo_SIM800L_HTTP/.cproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_SIM800L_HTTP/.cproject -------------------------------------------------------------------------------- /BluePillDemo_SIM800L_HTTP/.gitignore: -------------------------------------------------------------------------------- 1 | /Debug/ 2 | -------------------------------------------------------------------------------- /BluePillDemo_SIM800L_HTTP/.mxproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_SIM800L_HTTP/.mxproject -------------------------------------------------------------------------------- /BluePillDemo_SIM800L_HTTP/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_SIM800L_HTTP/.project -------------------------------------------------------------------------------- /BluePillDemo_SIM800L_HTTP/Core/Inc/main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_SIM800L_HTTP/Core/Inc/main.h -------------------------------------------------------------------------------- /BluePillDemo_SIM800L_HTTP/Core/Inc/modem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_SIM800L_HTTP/Core/Inc/modem.h -------------------------------------------------------------------------------- /BluePillDemo_SIM800L_HTTP/Core/Inc/stm32f1xx_it.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_SIM800L_HTTP/Core/Inc/stm32f1xx_it.h -------------------------------------------------------------------------------- /BluePillDemo_SIM800L_HTTP/Core/Src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_SIM800L_HTTP/Core/Src/main.c -------------------------------------------------------------------------------- /BluePillDemo_SIM800L_HTTP/Core/Src/modem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_SIM800L_HTTP/Core/Src/modem.c -------------------------------------------------------------------------------- /BluePillDemo_SIM800L_HTTP/Core/Src/stm32f1xx_it.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_SIM800L_HTTP/Core/Src/stm32f1xx_it.c -------------------------------------------------------------------------------- /BluePillDemo_SIM800L_HTTP/Core/Src/syscalls.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_SIM800L_HTTP/Core/Src/syscalls.c -------------------------------------------------------------------------------- /BluePillDemo_SIM800L_HTTP/Core/Src/sysmem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_SIM800L_HTTP/Core/Src/sysmem.c -------------------------------------------------------------------------------- /BluePillDemo_SIM800L_HTTP/STM32F103C8TX_FLASH.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_SIM800L_HTTP/STM32F103C8TX_FLASH.ld -------------------------------------------------------------------------------- /BluePillDemo_SIM800L_HTTP/ftdi cable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_SIM800L_HTTP/ftdi cable.png -------------------------------------------------------------------------------- /BluePillDemo_SIM800L_HTTP/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_SIM800L_HTTP/readme.txt -------------------------------------------------------------------------------- /BluePillDemo_SIM800L_HTTP/schematic.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_SIM800L_HTTP/schematic.pdf -------------------------------------------------------------------------------- /BluePillDemo_SIM800L_MQTT_FreeRTOS/.cproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_SIM800L_MQTT_FreeRTOS/.cproject -------------------------------------------------------------------------------- /BluePillDemo_SIM800L_MQTT_FreeRTOS/.gitignore: -------------------------------------------------------------------------------- 1 | /Debug/ 2 | -------------------------------------------------------------------------------- /BluePillDemo_SIM800L_MQTT_FreeRTOS/.mxproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_SIM800L_MQTT_FreeRTOS/.mxproject -------------------------------------------------------------------------------- /BluePillDemo_SIM800L_MQTT_FreeRTOS/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_SIM800L_MQTT_FreeRTOS/.project -------------------------------------------------------------------------------- /BluePillDemo_SIM800L_MQTT_FreeRTOS/Core/Inc/main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_SIM800L_MQTT_FreeRTOS/Core/Inc/main.h -------------------------------------------------------------------------------- /BluePillDemo_SIM800L_MQTT_FreeRTOS/Core/Inc/mqtt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_SIM800L_MQTT_FreeRTOS/Core/Inc/mqtt.h -------------------------------------------------------------------------------- /BluePillDemo_SIM800L_MQTT_FreeRTOS/Core/Src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_SIM800L_MQTT_FreeRTOS/Core/Src/main.c -------------------------------------------------------------------------------- /BluePillDemo_SIM800L_MQTT_FreeRTOS/Core/Src/mqtt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_SIM800L_MQTT_FreeRTOS/Core/Src/mqtt.c -------------------------------------------------------------------------------- /BluePillDemo_SIM800L_MQTT_FreeRTOS/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_SIM800L_MQTT_FreeRTOS/readme.txt -------------------------------------------------------------------------------- /BluePillDemo_SIM800L_MQTT_FreeRTOS/schematic.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_SIM800L_MQTT_FreeRTOS/schematic.pdf -------------------------------------------------------------------------------- /BluePillDemo_SIM800L_MQTT_FreeRTOS_Website/.gitignore: -------------------------------------------------------------------------------- 1 | /Debug/ 2 | -------------------------------------------------------------------------------- /BluePillDemo_SIM800L_SMS/.cproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_SIM800L_SMS/.cproject -------------------------------------------------------------------------------- /BluePillDemo_SIM800L_SMS/.gitignore: -------------------------------------------------------------------------------- 1 | /Debug/ 2 | -------------------------------------------------------------------------------- /BluePillDemo_SIM800L_SMS/.mxproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_SIM800L_SMS/.mxproject -------------------------------------------------------------------------------- /BluePillDemo_SIM800L_SMS/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_SIM800L_SMS/.project -------------------------------------------------------------------------------- /BluePillDemo_SIM800L_SMS/Core/Inc/main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_SIM800L_SMS/Core/Inc/main.h -------------------------------------------------------------------------------- /BluePillDemo_SIM800L_SMS/Core/Inc/modem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_SIM800L_SMS/Core/Inc/modem.h -------------------------------------------------------------------------------- /BluePillDemo_SIM800L_SMS/Core/Inc/stm32f1xx_it.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_SIM800L_SMS/Core/Inc/stm32f1xx_it.h -------------------------------------------------------------------------------- /BluePillDemo_SIM800L_SMS/Core/Src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_SIM800L_SMS/Core/Src/main.c -------------------------------------------------------------------------------- /BluePillDemo_SIM800L_SMS/Core/Src/modem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_SIM800L_SMS/Core/Src/modem.c -------------------------------------------------------------------------------- /BluePillDemo_SIM800L_SMS/Core/Src/stm32f1xx_it.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_SIM800L_SMS/Core/Src/stm32f1xx_it.c -------------------------------------------------------------------------------- /BluePillDemo_SIM800L_SMS/Core/Src/syscalls.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_SIM800L_SMS/Core/Src/syscalls.c -------------------------------------------------------------------------------- /BluePillDemo_SIM800L_SMS/Core/Src/sysmem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_SIM800L_SMS/Core/Src/sysmem.c -------------------------------------------------------------------------------- /BluePillDemo_SIM800L_SMS/STM32F103C8TX_FLASH.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_SIM800L_SMS/STM32F103C8TX_FLASH.ld -------------------------------------------------------------------------------- /BluePillDemo_SIM800L_SMS/ftdi cable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_SIM800L_SMS/ftdi cable.png -------------------------------------------------------------------------------- /BluePillDemo_SIM800L_SMS/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_SIM800L_SMS/readme.txt -------------------------------------------------------------------------------- /BluePillDemo_SIM800L_SMS/schematic.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_SIM800L_SMS/schematic.pdf -------------------------------------------------------------------------------- /BluePillDemo_SIM800L_TCP_FreeRTOS/.cproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_SIM800L_TCP_FreeRTOS/.cproject -------------------------------------------------------------------------------- /BluePillDemo_SIM800L_TCP_FreeRTOS/.gitignore: -------------------------------------------------------------------------------- 1 | /Debug/ 2 | -------------------------------------------------------------------------------- /BluePillDemo_SIM800L_TCP_FreeRTOS/.mxproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_SIM800L_TCP_FreeRTOS/.mxproject -------------------------------------------------------------------------------- /BluePillDemo_SIM800L_TCP_FreeRTOS/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_SIM800L_TCP_FreeRTOS/.project -------------------------------------------------------------------------------- /BluePillDemo_SIM800L_TCP_FreeRTOS/Core/Inc/main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_SIM800L_TCP_FreeRTOS/Core/Inc/main.h -------------------------------------------------------------------------------- /BluePillDemo_SIM800L_TCP_FreeRTOS/Core/Inc/modem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_SIM800L_TCP_FreeRTOS/Core/Inc/modem.h -------------------------------------------------------------------------------- /BluePillDemo_SIM800L_TCP_FreeRTOS/Core/Src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_SIM800L_TCP_FreeRTOS/Core/Src/main.c -------------------------------------------------------------------------------- /BluePillDemo_SIM800L_TCP_FreeRTOS/Core/Src/modem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_SIM800L_TCP_FreeRTOS/Core/Src/modem.c -------------------------------------------------------------------------------- /BluePillDemo_SIM800L_TCP_FreeRTOS/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_SIM800L_TCP_FreeRTOS/readme.txt -------------------------------------------------------------------------------- /BluePillDemo_SIM800L_TCP_FreeRTOS/schematic.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_SIM800L_TCP_FreeRTOS/schematic.pdf -------------------------------------------------------------------------------- /BluePillDemo_SPI_2.4GHz_Radio_Rx/.cproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_SPI_2.4GHz_Radio_Rx/.cproject -------------------------------------------------------------------------------- /BluePillDemo_SPI_2.4GHz_Radio_Rx/.gitignore: -------------------------------------------------------------------------------- 1 | /Debug/ 2 | -------------------------------------------------------------------------------- /BluePillDemo_SPI_2.4GHz_Radio_Rx/.mxproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_SPI_2.4GHz_Radio_Rx/.mxproject -------------------------------------------------------------------------------- /BluePillDemo_SPI_2.4GHz_Radio_Rx/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_SPI_2.4GHz_Radio_Rx/.project -------------------------------------------------------------------------------- /BluePillDemo_SPI_2.4GHz_Radio_Rx/Core/Inc/main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_SPI_2.4GHz_Radio_Rx/Core/Inc/main.h -------------------------------------------------------------------------------- /BluePillDemo_SPI_2.4GHz_Radio_Rx/Core/Src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_SPI_2.4GHz_Radio_Rx/Core/Src/main.c -------------------------------------------------------------------------------- /BluePillDemo_SPI_2.4GHz_Radio_Rx/Core/Src/sysmem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_SPI_2.4GHz_Radio_Rx/Core/Src/sysmem.c -------------------------------------------------------------------------------- /BluePillDemo_SPI_2.4GHz_Radio_Rx/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_SPI_2.4GHz_Radio_Rx/readme.txt -------------------------------------------------------------------------------- /BluePillDemo_SPI_2.4GHz_Radio_Rx/schematic.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_SPI_2.4GHz_Radio_Rx/schematic.pdf -------------------------------------------------------------------------------- /BluePillDemo_SPI_2.4GHz_Radio_Tx/.cproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_SPI_2.4GHz_Radio_Tx/.cproject -------------------------------------------------------------------------------- /BluePillDemo_SPI_2.4GHz_Radio_Tx/.gitignore: -------------------------------------------------------------------------------- 1 | /Debug/ 2 | -------------------------------------------------------------------------------- /BluePillDemo_SPI_2.4GHz_Radio_Tx/.mxproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_SPI_2.4GHz_Radio_Tx/.mxproject -------------------------------------------------------------------------------- /BluePillDemo_SPI_2.4GHz_Radio_Tx/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_SPI_2.4GHz_Radio_Tx/.project -------------------------------------------------------------------------------- /BluePillDemo_SPI_2.4GHz_Radio_Tx/Core/Inc/main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_SPI_2.4GHz_Radio_Tx/Core/Inc/main.h -------------------------------------------------------------------------------- /BluePillDemo_SPI_2.4GHz_Radio_Tx/Core/Src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_SPI_2.4GHz_Radio_Tx/Core/Src/main.c -------------------------------------------------------------------------------- /BluePillDemo_SPI_2.4GHz_Radio_Tx/Core/Src/sysmem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_SPI_2.4GHz_Radio_Tx/Core/Src/sysmem.c -------------------------------------------------------------------------------- /BluePillDemo_SPI_2.4GHz_Radio_Tx/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_SPI_2.4GHz_Radio_Tx/readme.txt -------------------------------------------------------------------------------- /BluePillDemo_SPI_EEPROM/.cproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_SPI_EEPROM/.cproject -------------------------------------------------------------------------------- /BluePillDemo_SPI_EEPROM/.gitignore: -------------------------------------------------------------------------------- 1 | /Debug/ 2 | -------------------------------------------------------------------------------- /BluePillDemo_SPI_EEPROM/.mxproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_SPI_EEPROM/.mxproject -------------------------------------------------------------------------------- /BluePillDemo_SPI_EEPROM/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_SPI_EEPROM/.project -------------------------------------------------------------------------------- /BluePillDemo_SPI_EEPROM/Core/Inc/eeprom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_SPI_EEPROM/Core/Inc/eeprom.h -------------------------------------------------------------------------------- /BluePillDemo_SPI_EEPROM/Core/Inc/main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_SPI_EEPROM/Core/Inc/main.h -------------------------------------------------------------------------------- /BluePillDemo_SPI_EEPROM/Core/Inc/stm32f1xx_it.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_SPI_EEPROM/Core/Inc/stm32f1xx_it.h -------------------------------------------------------------------------------- /BluePillDemo_SPI_EEPROM/Core/Src/eeprom.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_SPI_EEPROM/Core/Src/eeprom.c -------------------------------------------------------------------------------- /BluePillDemo_SPI_EEPROM/Core/Src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_SPI_EEPROM/Core/Src/main.c -------------------------------------------------------------------------------- /BluePillDemo_SPI_EEPROM/Core/Src/stm32f1xx_it.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_SPI_EEPROM/Core/Src/stm32f1xx_it.c -------------------------------------------------------------------------------- /BluePillDemo_SPI_EEPROM/Core/Src/syscalls.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_SPI_EEPROM/Core/Src/syscalls.c -------------------------------------------------------------------------------- /BluePillDemo_SPI_EEPROM/Core/Src/sysmem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_SPI_EEPROM/Core/Src/sysmem.c -------------------------------------------------------------------------------- /BluePillDemo_SPI_EEPROM/STM32F103C8TX_FLASH.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_SPI_EEPROM/STM32F103C8TX_FLASH.ld -------------------------------------------------------------------------------- /BluePillDemo_SPI_EEPROM/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_SPI_EEPROM/readme.txt -------------------------------------------------------------------------------- /BluePillDemo_SPI_EEPROM/schematic.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_SPI_EEPROM/schematic.pdf -------------------------------------------------------------------------------- /BluePillDemo_SPI_FatFS/.cproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_SPI_FatFS/.cproject -------------------------------------------------------------------------------- /BluePillDemo_SPI_FatFS/.gitignore: -------------------------------------------------------------------------------- 1 | /Debug/ 2 | -------------------------------------------------------------------------------- /BluePillDemo_SPI_FatFS/.mxproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_SPI_FatFS/.mxproject -------------------------------------------------------------------------------- /BluePillDemo_SPI_FatFS/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_SPI_FatFS/.project -------------------------------------------------------------------------------- /BluePillDemo_SPI_FatFS/BluePillDemo_SPI_FatFS.ioc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_SPI_FatFS/BluePillDemo_SPI_FatFS.ioc -------------------------------------------------------------------------------- /BluePillDemo_SPI_FatFS/Core/Inc/main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_SPI_FatFS/Core/Inc/main.h -------------------------------------------------------------------------------- /BluePillDemo_SPI_FatFS/Core/Inc/stm32f1xx_it.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_SPI_FatFS/Core/Inc/stm32f1xx_it.h -------------------------------------------------------------------------------- /BluePillDemo_SPI_FatFS/Core/Src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_SPI_FatFS/Core/Src/main.c -------------------------------------------------------------------------------- /BluePillDemo_SPI_FatFS/Core/Src/stm32f1xx_it.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_SPI_FatFS/Core/Src/stm32f1xx_it.c -------------------------------------------------------------------------------- /BluePillDemo_SPI_FatFS/Core/Src/syscalls.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_SPI_FatFS/Core/Src/syscalls.c -------------------------------------------------------------------------------- /BluePillDemo_SPI_FatFS/Core/Src/sysmem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_SPI_FatFS/Core/Src/sysmem.c -------------------------------------------------------------------------------- /BluePillDemo_SPI_FatFS/Core/Src/system_stm32f1xx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_SPI_FatFS/Core/Src/system_stm32f1xx.c -------------------------------------------------------------------------------- /BluePillDemo_SPI_FatFS/FATFS/App/fatfs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_SPI_FatFS/FATFS/App/fatfs.c -------------------------------------------------------------------------------- /BluePillDemo_SPI_FatFS/FATFS/App/fatfs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_SPI_FatFS/FATFS/App/fatfs.h -------------------------------------------------------------------------------- /BluePillDemo_SPI_FatFS/FATFS/Target/ffconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_SPI_FatFS/FATFS/Target/ffconf.h -------------------------------------------------------------------------------- /BluePillDemo_SPI_FatFS/FATFS/Target/user_diskio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_SPI_FatFS/FATFS/Target/user_diskio.c -------------------------------------------------------------------------------- /BluePillDemo_SPI_FatFS/FATFS/Target/user_diskio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_SPI_FatFS/FATFS/Target/user_diskio.h -------------------------------------------------------------------------------- /BluePillDemo_SPI_FatFS/STM32F103C8TX_FLASH.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_SPI_FatFS/STM32F103C8TX_FLASH.ld -------------------------------------------------------------------------------- /BluePillDemo_SPI_FatFS/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_SPI_FatFS/readme.txt -------------------------------------------------------------------------------- /BluePillDemo_SPI_FatFS/schematic.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_SPI_FatFS/schematic.pdf -------------------------------------------------------------------------------- /BluePillDemo_SPI_IT/.cproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_SPI_IT/.cproject -------------------------------------------------------------------------------- /BluePillDemo_SPI_IT/.gitignore: -------------------------------------------------------------------------------- 1 | /Debug/ 2 | -------------------------------------------------------------------------------- /BluePillDemo_SPI_IT/.mxproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_SPI_IT/.mxproject -------------------------------------------------------------------------------- /BluePillDemo_SPI_IT/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_SPI_IT/.project -------------------------------------------------------------------------------- /BluePillDemo_SPI_IT/BluePillDemo_SPI_IT.ioc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_SPI_IT/BluePillDemo_SPI_IT.ioc -------------------------------------------------------------------------------- /BluePillDemo_SPI_IT/Core/Inc/main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_SPI_IT/Core/Inc/main.h -------------------------------------------------------------------------------- /BluePillDemo_SPI_IT/Core/Inc/stm32f1xx_hal_conf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_SPI_IT/Core/Inc/stm32f1xx_hal_conf.h -------------------------------------------------------------------------------- /BluePillDemo_SPI_IT/Core/Inc/stm32f1xx_it.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_SPI_IT/Core/Inc/stm32f1xx_it.h -------------------------------------------------------------------------------- /BluePillDemo_SPI_IT/Core/Src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_SPI_IT/Core/Src/main.c -------------------------------------------------------------------------------- /BluePillDemo_SPI_IT/Core/Src/stm32f1xx_hal_msp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_SPI_IT/Core/Src/stm32f1xx_hal_msp.c -------------------------------------------------------------------------------- /BluePillDemo_SPI_IT/Core/Src/stm32f1xx_it.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_SPI_IT/Core/Src/stm32f1xx_it.c -------------------------------------------------------------------------------- /BluePillDemo_SPI_IT/Core/Src/syscalls.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_SPI_IT/Core/Src/syscalls.c -------------------------------------------------------------------------------- /BluePillDemo_SPI_IT/Core/Src/sysmem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_SPI_IT/Core/Src/sysmem.c -------------------------------------------------------------------------------- /BluePillDemo_SPI_IT/Core/Src/system_stm32f1xx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_SPI_IT/Core/Src/system_stm32f1xx.c -------------------------------------------------------------------------------- /BluePillDemo_SPI_IT/STM32F103C8TX_FLASH.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_SPI_IT/STM32F103C8TX_FLASH.ld -------------------------------------------------------------------------------- /BluePillDemo_SPI_IT/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_SPI_IT/readme.txt -------------------------------------------------------------------------------- /BluePillDemo_SPI_IT/schematic.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_SPI_IT/schematic.pdf -------------------------------------------------------------------------------- /BluePillDemo_SPI_Poll/.cproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_SPI_Poll/.cproject -------------------------------------------------------------------------------- /BluePillDemo_SPI_Poll/.gitignore: -------------------------------------------------------------------------------- 1 | /Debug/ 2 | -------------------------------------------------------------------------------- /BluePillDemo_SPI_Poll/.mxproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_SPI_Poll/.mxproject -------------------------------------------------------------------------------- /BluePillDemo_SPI_Poll/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_SPI_Poll/.project -------------------------------------------------------------------------------- /BluePillDemo_SPI_Poll/BluePillDemo_SPI_Poll.ioc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_SPI_Poll/BluePillDemo_SPI_Poll.ioc -------------------------------------------------------------------------------- /BluePillDemo_SPI_Poll/Core/Inc/main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_SPI_Poll/Core/Inc/main.h -------------------------------------------------------------------------------- /BluePillDemo_SPI_Poll/Core/Inc/stm32f1xx_it.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_SPI_Poll/Core/Inc/stm32f1xx_it.h -------------------------------------------------------------------------------- /BluePillDemo_SPI_Poll/Core/Src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_SPI_Poll/Core/Src/main.c -------------------------------------------------------------------------------- /BluePillDemo_SPI_Poll/Core/Src/stm32f1xx_hal_msp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_SPI_Poll/Core/Src/stm32f1xx_hal_msp.c -------------------------------------------------------------------------------- /BluePillDemo_SPI_Poll/Core/Src/stm32f1xx_it.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_SPI_Poll/Core/Src/stm32f1xx_it.c -------------------------------------------------------------------------------- /BluePillDemo_SPI_Poll/Core/Src/syscalls.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_SPI_Poll/Core/Src/syscalls.c -------------------------------------------------------------------------------- /BluePillDemo_SPI_Poll/Core/Src/sysmem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_SPI_Poll/Core/Src/sysmem.c -------------------------------------------------------------------------------- /BluePillDemo_SPI_Poll/Core/Src/system_stm32f1xx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_SPI_Poll/Core/Src/system_stm32f1xx.c -------------------------------------------------------------------------------- /BluePillDemo_SPI_Poll/STM32F103C8TX_FLASH.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_SPI_Poll/STM32F103C8TX_FLASH.ld -------------------------------------------------------------------------------- /BluePillDemo_SPI_Poll/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_SPI_Poll/readme.txt -------------------------------------------------------------------------------- /BluePillDemo_SPI_Poll/schematic.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_SPI_Poll/schematic.pdf -------------------------------------------------------------------------------- /BluePillDemo_Seatalk/.cproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_Seatalk/.cproject -------------------------------------------------------------------------------- /BluePillDemo_Seatalk/.gitignore: -------------------------------------------------------------------------------- 1 | /Debug/ 2 | -------------------------------------------------------------------------------- /BluePillDemo_Seatalk/.mxproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_Seatalk/.mxproject -------------------------------------------------------------------------------- /BluePillDemo_Seatalk/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_Seatalk/.project -------------------------------------------------------------------------------- /BluePillDemo_Seatalk/BluePillDemo_Seatalk.ioc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_Seatalk/BluePillDemo_Seatalk.ioc -------------------------------------------------------------------------------- /BluePillDemo_Seatalk/Core/Inc/main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_Seatalk/Core/Inc/main.h -------------------------------------------------------------------------------- /BluePillDemo_Seatalk/Core/Inc/seatalk.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_Seatalk/Core/Inc/seatalk.h -------------------------------------------------------------------------------- /BluePillDemo_Seatalk/Core/Inc/stm32f1xx_hal_conf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_Seatalk/Core/Inc/stm32f1xx_hal_conf.h -------------------------------------------------------------------------------- /BluePillDemo_Seatalk/Core/Inc/stm32f1xx_it.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_Seatalk/Core/Inc/stm32f1xx_it.h -------------------------------------------------------------------------------- /BluePillDemo_Seatalk/Core/Src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_Seatalk/Core/Src/main.c -------------------------------------------------------------------------------- /BluePillDemo_Seatalk/Core/Src/seatalk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_Seatalk/Core/Src/seatalk.c -------------------------------------------------------------------------------- /BluePillDemo_Seatalk/Core/Src/stm32f1xx_hal_msp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_Seatalk/Core/Src/stm32f1xx_hal_msp.c -------------------------------------------------------------------------------- /BluePillDemo_Seatalk/Core/Src/stm32f1xx_it.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_Seatalk/Core/Src/stm32f1xx_it.c -------------------------------------------------------------------------------- /BluePillDemo_Seatalk/Core/Src/syscalls.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_Seatalk/Core/Src/syscalls.c -------------------------------------------------------------------------------- /BluePillDemo_Seatalk/Core/Src/sysmem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_Seatalk/Core/Src/sysmem.c -------------------------------------------------------------------------------- /BluePillDemo_Seatalk/Core/Src/system_stm32f1xx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_Seatalk/Core/Src/system_stm32f1xx.c -------------------------------------------------------------------------------- /BluePillDemo_Seatalk/STM32F103C8TX_FLASH.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_Seatalk/STM32F103C8TX_FLASH.ld -------------------------------------------------------------------------------- /BluePillDemo_Seatalk/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_Seatalk/readme.txt -------------------------------------------------------------------------------- /BluePillDemo_Seatalk/schematic.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_Seatalk/schematic.pdf -------------------------------------------------------------------------------- /BluePillDemo_Seatalk_MQTT_Website/.cproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_Seatalk_MQTT_Website/.cproject -------------------------------------------------------------------------------- /BluePillDemo_Seatalk_MQTT_Website/.gitignore: -------------------------------------------------------------------------------- 1 | /Debug/ 2 | -------------------------------------------------------------------------------- /BluePillDemo_Seatalk_MQTT_Website/.mxproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_Seatalk_MQTT_Website/.mxproject -------------------------------------------------------------------------------- /BluePillDemo_Seatalk_MQTT_Website/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_Seatalk_MQTT_Website/.project -------------------------------------------------------------------------------- /BluePillDemo_Seatalk_MQTT_Website/Core/Inc/main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_Seatalk_MQTT_Website/Core/Inc/main.h -------------------------------------------------------------------------------- /BluePillDemo_Seatalk_MQTT_Website/Core/Inc/modem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_Seatalk_MQTT_Website/Core/Inc/modem.h -------------------------------------------------------------------------------- /BluePillDemo_Seatalk_MQTT_Website/Core/Inc/mqtt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_Seatalk_MQTT_Website/Core/Inc/mqtt.h -------------------------------------------------------------------------------- /BluePillDemo_Seatalk_MQTT_Website/Core/Src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_Seatalk_MQTT_Website/Core/Src/main.c -------------------------------------------------------------------------------- /BluePillDemo_Seatalk_MQTT_Website/Core/Src/modem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_Seatalk_MQTT_Website/Core/Src/modem.c -------------------------------------------------------------------------------- /BluePillDemo_Seatalk_MQTT_Website/Core/Src/mqtt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_Seatalk_MQTT_Website/Core/Src/mqtt.c -------------------------------------------------------------------------------- /BluePillDemo_Seatalk_MQTT_Website/Mapiator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_Seatalk_MQTT_Website/Mapiator.js -------------------------------------------------------------------------------- /BluePillDemo_Seatalk_MQTT_Website/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_Seatalk_MQTT_Website/index.html -------------------------------------------------------------------------------- /BluePillDemo_Seatalk_MQTT_Website/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_Seatalk_MQTT_Website/readme.txt -------------------------------------------------------------------------------- /BluePillDemo_Seatalk_MQTT_Website/schematic.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_Seatalk_MQTT_Website/schematic.pdf -------------------------------------------------------------------------------- /BluePillDemo_Standby_RTC/.cproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_Standby_RTC/.cproject -------------------------------------------------------------------------------- /BluePillDemo_Standby_RTC/.gitignore: -------------------------------------------------------------------------------- 1 | /Debug/ 2 | -------------------------------------------------------------------------------- /BluePillDemo_Standby_RTC/.mxproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_Standby_RTC/.mxproject -------------------------------------------------------------------------------- /BluePillDemo_Standby_RTC/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_Standby_RTC/.project -------------------------------------------------------------------------------- /BluePillDemo_Standby_RTC/Core/Inc/main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_Standby_RTC/Core/Inc/main.h -------------------------------------------------------------------------------- /BluePillDemo_Standby_RTC/Core/Inc/stm32f1xx_it.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_Standby_RTC/Core/Inc/stm32f1xx_it.h -------------------------------------------------------------------------------- /BluePillDemo_Standby_RTC/Core/Src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_Standby_RTC/Core/Src/main.c -------------------------------------------------------------------------------- /BluePillDemo_Standby_RTC/Core/Src/stm32f1xx_it.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_Standby_RTC/Core/Src/stm32f1xx_it.c -------------------------------------------------------------------------------- /BluePillDemo_Standby_RTC/Core/Src/syscalls.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_Standby_RTC/Core/Src/syscalls.c -------------------------------------------------------------------------------- /BluePillDemo_Standby_RTC/Core/Src/sysmem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_Standby_RTC/Core/Src/sysmem.c -------------------------------------------------------------------------------- /BluePillDemo_Standby_RTC/STM32F103C8TX_FLASH.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_Standby_RTC/STM32F103C8TX_FLASH.ld -------------------------------------------------------------------------------- /BluePillDemo_Standby_RTC/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_Standby_RTC/readme.txt -------------------------------------------------------------------------------- /BluePillDemo_Standby_RTC/schematic.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_Standby_RTC/schematic.pdf -------------------------------------------------------------------------------- /BluePillDemo_Standby_WKUP/.cproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_Standby_WKUP/.cproject -------------------------------------------------------------------------------- /BluePillDemo_Standby_WKUP/.gitignore: -------------------------------------------------------------------------------- 1 | /Debug/ 2 | -------------------------------------------------------------------------------- /BluePillDemo_Standby_WKUP/.mxproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_Standby_WKUP/.mxproject -------------------------------------------------------------------------------- /BluePillDemo_Standby_WKUP/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_Standby_WKUP/.project -------------------------------------------------------------------------------- /BluePillDemo_Standby_WKUP/Core/Inc/main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_Standby_WKUP/Core/Inc/main.h -------------------------------------------------------------------------------- /BluePillDemo_Standby_WKUP/Core/Inc/stm32f1xx_it.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_Standby_WKUP/Core/Inc/stm32f1xx_it.h -------------------------------------------------------------------------------- /BluePillDemo_Standby_WKUP/Core/Src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_Standby_WKUP/Core/Src/main.c -------------------------------------------------------------------------------- /BluePillDemo_Standby_WKUP/Core/Src/syscalls.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_Standby_WKUP/Core/Src/syscalls.c -------------------------------------------------------------------------------- /BluePillDemo_Standby_WKUP/Core/Src/sysmem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_Standby_WKUP/Core/Src/sysmem.c -------------------------------------------------------------------------------- /BluePillDemo_Standby_WKUP/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_Standby_WKUP/readme.txt -------------------------------------------------------------------------------- /BluePillDemo_Standby_WKUP/schematic.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_Standby_WKUP/schematic.pdf -------------------------------------------------------------------------------- /BluePillDemo_USART_DMA_Buffered/.cproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_USART_DMA_Buffered/.cproject -------------------------------------------------------------------------------- /BluePillDemo_USART_DMA_Buffered/.gitignore: -------------------------------------------------------------------------------- 1 | /Debug/ 2 | -------------------------------------------------------------------------------- /BluePillDemo_USART_DMA_Buffered/.mxproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_USART_DMA_Buffered/.mxproject -------------------------------------------------------------------------------- /BluePillDemo_USART_DMA_Buffered/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_USART_DMA_Buffered/.project -------------------------------------------------------------------------------- /BluePillDemo_USART_DMA_Buffered/Core/Inc/main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_USART_DMA_Buffered/Core/Inc/main.h -------------------------------------------------------------------------------- /BluePillDemo_USART_DMA_Buffered/Core/Src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_USART_DMA_Buffered/Core/Src/main.c -------------------------------------------------------------------------------- /BluePillDemo_USART_DMA_Buffered/ftdi cable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_USART_DMA_Buffered/ftdi cable.png -------------------------------------------------------------------------------- /BluePillDemo_USART_DMA_Buffered/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_USART_DMA_Buffered/readme.txt -------------------------------------------------------------------------------- /BluePillDemo_USART_DMA_Buffered/schematic.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_USART_DMA_Buffered/schematic.pdf -------------------------------------------------------------------------------- /BluePillDemo_USART_IT/.cproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_USART_IT/.cproject -------------------------------------------------------------------------------- /BluePillDemo_USART_IT/.gitignore: -------------------------------------------------------------------------------- 1 | /Debug/ 2 | -------------------------------------------------------------------------------- /BluePillDemo_USART_IT/.mxproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_USART_IT/.mxproject -------------------------------------------------------------------------------- /BluePillDemo_USART_IT/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_USART_IT/.project -------------------------------------------------------------------------------- /BluePillDemo_USART_IT/BluePillDemo_USART_IT.ioc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_USART_IT/BluePillDemo_USART_IT.ioc -------------------------------------------------------------------------------- /BluePillDemo_USART_IT/Core/Inc/main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_USART_IT/Core/Inc/main.h -------------------------------------------------------------------------------- /BluePillDemo_USART_IT/Core/Inc/stm32f1xx_it.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_USART_IT/Core/Inc/stm32f1xx_it.h -------------------------------------------------------------------------------- /BluePillDemo_USART_IT/Core/Src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_USART_IT/Core/Src/main.c -------------------------------------------------------------------------------- /BluePillDemo_USART_IT/Core/Src/stm32f1xx_it.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_USART_IT/Core/Src/stm32f1xx_it.c -------------------------------------------------------------------------------- /BluePillDemo_USART_IT/Core/Src/syscalls.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_USART_IT/Core/Src/syscalls.c -------------------------------------------------------------------------------- /BluePillDemo_USART_IT/Core/Src/sysmem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_USART_IT/Core/Src/sysmem.c -------------------------------------------------------------------------------- /BluePillDemo_USART_IT/STM32F103C8TX_FLASH.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_USART_IT/STM32F103C8TX_FLASH.ld -------------------------------------------------------------------------------- /BluePillDemo_USART_IT/ftdi cable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_USART_IT/ftdi cable.png -------------------------------------------------------------------------------- /BluePillDemo_USART_IT/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_USART_IT/readme.txt -------------------------------------------------------------------------------- /BluePillDemo_USART_IT/schematic.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_USART_IT/schematic.pdf -------------------------------------------------------------------------------- /BluePillDemo_USART_Poll/.cproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_USART_Poll/.cproject -------------------------------------------------------------------------------- /BluePillDemo_USART_Poll/.gitignore: -------------------------------------------------------------------------------- 1 | /Debug/ 2 | -------------------------------------------------------------------------------- /BluePillDemo_USART_Poll/.mxproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_USART_Poll/.mxproject -------------------------------------------------------------------------------- /BluePillDemo_USART_Poll/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_USART_Poll/.project -------------------------------------------------------------------------------- /BluePillDemo_USART_Poll/Core/Inc/main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_USART_Poll/Core/Inc/main.h -------------------------------------------------------------------------------- /BluePillDemo_USART_Poll/Core/Inc/stm32f1xx_it.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_USART_Poll/Core/Inc/stm32f1xx_it.h -------------------------------------------------------------------------------- /BluePillDemo_USART_Poll/Core/Src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_USART_Poll/Core/Src/main.c -------------------------------------------------------------------------------- /BluePillDemo_USART_Poll/Core/Src/stm32f1xx_it.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_USART_Poll/Core/Src/stm32f1xx_it.c -------------------------------------------------------------------------------- /BluePillDemo_USART_Poll/Core/Src/syscalls.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_USART_Poll/Core/Src/syscalls.c -------------------------------------------------------------------------------- /BluePillDemo_USART_Poll/Core/Src/sysmem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_USART_Poll/Core/Src/sysmem.c -------------------------------------------------------------------------------- /BluePillDemo_USART_Poll/STM32F103C8TX_FLASH.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_USART_Poll/STM32F103C8TX_FLASH.ld -------------------------------------------------------------------------------- /BluePillDemo_USART_Poll/ftdi cable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_USART_Poll/ftdi cable.png -------------------------------------------------------------------------------- /BluePillDemo_USART_Poll/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_USART_Poll/readme.txt -------------------------------------------------------------------------------- /BluePillDemo_USART_Poll/schematic.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_USART_Poll/schematic.pdf -------------------------------------------------------------------------------- /BluePillDemo_USB_CDC/.cproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_USB_CDC/.cproject -------------------------------------------------------------------------------- /BluePillDemo_USB_CDC/.gitignore: -------------------------------------------------------------------------------- 1 | /Debug/ 2 | -------------------------------------------------------------------------------- /BluePillDemo_USB_CDC/.mxproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_USB_CDC/.mxproject -------------------------------------------------------------------------------- /BluePillDemo_USB_CDC/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_USB_CDC/.project -------------------------------------------------------------------------------- /BluePillDemo_USB_CDC/BluePillDemo_USB_CDC.ioc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_USB_CDC/BluePillDemo_USB_CDC.ioc -------------------------------------------------------------------------------- /BluePillDemo_USB_CDC/Core/Inc/main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_USB_CDC/Core/Inc/main.h -------------------------------------------------------------------------------- /BluePillDemo_USB_CDC/Core/Inc/stm32f1xx_it.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_USB_CDC/Core/Inc/stm32f1xx_it.h -------------------------------------------------------------------------------- /BluePillDemo_USB_CDC/Core/Src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_USB_CDC/Core/Src/main.c -------------------------------------------------------------------------------- /BluePillDemo_USB_CDC/Core/Src/stm32f1xx_it.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_USB_CDC/Core/Src/stm32f1xx_it.c -------------------------------------------------------------------------------- /BluePillDemo_USB_CDC/Core/Src/syscalls.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_USB_CDC/Core/Src/syscalls.c -------------------------------------------------------------------------------- /BluePillDemo_USB_CDC/Core/Src/sysmem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_USB_CDC/Core/Src/sysmem.c -------------------------------------------------------------------------------- /BluePillDemo_USB_CDC/STM32F103C8TX_FLASH.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_USB_CDC/STM32F103C8TX_FLASH.ld -------------------------------------------------------------------------------- /BluePillDemo_USB_CDC/USB_DEVICE/App/usbd_desc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_USB_CDC/USB_DEVICE/App/usbd_desc.c -------------------------------------------------------------------------------- /BluePillDemo_USB_CDC/USB_DEVICE/App/usbd_desc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_USB_CDC/USB_DEVICE/App/usbd_desc.h -------------------------------------------------------------------------------- /BluePillDemo_USB_CDC/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_USB_CDC/readme.txt -------------------------------------------------------------------------------- /BluePillDemo_USB_HID/.cproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_USB_HID/.cproject -------------------------------------------------------------------------------- /BluePillDemo_USB_HID/.gitignore: -------------------------------------------------------------------------------- 1 | /Debug/ 2 | -------------------------------------------------------------------------------- /BluePillDemo_USB_HID/.mxproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_USB_HID/.mxproject -------------------------------------------------------------------------------- /BluePillDemo_USB_HID/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_USB_HID/.project -------------------------------------------------------------------------------- /BluePillDemo_USB_HID/BluePillDemo_USB_HID.ioc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_USB_HID/BluePillDemo_USB_HID.ioc -------------------------------------------------------------------------------- /BluePillDemo_USB_HID/Core/Inc/main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_USB_HID/Core/Inc/main.h -------------------------------------------------------------------------------- /BluePillDemo_USB_HID/Core/Inc/stm32f1xx_it.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_USB_HID/Core/Inc/stm32f1xx_it.h -------------------------------------------------------------------------------- /BluePillDemo_USB_HID/Core/Src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_USB_HID/Core/Src/main.c -------------------------------------------------------------------------------- /BluePillDemo_USB_HID/Core/Src/stm32f1xx_it.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_USB_HID/Core/Src/stm32f1xx_it.c -------------------------------------------------------------------------------- /BluePillDemo_USB_HID/Core/Src/syscalls.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_USB_HID/Core/Src/syscalls.c -------------------------------------------------------------------------------- /BluePillDemo_USB_HID/Core/Src/sysmem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_USB_HID/Core/Src/sysmem.c -------------------------------------------------------------------------------- /BluePillDemo_USB_HID/STM32F103C8TX_FLASH.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_USB_HID/STM32F103C8TX_FLASH.ld -------------------------------------------------------------------------------- /BluePillDemo_USB_HID/USB_DEVICE/App/usbd_desc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_USB_HID/USB_DEVICE/App/usbd_desc.c -------------------------------------------------------------------------------- /BluePillDemo_USB_HID/USB_DEVICE/App/usbd_desc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_USB_HID/USB_DEVICE/App/usbd_desc.h -------------------------------------------------------------------------------- /BluePillDemo_USB_HID/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_USB_HID/readme.txt -------------------------------------------------------------------------------- /BluePillDemo_WWDG/.cproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_WWDG/.cproject -------------------------------------------------------------------------------- /BluePillDemo_WWDG/.gitignore: -------------------------------------------------------------------------------- 1 | /Debug/ 2 | -------------------------------------------------------------------------------- /BluePillDemo_WWDG/.mxproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_WWDG/.mxproject -------------------------------------------------------------------------------- /BluePillDemo_WWDG/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_WWDG/.project -------------------------------------------------------------------------------- /BluePillDemo_WWDG/BluePillDemo_WWDG.ioc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_WWDG/BluePillDemo_WWDG.ioc -------------------------------------------------------------------------------- /BluePillDemo_WWDG/Core/Inc/main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_WWDG/Core/Inc/main.h -------------------------------------------------------------------------------- /BluePillDemo_WWDG/Core/Inc/stm32f1xx_hal_conf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_WWDG/Core/Inc/stm32f1xx_hal_conf.h -------------------------------------------------------------------------------- /BluePillDemo_WWDG/Core/Inc/stm32f1xx_it.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_WWDG/Core/Inc/stm32f1xx_it.h -------------------------------------------------------------------------------- /BluePillDemo_WWDG/Core/Src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_WWDG/Core/Src/main.c -------------------------------------------------------------------------------- /BluePillDemo_WWDG/Core/Src/stm32f1xx_hal_msp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_WWDG/Core/Src/stm32f1xx_hal_msp.c -------------------------------------------------------------------------------- /BluePillDemo_WWDG/Core/Src/stm32f1xx_it.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_WWDG/Core/Src/stm32f1xx_it.c -------------------------------------------------------------------------------- /BluePillDemo_WWDG/Core/Src/syscalls.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_WWDG/Core/Src/syscalls.c -------------------------------------------------------------------------------- /BluePillDemo_WWDG/Core/Src/sysmem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_WWDG/Core/Src/sysmem.c -------------------------------------------------------------------------------- /BluePillDemo_WWDG/Core/Src/system_stm32f1xx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_WWDG/Core/Src/system_stm32f1xx.c -------------------------------------------------------------------------------- /BluePillDemo_WWDG/STM32F103C8TX_FLASH.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_WWDG/STM32F103C8TX_FLASH.ld -------------------------------------------------------------------------------- /BluePillDemo_WWDG/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_WWDG/readme.txt -------------------------------------------------------------------------------- /BluePillDemo_WWDG/schematic.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/BluePillDemo_WWDG/schematic.pdf -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniwinwm/BluePillDemo/HEAD/README.md --------------------------------------------------------------------------------