Fixed CPU type.

git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@10942 35acf78f-673a-0410-8e92-d51de3d6d3f4
This commit is contained in:
Giovanni Di Sirio 2017-11-04 17:36:33 +00:00
parent 5daf7e6cac
commit 09b8c8abe7
1 changed files with 8 additions and 3 deletions

View File

@ -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-