User Activity

I have written the following code snippet to set the system clock to 32MHz. int main(void) { SystemClock_Config(); while(1){} return 0; } void SystemClock_Config(void) { RCC->CR |= (1<<16);//HSE clock enable >> High Speed External while...