Missing mcuconf check.
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@16202 27425a3e-05d8-49a3-a47f-9c15f0e5edd8
This commit is contained in:
parent
082092fc30
commit
39a550f0b3
|
@ -151,8 +151,7 @@
|
||||||
|
|
||||||
#if defined(STM32H723xx) || defined(STM32H733xx) || \
|
#if defined(STM32H723xx) || defined(STM32H733xx) || \
|
||||||
defined(STM32H725xx) || defined(STM32H735xx) || \
|
defined(STM32H725xx) || defined(STM32H735xx) || \
|
||||||
defined(STM32H735xx) || defined(STM32H730xx) || \
|
defined(STM32H730xx) || defined(__DOXYGEN__)
|
||||||
defined(__DOXYGEN__)
|
|
||||||
#include "hal_lld_type2.h"
|
#include "hal_lld_type2.h"
|
||||||
#elif defined(STM32H7A3xx) || defined(STM32H7B3xx) || \
|
#elif defined(STM32H7A3xx) || defined(STM32H7B3xx) || \
|
||||||
defined(STM32H7A3xxQ) || defined(STM32H7B3xxQ) || \
|
defined(STM32H7A3xxQ) || defined(STM32H7B3xxQ) || \
|
||||||
|
|
|
@ -1205,6 +1205,10 @@
|
||||||
#error "Using a wrong mcuconf.h file, STM32H7xx_MCUCONF not defined"
|
#error "Using a wrong mcuconf.h file, STM32H7xx_MCUCONF not defined"
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
#if defined(STM32H730xx) && !defined(STM32H730_MCUCONF)
|
||||||
|
#error "Using a wrong mcuconf.h file, STM32H730_MCUCONF not defined"
|
||||||
|
#endif
|
||||||
|
|
||||||
#if defined(STM32H723xx) && !defined(STM32H723_MCUCONF)
|
#if defined(STM32H723xx) && !defined(STM32H723_MCUCONF)
|
||||||
#error "Using a wrong mcuconf.h file, STM32H723_MCUCONF not defined"
|
#error "Using a wrong mcuconf.h file, STM32H723_MCUCONF not defined"
|
||||||
#endif
|
#endif
|
||||||
|
|
Loading…
Reference in New Issue