uart-basic: add f0, requires newest code too
stupid f072 disco doesn't have usart2 available
This commit is contained in:
parent
a549503ade
commit
d35d362699
3 changed files with 91 additions and 1 deletions
26
tests/uart-basic/Makefile.stm32f072disco
Normal file
26
tests/uart-basic/Makefile.stm32f072disco
Normal file
|
|
@ -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 = stm32f072disco
|
||||
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=stm32f072rb
|
||||
#OOCD_INTERFACE = stlink-v2
|
||||
#OOCD_TARGET = stm32f0x
|
||||
OOCD_FILE = ../../openocd/openocd.$(BOARD).cfg
|
||||
|
||||
include ../../rules.mk
|
||||
Loading…
Add table
Add a link
Reference in a new issue