├── .gitignore ├── Makefile ├── README.md ├── STM32F103X8_FLASH.ld ├── cmsis ├── 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 ├── include ├── stm32f100xb.h ├── stm32f100xe.h ├── stm32f101x6.h ├── stm32f101xb.h ├── stm32f101xe.h ├── stm32f101xg.h ├── stm32f102x6.h ├── stm32f102xb.h ├── stm32f103x6.h ├── stm32f103xb.h ├── stm32f103xe.h ├── stm32f103xg.h ├── stm32f105xc.h ├── stm32f107xc.h ├── stm32f1xx.h └── system_stm32f1xx.h ├── openocd.cfg ├── ref ├── stm32f1 reference.pdf └── stm32f103c8.pdf └── src ├── main.c ├── startup_stm32f103x6.s └── system_stm32f1xx.c /.gitignore: -------------------------------------------------------------------------------- 1 | bin 2 | obj 3 | 4 | *.sw* 5 | -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcuzner/stm32f103c8-blink/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcuzner/stm32f103c8-blink/HEAD/README.md -------------------------------------------------------------------------------- /STM32F103X8_FLASH.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcuzner/stm32f103c8-blink/HEAD/STM32F103X8_FLASH.ld -------------------------------------------------------------------------------- /cmsis/arm_common_tables.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcuzner/stm32f103c8-blink/HEAD/cmsis/arm_common_tables.h -------------------------------------------------------------------------------- /cmsis/arm_const_structs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcuzner/stm32f103c8-blink/HEAD/cmsis/arm_const_structs.h -------------------------------------------------------------------------------- /cmsis/arm_math.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcuzner/stm32f103c8-blink/HEAD/cmsis/arm_math.h -------------------------------------------------------------------------------- /cmsis/cmsis_armcc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcuzner/stm32f103c8-blink/HEAD/cmsis/cmsis_armcc.h -------------------------------------------------------------------------------- /cmsis/cmsis_armcc_V6.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcuzner/stm32f103c8-blink/HEAD/cmsis/cmsis_armcc_V6.h -------------------------------------------------------------------------------- /cmsis/cmsis_gcc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcuzner/stm32f103c8-blink/HEAD/cmsis/cmsis_gcc.h -------------------------------------------------------------------------------- /cmsis/core_cm0.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcuzner/stm32f103c8-blink/HEAD/cmsis/core_cm0.h -------------------------------------------------------------------------------- /cmsis/core_cm0plus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcuzner/stm32f103c8-blink/HEAD/cmsis/core_cm0plus.h -------------------------------------------------------------------------------- /cmsis/core_cm3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcuzner/stm32f103c8-blink/HEAD/cmsis/core_cm3.h -------------------------------------------------------------------------------- /cmsis/core_cm4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcuzner/stm32f103c8-blink/HEAD/cmsis/core_cm4.h -------------------------------------------------------------------------------- /cmsis/core_cm7.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcuzner/stm32f103c8-blink/HEAD/cmsis/core_cm7.h -------------------------------------------------------------------------------- /cmsis/core_cmFunc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcuzner/stm32f103c8-blink/HEAD/cmsis/core_cmFunc.h -------------------------------------------------------------------------------- /cmsis/core_cmInstr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcuzner/stm32f103c8-blink/HEAD/cmsis/core_cmInstr.h -------------------------------------------------------------------------------- /cmsis/core_cmSimd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcuzner/stm32f103c8-blink/HEAD/cmsis/core_cmSimd.h -------------------------------------------------------------------------------- /cmsis/core_sc000.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcuzner/stm32f103c8-blink/HEAD/cmsis/core_sc000.h -------------------------------------------------------------------------------- /cmsis/core_sc300.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcuzner/stm32f103c8-blink/HEAD/cmsis/core_sc300.h -------------------------------------------------------------------------------- /include/stm32f100xb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcuzner/stm32f103c8-blink/HEAD/include/stm32f100xb.h -------------------------------------------------------------------------------- /include/stm32f100xe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcuzner/stm32f103c8-blink/HEAD/include/stm32f100xe.h -------------------------------------------------------------------------------- /include/stm32f101x6.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcuzner/stm32f103c8-blink/HEAD/include/stm32f101x6.h -------------------------------------------------------------------------------- /include/stm32f101xb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcuzner/stm32f103c8-blink/HEAD/include/stm32f101xb.h -------------------------------------------------------------------------------- /include/stm32f101xe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcuzner/stm32f103c8-blink/HEAD/include/stm32f101xe.h -------------------------------------------------------------------------------- /include/stm32f101xg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcuzner/stm32f103c8-blink/HEAD/include/stm32f101xg.h -------------------------------------------------------------------------------- /include/stm32f102x6.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcuzner/stm32f103c8-blink/HEAD/include/stm32f102x6.h -------------------------------------------------------------------------------- /include/stm32f102xb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcuzner/stm32f103c8-blink/HEAD/include/stm32f102xb.h -------------------------------------------------------------------------------- /include/stm32f103x6.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcuzner/stm32f103c8-blink/HEAD/include/stm32f103x6.h -------------------------------------------------------------------------------- /include/stm32f103xb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcuzner/stm32f103c8-blink/HEAD/include/stm32f103xb.h -------------------------------------------------------------------------------- /include/stm32f103xe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcuzner/stm32f103c8-blink/HEAD/include/stm32f103xe.h -------------------------------------------------------------------------------- /include/stm32f103xg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcuzner/stm32f103c8-blink/HEAD/include/stm32f103xg.h -------------------------------------------------------------------------------- /include/stm32f105xc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcuzner/stm32f103c8-blink/HEAD/include/stm32f105xc.h -------------------------------------------------------------------------------- /include/stm32f107xc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcuzner/stm32f103c8-blink/HEAD/include/stm32f107xc.h -------------------------------------------------------------------------------- /include/stm32f1xx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcuzner/stm32f103c8-blink/HEAD/include/stm32f1xx.h -------------------------------------------------------------------------------- /include/system_stm32f1xx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcuzner/stm32f103c8-blink/HEAD/include/system_stm32f1xx.h -------------------------------------------------------------------------------- /openocd.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcuzner/stm32f103c8-blink/HEAD/openocd.cfg -------------------------------------------------------------------------------- /ref/stm32f1 reference.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcuzner/stm32f103c8-blink/HEAD/ref/stm32f1 reference.pdf -------------------------------------------------------------------------------- /ref/stm32f103c8.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcuzner/stm32f103c8-blink/HEAD/ref/stm32f103c8.pdf -------------------------------------------------------------------------------- /src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcuzner/stm32f103c8-blink/HEAD/src/main.c -------------------------------------------------------------------------------- /src/startup_stm32f103x6.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcuzner/stm32f103c8-blink/HEAD/src/startup_stm32f103x6.s -------------------------------------------------------------------------------- /src/system_stm32f1xx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcuzner/stm32f103c8-blink/HEAD/src/system_stm32f1xx.c --------------------------------------------------------------------------------