STM32H753 clock setting
Hi friends.I work with this chip STM32H753, but I set wrong clock. void SystemClock_Config(void) { uint32_t i; // Enable HSE LL_RCC_HSE_Enable(); // Wait till HSE is ready while ((LL_RCC_HSE_IsReady()) == 0) ; //PLL1 - external quartz LL_R...