diff options
author | Joel Bodenmann <joel@seriouslyembedded.com> | 2015-07-12 03:23:54 +0200 |
---|---|---|
committer | Joel Bodenmann <joel@seriouslyembedded.com> | 2015-07-12 03:23:54 +0200 |
commit | 0367815bab13f61cd0c309f0755c9619dc4e49b0 (patch) | |
tree | 1ad2a977b969c8067fa9991d72b105036842dc70 /tools/gmake_scripts/cpu_stm32m7.mk | |
parent | 324ab8a11adb6526a06333b3d11d7314ee48a4f8 (diff) | |
parent | 3e6c7accdc2f89908389df126f3fb7294eb9be45 (diff) | |
download | uGFX-0367815bab13f61cd0c309f0755c9619dc4e49b0.tar.gz uGFX-0367815bab13f61cd0c309f0755c9619dc4e49b0.tar.bz2 uGFX-0367815bab13f61cd0c309f0755c9619dc4e49b0.zip |
Merge branch 'master' into Alternate_Raw32_Scheduler
Conflicts:
src/gos/gos_raw32.c
Diffstat (limited to 'tools/gmake_scripts/cpu_stm32m7.mk')
-rw-r--r-- | tools/gmake_scripts/cpu_stm32m7.mk | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/tools/gmake_scripts/cpu_stm32m7.mk b/tools/gmake_scripts/cpu_stm32m7.mk new file mode 100644 index 00000000..0a59e24f --- /dev/null +++ b/tools/gmake_scripts/cpu_stm32m7.mk @@ -0,0 +1,24 @@ +# +# This file is subject to the terms of the GFX License. If a copy of +# the license was not distributed with this file, you can obtain one at: +# +# http://ugfx.org/license.html +# + +# +# See readme.txt for the make API +# + +# Requirements: +# +# NONE +# + +#SRCFLAGS += -mcpu=cortex-m4 -mfloat-abi=hard -mfpu=fpv4-sp-d16 -fsingle-precision-constant -falign-functions=16 +#LDFLAGS += -mcpu=cortex-m4 -mfloat-abi=hard -mfpu=fpv4-sp-d16 -fsingle-precision-constant -falign-functions=16 +#DEFS += CORTEX_USE_FPU=TRUE +#LIBS += m +SRCFLAGS += -mcpu=cortex-m7 -falign-functions=16 +LDFLAGS += -mcpu=cortex-m7 +DEFS += CORTEX_USE_FPU=FALSE + |