diff options
author | Giovanni Di Sirio <gdisirio@gmail.com> | 2015-08-01 09:55:52 +0000 |
---|---|---|
committer | Giovanni Di Sirio <gdisirio@gmail.com> | 2015-08-01 09:55:52 +0000 |
commit | 3b265b37cd8cfab1d73d5b72838edbff997a5206 (patch) | |
tree | d445dd615bfdd5a2b2a2cbc506d034b48426095a /demos/STM32 | |
parent | af3a45d742c2e2fd432d489c361a05135b99f6b0 (diff) | |
download | ChibiOS-3b265b37cd8cfab1d73d5b72838edbff997a5206.tar.gz ChibiOS-3b265b37cd8cfab1d73d5b72838edbff997a5206.tar.bz2 ChibiOS-3b265b37cd8cfab1d73d5b72838edbff997a5206.zip |
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@8135 35acf78f-673a-0410-8e92-d51de3d6d3f4
Diffstat (limited to 'demos/STM32')
-rw-r--r-- | demos/STM32/RT-STM32F746G-DISCOVERY/.project | 2 | ||||
-rw-r--r-- | demos/STM32/RT-STM32F746G-DISCOVERY/Makefile | 8 | ||||
-rw-r--r-- | demos/STM32/RT-STM32F746G-DISCOVERY/mcuconf.h | 2 |
3 files changed, 6 insertions, 6 deletions
diff --git a/demos/STM32/RT-STM32F746G-DISCOVERY/.project b/demos/STM32/RT-STM32F746G-DISCOVERY/.project index 96ec00531..5521951e5 100644 --- a/demos/STM32/RT-STM32F746G-DISCOVERY/.project +++ b/demos/STM32/RT-STM32F746G-DISCOVERY/.project @@ -79,7 +79,7 @@ <link>
<name>board</name>
<type>2</type>
- <locationURI>CHIBIOS/os/hal/boards/ST_STM32F4_DISCOVERY</locationURI>
+ <locationURI>CHIBIOS/os/hal/boards/ST_STM32F476G_DISCOVERY</locationURI>
</link>
<link>
<name>os</name>
diff --git a/demos/STM32/RT-STM32F746G-DISCOVERY/Makefile b/demos/STM32/RT-STM32F746G-DISCOVERY/Makefile index 672d9aded..a46ef6422 100644 --- a/demos/STM32/RT-STM32F746G-DISCOVERY/Makefile +++ b/demos/STM32/RT-STM32F746G-DISCOVERY/Makefile @@ -88,11 +88,11 @@ PROJECT = ch # Imported source files and paths
CHIBIOS = ../../..
# Startup files.
-include $(CHIBIOS)/os/common/ports/ARMCMx/compilers/GCC/mk/startup_stm32f4xx.mk
+include $(CHIBIOS)/os/common/ports/ARMCMx/compilers/GCC/mk/startup_stm32f7xx.mk
# HAL-OSAL files (optional).
include $(CHIBIOS)/os/hal/hal.mk
-include $(CHIBIOS)/os/hal/ports/STM32/STM32F4xx/platform.mk
-include $(CHIBIOS)/os/hal/boards/ST_STM32F4_DISCOVERY/board.mk
+include $(CHIBIOS)/os/hal/ports/STM32/STM32F7xx/platform.mk
+include $(CHIBIOS)/os/hal/boards/ST_STM32F476G_DISCOVERY/board.mk
include $(CHIBIOS)/os/hal/osal/rt/osal.mk
# RTOS files (optional).
include $(CHIBIOS)/os/rt/rt.mk
@@ -101,7 +101,7 @@ include $(CHIBIOS)/os/rt/ports/ARMCMx/compilers/GCC/mk/port_v7m.mk include $(CHIBIOS)/test/rt/test.mk
# Define linker script file here
-LDSCRIPT= $(STARTUPLD)/STM32F407xG.ld
+LDSCRIPT= $(STARTUPLD)/STM32F746xG.ld
# C sources that can be compiled in ARM or THUMB mode depending on the global
# setting.
diff --git a/demos/STM32/RT-STM32F746G-DISCOVERY/mcuconf.h b/demos/STM32/RT-STM32F746G-DISCOVERY/mcuconf.h index 4eb313e07..02a8e6ce6 100644 --- a/demos/STM32/RT-STM32F746G-DISCOVERY/mcuconf.h +++ b/demos/STM32/RT-STM32F746G-DISCOVERY/mcuconf.h @@ -31,7 +31,7 @@ * 0...3 Lowest...Highest.
*/
-#define STM32F4xx_MCUCONF
+#define STM32F7xx_MCUCONF
/*
* HAL driver system settings.
|