diff options
author | Karl Palsson <karlp@tweak.net.au> | 2017-10-25 23:25:26 +0000 |
---|---|---|
committer | Karl Palsson <karlp@tweak.net.au> | 2017-10-25 23:25:26 +0000 |
commit | 0cf7359b78b139981877d0992a843eee1357c79e (patch) | |
tree | 33ffe2e02d915532eab6505739fdfe71a402cc46 /tests/uart-basic/Makefile.stm32l053disco | |
parent | d35d362699d1bbcf2eee48b38684612d2f0165d6 (diff) | |
download | olsndot-0cf7359b78b139981877d0992a843eee1357c79e.tar.gz olsndot-0cf7359b78b139981877d0992a843eee1357c79e.tar.bz2 olsndot-0cf7359b78b139981877d0992a843eee1357c79e.zip |
uart-basic: add functional l0 test code too.
Really need to get the rcc helpers built up and upstream!
Diffstat (limited to 'tests/uart-basic/Makefile.stm32l053disco')
-rw-r--r-- | tests/uart-basic/Makefile.stm32l053disco | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/tests/uart-basic/Makefile.stm32l053disco b/tests/uart-basic/Makefile.stm32l053disco new file mode 100644 index 0000000..5858eaf --- /dev/null +++ b/tests/uart-basic/Makefile.stm32l053disco @@ -0,0 +1,26 @@ +# This is just a makefile. +# Consider it released into the public domain, or, where not available, +# available under your choice of BSD2clause, MIT, X11, ISC or Apache2 licenses +# Karl Palsson <karlp@tweak.net.au> +BOARD = stm32l053disco +PROJECT = uart-basic-$(BOARD) +BUILD_DIR = bin-$(BOARD) + +SHARED_DIR = ../../shared + +CFILES = main-$(BOARD).c +CFILES += uart-basic.c + +VPATH += $(SHARED_DIR) + +INCLUDES += $(patsubst %,-I%, . $(SHARED_DIR)) + +OPENCM3_DIR=../../libopencm3/ + +### This section can go to an arch shared rules eventually... +DEVICE=stm32l053c8 +#OOCD_INTERFACE = stlink-v2 +#OOCD_TARGET = stm32l0x +OOCD_FILE = ../../openocd/openocd.$(BOARD).cfg + +include ../../rules.mk |