В проекте CubeMx изменяю источник тактирования на внешний кварц. Ошибок вроде никаких не появляется красным ничего не выделено а частота в файле system_stm32f3xx.c так и осталась 8МГц.
Часть кода из system_stm32f3xx.c.
Спойлер
Код: Выделить всё
/** @addtogroup STM32F3xx_System_Private_Defines
* @{
*/
#if !defined (HSE_VALUE)
#define HSE_VALUE ((uint32_t)8000000) /*!< Default value of the External oscillator in Hz.
This value can be provided and adapted by the user application. */
#endif /* HSE_VALUE */
#if !defined (HSI_VALUE)
#define HSI_VALUE ((uint32_t)8000000) /*!< Default value of the Internal oscillator in Hz.
This value can be provided and adapted by the user application. */
#endif /* HSI_VALUE */
uint32_t SystemCoreClock = 8000000;
Что я делаю не так?


