mirror of
https://github.com/openmv/openmv.git
synced 2025-11-04 14:49:50 +08:00
Merge pull request #653 from openmv/dbgmcu_fix
Enable DBGMCU in sleep modes.
This commit is contained in:
commit
cf9b7ec025
@ -167,6 +167,12 @@ void SystemInit(void)
|
||||
|
||||
/* dpgeorge: enable 8-byte stack alignment for IRQ handlers, in accord with EABI */
|
||||
SCB->CCR |= SCB_CCR_STKALIGN_Msk;
|
||||
|
||||
#if defined(MCU_SERIES_4) || defined(MCU_SERIES_F7)
|
||||
DBGMCU->CR |= DBGMCU_CR_DBG_SLEEP;
|
||||
#elif defined(MCU_SERIES_H7)
|
||||
DBGMCU->CR |= DBGMCU_CR_DBG_SLEEPD1;
|
||||
#endif
|
||||
}
|
||||
|
||||
void SystemClock_Config(void)
|
||||
|
||||
Loading…
Reference in New Issue
Block a user