You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
10 lines
200 B
10 lines
200 B
7 years ago
|
# :set noet
|
||
|
PROJ_NAME = comma
|
||
|
CFLAGS = -g -Wall
|
||
|
|
||
|
CFLAGS += -mlittle-endian -mthumb -mcpu=cortex-m3
|
||
|
CFLAGS += -msoft-float -DSTM32F2 -DSTM32F205xx
|
||
|
STARTUP_FILE = startup_stm32f205xx
|
||
|
|
||
|
include build.mk
|