diff options
author | Uladzimir Pylinski <barthess@yandex.ru> | 2016-10-31 13:38:19 +0000 |
---|---|---|
committer | Uladzimir Pylinski <barthess@yandex.ru> | 2016-10-31 13:38:19 +0000 |
commit | f7809b2ec0ba18425462345d36c715b7a6250b9c (patch) | |
tree | 3b56bbd42b1cd39afd754b38590c2f715a8820a8 | |
parent | 6322caf5e879bd9f1e22bdd7af313589715536a5 (diff) | |
download | ChibiOS-f7809b2ec0ba18425462345d36c715b7a6250b9c.tar.gz ChibiOS-f7809b2ec0ba18425462345d36c715b7a6250b9c.tar.bz2 ChibiOS-f7809b2ec0ba18425462345d36c715b7a6250b9c.zip |
STM32F7x. Linker scripts renamed according to ordering information scheme from datasheet. Flash size corrected too.
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@9892 35acf78f-673a-0410-8e92-d51de3d6d3f4
-rw-r--r-- | demos/STM32/RT-STM32F767ZI-NUCLEO144/Makefile | 2 | ||||
-rw-r--r-- | demos/STM32/RT-STM32F769I-DISCOVERY/Makefile | 2 | ||||
-rw-r--r-- | os/common/startup/ARMCMx/compilers/GCC/ld/STM32F76xxG.ld (renamed from os/common/startup/ARMCMx/compilers/GCC/ld/STM32F769Ix.ld) | 6 | ||||
-rw-r--r-- | os/common/startup/ARMCMx/compilers/GCC/ld/STM32F76xxI.ld (renamed from os/common/startup/ARMCMx/compilers/GCC/ld/STM32F767Zx.ld) | 2 |
4 files changed, 6 insertions, 6 deletions
diff --git a/demos/STM32/RT-STM32F767ZI-NUCLEO144/Makefile b/demos/STM32/RT-STM32F767ZI-NUCLEO144/Makefile index 39be534d4..9c93479c1 100644 --- a/demos/STM32/RT-STM32F767ZI-NUCLEO144/Makefile +++ b/demos/STM32/RT-STM32F767ZI-NUCLEO144/Makefile @@ -106,7 +106,7 @@ include $(CHIBIOS)/os/common/ports/ARMCMx/compilers/GCC/mk/port_v7m.mk include $(CHIBIOS)/test/rt/test.mk
# Define linker script file here
-LDSCRIPT= $(STARTUPLD)/STM32F767Zx.ld
+LDSCRIPT= $(STARTUPLD)/STM32F76xxI.ld
# C sources that can be compiled in ARM or THUMB mode depending on the global
# setting.
diff --git a/demos/STM32/RT-STM32F769I-DISCOVERY/Makefile b/demos/STM32/RT-STM32F769I-DISCOVERY/Makefile index b9f274a5c..4659fbbfc 100644 --- a/demos/STM32/RT-STM32F769I-DISCOVERY/Makefile +++ b/demos/STM32/RT-STM32F769I-DISCOVERY/Makefile @@ -106,7 +106,7 @@ include $(CHIBIOS)/os/common/ports/ARMCMx/compilers/GCC/mk/port_v7m.mk include $(CHIBIOS)/test/rt/test.mk
# Define linker script file here
-LDSCRIPT= $(STARTUPLD)/STM32F769Ix.ld
+LDSCRIPT= $(STARTUPLD)/STM32F76xxI.ld
# C sources that can be compiled in ARM or THUMB mode depending on the global
# setting.
diff --git a/os/common/startup/ARMCMx/compilers/GCC/ld/STM32F769Ix.ld b/os/common/startup/ARMCMx/compilers/GCC/ld/STM32F76xxG.ld index 990a8adfa..92aa1042c 100644 --- a/os/common/startup/ARMCMx/compilers/GCC/ld/STM32F769Ix.ld +++ b/os/common/startup/ARMCMx/compilers/GCC/ld/STM32F76xxG.ld @@ -15,7 +15,7 @@ */
/*
- * STM32F769Ix generic setup.
+ * STM32F76xxG generic setup.
*
* RAM0 - Data, Heap.
* RAM3 - Main Stack, Process Stack, BSS, NOCACHE, ETH.
@@ -25,8 +25,8 @@ */
MEMORY
{
- flash0 : org = 0x08000000, len = 2M /* Flash as AXIM (writable) */
- flash1 : org = 0x00200000, len = 2M /* Flash as ITCM */
+ flash0 : org = 0x08000000, len = 1M /* Flash as AXIM (writable) */
+ flash1 : org = 0x00200000, len = 1M /* Flash as ITCM */
flash2 : org = 0x00000000, len = 0
flash3 : org = 0x00000000, len = 0
flash4 : org = 0x00000000, len = 0
diff --git a/os/common/startup/ARMCMx/compilers/GCC/ld/STM32F767Zx.ld b/os/common/startup/ARMCMx/compilers/GCC/ld/STM32F76xxI.ld index 5a365ea41..a7a25eb84 100644 --- a/os/common/startup/ARMCMx/compilers/GCC/ld/STM32F767Zx.ld +++ b/os/common/startup/ARMCMx/compilers/GCC/ld/STM32F76xxI.ld @@ -15,7 +15,7 @@ */
/*
- * STM32F767Zx generic setup.
+ * STM32F76xxI generic setup.
*
* RAM0 - Data, Heap.
* RAM3 - Main Stack, Process Stack, BSS, NOCACHE, ETH.
|