summaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
authormux <freelancer.c@gmail.com>2014-01-21 15:57:01 +0200
committermux <freelancer.c@gmail.com>2014-01-21 15:57:01 +0200
commit4578ced20916c67c9c76124316d8c3faba3642bf (patch)
tree25287cd62e2ffcc646643b38ccab6bc96412aca0
parente9c01dea3270da151b141201aa415b583cb5e583 (diff)
downloadmicropython-4578ced20916c67c9c76124316d8c3faba3642bf.tar.gz
micropython-4578ced20916c67c9c76124316d8c3faba3642bf.zip
Add OSC_VALUE to Makefile
* Add the option to pass OSC frequency on command line.
-rw-r--r--stm/Makefile3
1 files changed, 2 insertions, 1 deletions
diff --git a/stm/Makefile b/stm/Makefile
index 3ea1472dc6..f55a9386c6 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