diff options
author | Giovanni Di Sirio <gdisirio@gmail.com> | 2018-10-06 07:08:39 +0000 |
---|---|---|
committer | Giovanni Di Sirio <gdisirio@gmail.com> | 2018-10-06 07:08:39 +0000 |
commit | 85641ac646aee189fd7f34b342e24425b668675f (patch) | |
tree | 1ad3de2949192506450eef5967e85f0e07f335ef /os/hal | |
parent | d27c34d080bd4a72169921e2f458546dc621b4e7 (diff) | |
download | ChibiOS-85641ac646aee189fd7f34b342e24425b668675f.tar.gz ChibiOS-85641ac646aee189fd7f34b342e24425b668675f.tar.bz2 ChibiOS-85641ac646aee189fd7f34b342e24425b668675f.zip |
Added mcuconf.h generators for STM32F746/756.
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@12332 110e8d01-0319-4d1e-a829-52ad28d1bb01
Diffstat (limited to 'os/hal')
-rw-r--r-- | os/hal/ports/STM32/STM32F7xx/hal_lld.h | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/os/hal/ports/STM32/STM32F7xx/hal_lld.h b/os/hal/ports/STM32/STM32F7xx/hal_lld.h index c5a1d966e..5fbe981f7 100644 --- a/os/hal/ports/STM32/STM32F7xx/hal_lld.h +++ b/os/hal/ports/STM32/STM32F7xx/hal_lld.h @@ -902,6 +902,14 @@ #error "Using a wrong mcuconf.h file, STM32F7xx_MCUCONF not defined"
#endif
+#if defined(STM32F746xx) && !defined(STM32F746_MCUCONF)
+#error "Using a wrong mcuconf.h file, STM32F746_MCUCONF not defined"
+#endif
+
+#if defined(STM32F756xx) && !defined(STM32F756_MCUCONF)
+#error "Using a wrong mcuconf.h file, STM32F756_MCUCONF not defined"
+#endif
+
/*
* Board file checks.
*/
|