From aa756bb6fa3708a65e3478bd85cc3b4b9a128784 Mon Sep 17 00:00:00 2001 From: Mike Szczys Date: Sat, 16 Jun 2012 20:19:40 -0500 Subject: [PATCH] Explicityly include stm32f0xx_conf.h in main Make file (make STM example code compile) --- Makefile | 1 + 1 file changed, 1 insertion(+) diff --git a/Makefile b/Makefile index 962f6f5..a8f1277 100755 --- a/Makefile +++ b/Makefile @@ -32,6 +32,7 @@ ROOT=$(shell pwd) CFLAGS += -Iinc -I$(STD_PERIPH_LIB) -I$(STD_PERIPH_LIB)/CMSIS/Device/ST/STM32F0xx/Include CFLAGS += -I$(STD_PERIPH_LIB)/CMSIS/Include -I$(STD_PERIPH_LIB)/STM32F0xx_StdPeriph_Driver/inc +CFLAGS += -include$(STD_PERIPH_LIB)/stm32f0xx_conf.h SRCS += Device/startup_stm32f0xx.s # add startup file to build