HSE_VALUE is only used within TouchGFX.
 
Symbols
loading...
Files
loading...

HSE_VALUE macro

Adjust the value of External High Speed oscillator (HSE) used in your application. This value is used by the RCC HAL module to compute the system frequency (when HSE is used as system clock source, directly or through the PLL). Value of the External oscillator in Hz

Syntax

#define HSE_VALUE 25000000U

References

LocationText
stm32f4xx_hal_conf.h:89
#define HSE_VALUE 25000000U /*!< Value of the External oscillator in Hz */
system_stm32f4xx.c:51
#define HSE_VALUE ((uint32_t)25000000) /*!< Default value of the External oscillator in Hz */
system_stm32f4xx.c:235
SystemCoreClock = HSE_VALUE;
system_stm32f4xx.c:248
pllvco = (HSE_VALUE / pllm) * ((RCC->PLLCFGR & RCC_PLLCFGR_PLLN) >> 6);