├── .gitignore ├── .gitmodules ├── LICENSE ├── README.md ├── my-project ├── Makefile └── my-project.c └── rules.mk /.gitignore: -------------------------------------------------------------------------------- 1 | bin/ 2 | *.elf 3 | *.bin 4 | generated.*.ld 5 | -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lowleveltv/stm32-bluepill-blink/HEAD/.gitmodules -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lowleveltv/stm32-bluepill-blink/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lowleveltv/stm32-bluepill-blink/HEAD/README.md -------------------------------------------------------------------------------- /my-project/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lowleveltv/stm32-bluepill-blink/HEAD/my-project/Makefile -------------------------------------------------------------------------------- /my-project/my-project.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lowleveltv/stm32-bluepill-blink/HEAD/my-project/my-project.c -------------------------------------------------------------------------------- /rules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lowleveltv/stm32-bluepill-blink/HEAD/rules.mk --------------------------------------------------------------------------------