From 9435a85605d7efc75642491c85b0942bd558fcec Mon Sep 17 00:00:00 2001 From: xengineering Date: Sun, 25 Oct 2020 12:49:35 +0100 Subject: Add usart_irq Code --- usart_irq/Makefile | 34 ++++++++++++++++++++++++++++++++++ 1 file changed, 34 insertions(+) create mode 100644 usart_irq/Makefile (limited to 'usart_irq/Makefile') diff --git a/usart_irq/Makefile b/usart_irq/Makefile new file mode 100644 index 0000000..09b7d30 --- /dev/null +++ b/usart_irq/Makefile @@ -0,0 +1,34 @@ +PROJECT = usart_irq +BUILD_DIR = bin + +SHARED_DIR = ../libraries +CFILES = main.c +CFILES += usart.c fifo.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' + -- cgit v1.2.3-70-g09d2