Fix check of PLL readiness

This commit is contained in:
Alexander Heldt
2024-12-28 15:02:35 +01:00
parent f492cb7fdb
commit 4adddddd83

View File

@@ -52,7 +52,7 @@ static void system_clock_init(void) {
// Wait indefinitely for PLL to be ready // Wait indefinitely for PLL to be ready
// TODO indicate error/timeout somehow? // TODO indicate error/timeout somehow?
while (!(RCC->CR & RCC_CR_HSERDY_READY)); while (!(RCC->CR & RCC_CR_PLLRDY_LOCKED));
// Enable caching of instructions and data // Enable caching of instructions and data
FLASH->ACR |= FLASH_ACR_DCEN_ENABLE; FLASH->ACR |= FLASH_ACR_DCEN_ENABLE;