diff options
author | Giovanni Di Sirio <gdisirio@gmail.com> | 2017-11-04 17:36:33 +0000 |
---|---|---|
committer | Giovanni Di Sirio <gdisirio@gmail.com> | 2017-11-04 17:36:33 +0000 |
commit | 09b8c8abe7fb09ef6eeb49df25f1b3acbea26752 (patch) | |
tree | e4325a9148ff31af718b332dee8a348ff853149c /testhal/STM32 | |
parent | 5daf7e6cac38aded54438680676cb72ee4be7b03 (diff) | |
download | ChibiOS-09b8c8abe7fb09ef6eeb49df25f1b3acbea26752.tar.gz ChibiOS-09b8c8abe7fb09ef6eeb49df25f1b3acbea26752.tar.bz2 ChibiOS-09b8c8abe7fb09ef6eeb49df25f1b3acbea26752.zip |
Fixed CPU type.
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@10942 35acf78f-673a-0410-8e92-d51de3d6d3f4
Diffstat (limited to 'testhal/STM32')
-rw-r--r-- | testhal/STM32/STM32F1xx/USB_CDC_F107/Makefile | 11 |
1 files changed, 8 insertions, 3 deletions
diff --git a/testhal/STM32/STM32F1xx/USB_CDC_F107/Makefile b/testhal/STM32/STM32F1xx/USB_CDC_F107/Makefile index 3492cf053..8bfbdd774 100644 --- a/testhal/STM32/STM32F1xx/USB_CDC_F107/Makefile +++ b/testhal/STM32/STM32F1xx/USB_CDC_F107/Makefile @@ -60,7 +60,7 @@ endif # Stack size to be allocated to the Cortex-M process stack. This stack is
# the stack used by the main() thread.
ifeq ($(USE_PROCESS_STACKSIZE),)
- USE_PROCESS_STACKSIZE = 0x200
+ USE_PROCESS_STACKSIZE = 0x400
endif
# Stack size to the allocated to the Cortex-M main/exceptions stack. This
@@ -69,6 +69,11 @@ ifeq ($(USE_EXCEPTIONS_STACKSIZE),) USE_EXCEPTIONS_STACKSIZE = 0x400
endif
+# Enables the use of FPU (no, softfp, hard).
+ifeq ($(USE_FPU),)
+ USE_FPU = no
+endif
+
#
# Architecture or project specific options
##############################################################################
@@ -147,7 +152,7 @@ ASMXSRC = $(STARTUPASM) $(PORTASM) $(OSALASM) INCDIR = $(CHIBIOS)/os/license \
$(STARTUPINC) $(KERNINC) $(PORTINC) $(OSALINC) \
$(HALINC) $(PLATFORMINC) $(BOARDINC) $(TESTINC) \
- $(STREAMSINC) $(SHELLINC)
+ $(STREAMSINC) $(SHELLINC) $(CONFDIR)
#
# Project, sources and paths
@@ -157,7 +162,7 @@ INCDIR = $(CHIBIOS)/os/license \ # Compiler settings
#
-MCU = cortex-m0
+MCU = cortex-m3
#TRGT = arm-elf-
TRGT = arm-none-eabi-
|