2017-07-16 10:01 PM
hey
I'm use stm32f013cbtx and 8MHz crystal connect to HSE And use standard peripherals library with Keil v5.
How can i config micro-controller for 72 MHz clock(with Cmsis)?is it possible?
Thanks
2017-07-17 12:05 AM
Hello!
The 'system_stm32f10x.c' in your project contains the clock configuration function 'void SetSysClock(void)' This function configures the RCC
open Menu-> project-> option-> C/C++ tab .
At 'Define' text box must be a definition(at least) 'USE_STDPERIPH_DRIVER, HSE_VALUE=8000000, STM32F10x' whithout quotes.
This definition will configures your clock to 72 MHZ
2017-07-17 12:30 AM
thanks .its work well
2017-07-17 09:13 AM
mahmoud boroumand wrote:
thanks .its work well