diff options
author | xengineering <mail2xengineering@protonmail.com> | 2020-09-20 12:06:38 +0200 |
---|---|---|
committer | xengineering <mail2xengineering@protonmail.com> | 2020-09-20 12:06:38 +0200 |
commit | 5d54be33f95f6ba2a6984cf29898c619e5482db7 (patch) | |
tree | 099dd4ca9e0736578491cacf53467b1b3359a869 /gpio_blink/Makefile | |
parent | 9b7d53550645d693afbb338258af6bcd7b7b2539 (diff) | |
download | stm32f103c8-examples-5d54be33f95f6ba2a6984cf29898c619e5482db7.tar stm32f103c8-examples-5d54be33f95f6ba2a6984cf29898c619e5482db7.tar.zst stm32f103c8-examples-5d54be33f95f6ba2a6984cf29898c619e5482db7.zip |
Implement gpio_blink
Diffstat (limited to 'gpio_blink/Makefile')
-rw-r--r-- | gpio_blink/Makefile | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/gpio_blink/Makefile b/gpio_blink/Makefile new file mode 100644 index 0000000..038b93b --- /dev/null +++ b/gpio_blink/Makefile @@ -0,0 +1,33 @@ +PROJECT = gpio_blink +BUILD_DIR = bin + +#SHARED_DIR = ../libraries +CFILES = main.c +#CFILES += api.c +#AFILES += api-asm.S + +# TODO - you will need to edit these two lines! +DEVICE=stm32f103c8 +#OOCD_FILE = board/stm32f4discovery.cfg + +# You shouldn't have to edit anything below here. +VPATH += $(SHARED_DIR) +INCLUDES += $(patsubst %,-I%, . $(SHARED_DIR)) +OPENCM3_DIR=../libopencm3 + +include $(OPENCM3_DIR)/mk/genlink-config.mk +include ../rules.mk +include $(OPENCM3_DIR)/mk/genlink-rules.mk + + +# Black Magic Probe: + +GDB=/usr/bin/arm-none-eabi-gdb +BMP_DEVICE=/dev/ttyACM0 + +bmp: $(PROJECT).elf + $(GDB) $(PROJECT).elf \ + -ex 'set confirm off' \ + -ex 'target extended-remote $(BMP_DEVICE)' \ + -ex 'monitor swdp_scan' \ + -ex 'attach 1' |