├── .gitignore ├── README.md ├── STM32F042K6.ioc ├── STM32F042K6_CMakeLists.txt ├── STM32F769NI.ioc ├── STM32F769NI_CMakeLists.txt ├── STM32L432KC.ioc ├── STM32L432KC_CMakeLists.txt └── example ├── CMakeLists.txt ├── Drivers ├── CMSIS │ ├── Device │ │ └── ST │ │ │ └── STM32F0xx │ │ │ ├── Include │ │ │ ├── stm32f030x6.h │ │ │ ├── stm32f030x8.h │ │ │ ├── stm32f030xc.h │ │ │ ├── stm32f031x6.h │ │ │ ├── stm32f038xx.h │ │ │ ├── stm32f042x6.h │ │ │ ├── stm32f048xx.h │ │ │ ├── stm32f051x8.h │ │ │ ├── stm32f058xx.h │ │ │ ├── stm32f070x6.h │ │ │ ├── stm32f070xb.h │ │ │ ├── stm32f071xb.h │ │ │ ├── stm32f072xb.h │ │ │ ├── stm32f078xx.h │ │ │ ├── stm32f091xc.h │ │ │ ├── stm32f098xx.h │ │ │ ├── stm32f0xx.h │ │ │ └── system_stm32f0xx.h │ │ │ └── Source │ │ │ └── Templates │ │ │ ├── gcc │ │ │ └── startup_stm32f042x6.s │ │ │ └── system_stm32f0xx.c │ └── Include │ │ ├── arm_common_tables.h │ │ ├── arm_const_structs.h │ │ ├── arm_math.h │ │ ├── cmsis_armcc.h │ │ ├── cmsis_armcc_V6.h │ │ ├── cmsis_gcc.h │ │ ├── core_cm0.h │ │ ├── core_cm0plus.h │ │ ├── core_cm3.h │ │ ├── core_cm4.h │ │ ├── core_cm7.h │ │ ├── core_cmFunc.h │ │ ├── core_cmInstr.h │ │ ├── core_cmSimd.h │ │ ├── core_sc000.h │ │ └── core_sc300.h └── STM32F0xx_HAL_Driver │ ├── Inc │ ├── Legacy │ │ └── stm32_hal_legacy.h │ ├── stm32f0xx_hal.h │ ├── stm32f0xx_hal_cortex.h │ ├── stm32f0xx_hal_def.h │ ├── stm32f0xx_hal_dma.h │ ├── stm32f0xx_hal_dma_ex.h │ ├── stm32f0xx_hal_flash.h │ ├── stm32f0xx_hal_flash_ex.h │ ├── stm32f0xx_hal_gpio.h │ ├── stm32f0xx_hal_gpio_ex.h │ ├── stm32f0xx_hal_i2c.h │ ├── stm32f0xx_hal_i2c_ex.h │ ├── stm32f0xx_hal_pwr.h │ ├── stm32f0xx_hal_pwr_ex.h │ ├── stm32f0xx_hal_rcc.h │ ├── stm32f0xx_hal_rcc_ex.h │ ├── stm32f0xx_hal_tim.h │ └── stm32f0xx_hal_tim_ex.h │ └── Src │ ├── stm32f0xx_hal.c │ ├── stm32f0xx_hal_cortex.c │ ├── stm32f0xx_hal_dma.c │ ├── stm32f0xx_hal_flash.c │ ├── stm32f0xx_hal_flash_ex.c │ ├── stm32f0xx_hal_gpio.c │ ├── stm32f0xx_hal_i2c.c │ ├── stm32f0xx_hal_i2c_ex.c │ ├── stm32f0xx_hal_pwr.c │ ├── stm32f0xx_hal_pwr_ex.c │ ├── stm32f0xx_hal_rcc.c │ ├── stm32f0xx_hal_rcc_ex.c │ ├── stm32f0xx_hal_tim.c │ └── stm32f0xx_hal_tim_ex.c ├── Inc ├── mxconstants.h ├── stm32f0xx_hal_conf.h └── stm32f0xx_it.h ├── STM32F042K6Tx_FLASH.ld ├── Src ├── main.c ├── stm32f0xx_hal_msp.c └── stm32f0xx_it.c └── f042test.ioc /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windsorschmidt/stm32cubemx-cmake/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windsorschmidt/stm32cubemx-cmake/HEAD/README.md -------------------------------------------------------------------------------- /STM32F042K6.ioc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windsorschmidt/stm32cubemx-cmake/HEAD/STM32F042K6.ioc -------------------------------------------------------------------------------- /STM32F042K6_CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windsorschmidt/stm32cubemx-cmake/HEAD/STM32F042K6_CMakeLists.txt -------------------------------------------------------------------------------- /STM32F769NI.ioc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windsorschmidt/stm32cubemx-cmake/HEAD/STM32F769NI.ioc -------------------------------------------------------------------------------- /STM32F769NI_CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windsorschmidt/stm32cubemx-cmake/HEAD/STM32F769NI_CMakeLists.txt -------------------------------------------------------------------------------- /STM32L432KC.ioc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windsorschmidt/stm32cubemx-cmake/HEAD/STM32L432KC.ioc -------------------------------------------------------------------------------- /STM32L432KC_CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windsorschmidt/stm32cubemx-cmake/HEAD/STM32L432KC_CMakeLists.txt -------------------------------------------------------------------------------- /example/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windsorschmidt/stm32cubemx-cmake/HEAD/example/CMakeLists.txt -------------------------------------------------------------------------------- /example/Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f030x6.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windsorschmidt/stm32cubemx-cmake/HEAD/example/Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f030x6.h -------------------------------------------------------------------------------- /example/Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f030x8.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windsorschmidt/stm32cubemx-cmake/HEAD/example/Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f030x8.h -------------------------------------------------------------------------------- /example/Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f030xc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windsorschmidt/stm32cubemx-cmake/HEAD/example/Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f030xc.h -------------------------------------------------------------------------------- /example/Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f031x6.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windsorschmidt/stm32cubemx-cmake/HEAD/example/Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f031x6.h -------------------------------------------------------------------------------- /example/Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f038xx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windsorschmidt/stm32cubemx-cmake/HEAD/example/Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f038xx.h -------------------------------------------------------------------------------- /example/Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f042x6.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windsorschmidt/stm32cubemx-cmake/HEAD/example/Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f042x6.h -------------------------------------------------------------------------------- /example/Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f048xx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windsorschmidt/stm32cubemx-cmake/HEAD/example/Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f048xx.h -------------------------------------------------------------------------------- /example/Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f051x8.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windsorschmidt/stm32cubemx-cmake/HEAD/example/Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f051x8.h -------------------------------------------------------------------------------- /example/Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f058xx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windsorschmidt/stm32cubemx-cmake/HEAD/example/Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f058xx.h -------------------------------------------------------------------------------- /example/Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f070x6.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windsorschmidt/stm32cubemx-cmake/HEAD/example/Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f070x6.h -------------------------------------------------------------------------------- /example/Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f070xb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windsorschmidt/stm32cubemx-cmake/HEAD/example/Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f070xb.h -------------------------------------------------------------------------------- /example/Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f071xb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windsorschmidt/stm32cubemx-cmake/HEAD/example/Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f071xb.h -------------------------------------------------------------------------------- /example/Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f072xb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windsorschmidt/stm32cubemx-cmake/HEAD/example/Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f072xb.h -------------------------------------------------------------------------------- /example/Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f078xx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windsorschmidt/stm32cubemx-cmake/HEAD/example/Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f078xx.h -------------------------------------------------------------------------------- /example/Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f091xc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windsorschmidt/stm32cubemx-cmake/HEAD/example/Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f091xc.h -------------------------------------------------------------------------------- /example/Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f098xx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windsorschmidt/stm32cubemx-cmake/HEAD/example/Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f098xx.h -------------------------------------------------------------------------------- /example/Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f0xx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windsorschmidt/stm32cubemx-cmake/HEAD/example/Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f0xx.h -------------------------------------------------------------------------------- /example/Drivers/CMSIS/Device/ST/STM32F0xx/Include/system_stm32f0xx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windsorschmidt/stm32cubemx-cmake/HEAD/example/Drivers/CMSIS/Device/ST/STM32F0xx/Include/system_stm32f0xx.h -------------------------------------------------------------------------------- /example/Drivers/CMSIS/Device/ST/STM32F0xx/Source/Templates/gcc/startup_stm32f042x6.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windsorschmidt/stm32cubemx-cmake/HEAD/example/Drivers/CMSIS/Device/ST/STM32F0xx/Source/Templates/gcc/startup_stm32f042x6.s -------------------------------------------------------------------------------- /example/Drivers/CMSIS/Device/ST/STM32F0xx/Source/Templates/system_stm32f0xx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windsorschmidt/stm32cubemx-cmake/HEAD/example/Drivers/CMSIS/Device/ST/STM32F0xx/Source/Templates/system_stm32f0xx.c -------------------------------------------------------------------------------- /example/Drivers/CMSIS/Include/arm_common_tables.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windsorschmidt/stm32cubemx-cmake/HEAD/example/Drivers/CMSIS/Include/arm_common_tables.h -------------------------------------------------------------------------------- /example/Drivers/CMSIS/Include/arm_const_structs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windsorschmidt/stm32cubemx-cmake/HEAD/example/Drivers/CMSIS/Include/arm_const_structs.h -------------------------------------------------------------------------------- /example/Drivers/CMSIS/Include/arm_math.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windsorschmidt/stm32cubemx-cmake/HEAD/example/Drivers/CMSIS/Include/arm_math.h -------------------------------------------------------------------------------- /example/Drivers/CMSIS/Include/cmsis_armcc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windsorschmidt/stm32cubemx-cmake/HEAD/example/Drivers/CMSIS/Include/cmsis_armcc.h -------------------------------------------------------------------------------- /example/Drivers/CMSIS/Include/cmsis_armcc_V6.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windsorschmidt/stm32cubemx-cmake/HEAD/example/Drivers/CMSIS/Include/cmsis_armcc_V6.h -------------------------------------------------------------------------------- /example/Drivers/CMSIS/Include/cmsis_gcc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windsorschmidt/stm32cubemx-cmake/HEAD/example/Drivers/CMSIS/Include/cmsis_gcc.h -------------------------------------------------------------------------------- /example/Drivers/CMSIS/Include/core_cm0.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windsorschmidt/stm32cubemx-cmake/HEAD/example/Drivers/CMSIS/Include/core_cm0.h -------------------------------------------------------------------------------- /example/Drivers/CMSIS/Include/core_cm0plus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windsorschmidt/stm32cubemx-cmake/HEAD/example/Drivers/CMSIS/Include/core_cm0plus.h -------------------------------------------------------------------------------- /example/Drivers/CMSIS/Include/core_cm3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windsorschmidt/stm32cubemx-cmake/HEAD/example/Drivers/CMSIS/Include/core_cm3.h -------------------------------------------------------------------------------- /example/Drivers/CMSIS/Include/core_cm4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windsorschmidt/stm32cubemx-cmake/HEAD/example/Drivers/CMSIS/Include/core_cm4.h -------------------------------------------------------------------------------- /example/Drivers/CMSIS/Include/core_cm7.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windsorschmidt/stm32cubemx-cmake/HEAD/example/Drivers/CMSIS/Include/core_cm7.h -------------------------------------------------------------------------------- /example/Drivers/CMSIS/Include/core_cmFunc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windsorschmidt/stm32cubemx-cmake/HEAD/example/Drivers/CMSIS/Include/core_cmFunc.h -------------------------------------------------------------------------------- /example/Drivers/CMSIS/Include/core_cmInstr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windsorschmidt/stm32cubemx-cmake/HEAD/example/Drivers/CMSIS/Include/core_cmInstr.h -------------------------------------------------------------------------------- /example/Drivers/CMSIS/Include/core_cmSimd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windsorschmidt/stm32cubemx-cmake/HEAD/example/Drivers/CMSIS/Include/core_cmSimd.h -------------------------------------------------------------------------------- /example/Drivers/CMSIS/Include/core_sc000.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windsorschmidt/stm32cubemx-cmake/HEAD/example/Drivers/CMSIS/Include/core_sc000.h -------------------------------------------------------------------------------- /example/Drivers/CMSIS/Include/core_sc300.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windsorschmidt/stm32cubemx-cmake/HEAD/example/Drivers/CMSIS/Include/core_sc300.h -------------------------------------------------------------------------------- /example/Drivers/STM32F0xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windsorschmidt/stm32cubemx-cmake/HEAD/example/Drivers/STM32F0xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h -------------------------------------------------------------------------------- /example/Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windsorschmidt/stm32cubemx-cmake/HEAD/example/Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal.h -------------------------------------------------------------------------------- /example/Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_cortex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windsorschmidt/stm32cubemx-cmake/HEAD/example/Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_cortex.h -------------------------------------------------------------------------------- /example/Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_def.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windsorschmidt/stm32cubemx-cmake/HEAD/example/Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_def.h -------------------------------------------------------------------------------- /example/Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_dma.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windsorschmidt/stm32cubemx-cmake/HEAD/example/Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_dma.h -------------------------------------------------------------------------------- /example/Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_dma_ex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windsorschmidt/stm32cubemx-cmake/HEAD/example/Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_dma_ex.h -------------------------------------------------------------------------------- /example/Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_flash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windsorschmidt/stm32cubemx-cmake/HEAD/example/Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_flash.h -------------------------------------------------------------------------------- /example/Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_flash_ex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windsorschmidt/stm32cubemx-cmake/HEAD/example/Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_flash_ex.h -------------------------------------------------------------------------------- /example/Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_gpio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windsorschmidt/stm32cubemx-cmake/HEAD/example/Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_gpio.h -------------------------------------------------------------------------------- /example/Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_gpio_ex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windsorschmidt/stm32cubemx-cmake/HEAD/example/Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_gpio_ex.h -------------------------------------------------------------------------------- /example/Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_i2c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windsorschmidt/stm32cubemx-cmake/HEAD/example/Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_i2c.h -------------------------------------------------------------------------------- /example/Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_i2c_ex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windsorschmidt/stm32cubemx-cmake/HEAD/example/Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_i2c_ex.h -------------------------------------------------------------------------------- /example/Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_pwr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windsorschmidt/stm32cubemx-cmake/HEAD/example/Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_pwr.h -------------------------------------------------------------------------------- /example/Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_pwr_ex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windsorschmidt/stm32cubemx-cmake/HEAD/example/Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_pwr_ex.h -------------------------------------------------------------------------------- /example/Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_rcc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windsorschmidt/stm32cubemx-cmake/HEAD/example/Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_rcc.h -------------------------------------------------------------------------------- /example/Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_rcc_ex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windsorschmidt/stm32cubemx-cmake/HEAD/example/Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_rcc_ex.h -------------------------------------------------------------------------------- /example/Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_tim.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windsorschmidt/stm32cubemx-cmake/HEAD/example/Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_tim.h -------------------------------------------------------------------------------- /example/Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_tim_ex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windsorschmidt/stm32cubemx-cmake/HEAD/example/Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_tim_ex.h -------------------------------------------------------------------------------- /example/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windsorschmidt/stm32cubemx-cmake/HEAD/example/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal.c -------------------------------------------------------------------------------- /example/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_cortex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windsorschmidt/stm32cubemx-cmake/HEAD/example/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_cortex.c -------------------------------------------------------------------------------- /example/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_dma.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windsorschmidt/stm32cubemx-cmake/HEAD/example/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_dma.c -------------------------------------------------------------------------------- /example/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_flash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windsorschmidt/stm32cubemx-cmake/HEAD/example/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_flash.c -------------------------------------------------------------------------------- /example/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_flash_ex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windsorschmidt/stm32cubemx-cmake/HEAD/example/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_flash_ex.c -------------------------------------------------------------------------------- /example/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_gpio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windsorschmidt/stm32cubemx-cmake/HEAD/example/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_gpio.c -------------------------------------------------------------------------------- /example/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_i2c.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windsorschmidt/stm32cubemx-cmake/HEAD/example/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_i2c.c -------------------------------------------------------------------------------- /example/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_i2c_ex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windsorschmidt/stm32cubemx-cmake/HEAD/example/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_i2c_ex.c -------------------------------------------------------------------------------- /example/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_pwr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windsorschmidt/stm32cubemx-cmake/HEAD/example/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_pwr.c -------------------------------------------------------------------------------- /example/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_pwr_ex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windsorschmidt/stm32cubemx-cmake/HEAD/example/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_pwr_ex.c -------------------------------------------------------------------------------- /example/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_rcc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windsorschmidt/stm32cubemx-cmake/HEAD/example/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_rcc.c -------------------------------------------------------------------------------- /example/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_rcc_ex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windsorschmidt/stm32cubemx-cmake/HEAD/example/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_rcc_ex.c -------------------------------------------------------------------------------- /example/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_tim.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windsorschmidt/stm32cubemx-cmake/HEAD/example/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_tim.c -------------------------------------------------------------------------------- /example/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_tim_ex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windsorschmidt/stm32cubemx-cmake/HEAD/example/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_tim_ex.c -------------------------------------------------------------------------------- /example/Inc/mxconstants.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windsorschmidt/stm32cubemx-cmake/HEAD/example/Inc/mxconstants.h -------------------------------------------------------------------------------- /example/Inc/stm32f0xx_hal_conf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windsorschmidt/stm32cubemx-cmake/HEAD/example/Inc/stm32f0xx_hal_conf.h -------------------------------------------------------------------------------- /example/Inc/stm32f0xx_it.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windsorschmidt/stm32cubemx-cmake/HEAD/example/Inc/stm32f0xx_it.h -------------------------------------------------------------------------------- /example/STM32F042K6Tx_FLASH.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windsorschmidt/stm32cubemx-cmake/HEAD/example/STM32F042K6Tx_FLASH.ld -------------------------------------------------------------------------------- /example/Src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windsorschmidt/stm32cubemx-cmake/HEAD/example/Src/main.c -------------------------------------------------------------------------------- /example/Src/stm32f0xx_hal_msp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windsorschmidt/stm32cubemx-cmake/HEAD/example/Src/stm32f0xx_hal_msp.c -------------------------------------------------------------------------------- /example/Src/stm32f0xx_it.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windsorschmidt/stm32cubemx-cmake/HEAD/example/Src/stm32f0xx_it.c -------------------------------------------------------------------------------- /example/f042test.ioc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windsorschmidt/stm32cubemx-cmake/HEAD/example/f042test.ioc --------------------------------------------------------------------------------