From 4578ced20916c67c9c76124316d8c3faba3642bf Mon Sep 17 00:00:00 2001 From: mux Date: Tue, 21 Jan 2014 15:57:01 +0200 Subject: [PATCH] Add OSC_VALUE to Makefile * Add the option to pass OSC frequency on command line. --- stm/Makefile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/stm/Makefile b/stm/Makefile index 3ea1472dc..f55a9386c 100644 --- a/stm/Makefile +++ b/stm/Makefile @@ -15,6 +15,7 @@ FATFSSRC=fatfs CC3KSRC=cc3k DFU=../tools/dfu.py TARGET=PYBOARD +OSC_VALUE=8000000 AS = arm-none-eabi-as CC = arm-none-eabi-gcc @@ -22,7 +23,7 @@ LD = arm-none-eabi-ld OBJCOPY = arm-none-eabi-objcopy SIZE = arm-none-eabi-size -CFLAGS_CORTEX_M4 = -mthumb -mtune=cortex-m4 -mabi=aapcs-linux -mcpu=cortex-m4 -mfpu=fpv4-sp-d16 -mfloat-abi=hard -fsingle-precision-constant -Wdouble-promotion -DSTM32F40_41xxx -DUSE_STDPERIPH_DRIVER -DHSE_VALUE=8000000 +CFLAGS_CORTEX_M4 = -mthumb -mtune=cortex-m4 -mabi=aapcs-linux -mcpu=cortex-m4 -mfpu=fpv4-sp-d16 -mfloat-abi=hard -fsingle-precision-constant -Wdouble-promotion -DSTM32F40_41xxx -DUSE_STDPERIPH_DRIVER -DHSE_VALUE=$(OSC_VALUE) CFLAGS = -I. -I$(PY_SRC) -I$(FATFSSRC) -I$(CMSIS) -I$(STMSRC) -Wall -ansi -std=gnu99 $(CFLAGS_CORTEX_M4) -D$(TARGET) #CFLAGS += -I$(STMOTGSRC) -DUSE_HOST_MODE -DUSE_OTG_MODE