1
0
This commit is contained in:
2021-05-01 20:06:51 +03:00
commit 323a9c3a55
11 changed files with 427 additions and 0 deletions

22
Makefile Normal file
View File

@@ -0,0 +1,22 @@
V=1
DEBUG=1
PROJECT = dht_test
BUILD_DIR = bin
#SHARED_DIR = ../my-common-code
CFILES = main.c
#CFILES += api.c
#AFILES += api-asm.S
# TODO - you will need to edit these two lines!
DEVICE=stm32f103rcbt6
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