stmhal: L4: Make CCM/DTCM RAM start-up conditional on MCU type.
This commit is contained in:
parent
adaaf439b0
commit
7441ba7749
@ -367,13 +367,15 @@ int main(void) {
|
|||||||
__GPIOC_CLK_ENABLE();
|
__GPIOC_CLK_ENABLE();
|
||||||
__GPIOD_CLK_ENABLE();
|
__GPIOD_CLK_ENABLE();
|
||||||
|
|
||||||
#if defined(__HAL_RCC_DTCMRAMEN_CLK_ENABLE)
|
#if defined(MCU_SERIES_F4) || defined(MCU_SERIES_F7)
|
||||||
// The STM32F746 doesn't really have CCM memory, but it does have DTCM,
|
#if defined(__HAL_RCC_DTCMRAMEN_CLK_ENABLE)
|
||||||
// which behaves more or less like normal SRAM.
|
// The STM32F746 doesn't really have CCM memory, but it does have DTCM,
|
||||||
__HAL_RCC_DTCMRAMEN_CLK_ENABLE();
|
// which behaves more or less like normal SRAM.
|
||||||
#else
|
__HAL_RCC_DTCMRAMEN_CLK_ENABLE();
|
||||||
// enable the CCM RAM
|
#else
|
||||||
__CCMDATARAMEN_CLK_ENABLE();
|
// enable the CCM RAM
|
||||||
|
__CCMDATARAMEN_CLK_ENABLE();
|
||||||
|
#endif
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#if defined(MICROPY_BOARD_EARLY_INIT)
|
#if defined(MICROPY_BOARD_EARLY_INIT)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user