Home
last modified time | relevance | path

Searched refs:HSE_VALUE (Results 1 – 24 of 24) sorted by relevance

/external/platform/stm32f0xx/CMSIS/
A Dsystem_stm32f0xx.c99 #if !defined (HSE_VALUE)
100 #define HSE_VALUE ((uint32_t)8000000) /*!< Default value of the External oscillator in Hz. macro
273 SystemCoreClock = HSE_VALUE; in SystemCoreClockUpdate()
285 SystemCoreClock = (HSE_VALUE/predivfactor) * pllmull; in SystemCoreClockUpdate()
/external/platform/stm32f0xx/STM32F0xx_HAL_Driver/inc/
A Dstm32f0xx_hal_conf_template.h85 #if !defined (HSE_VALUE)
86 #define HSE_VALUE 8000000U /*!< Value of the External oscillator in Hz */ macro
A Dstm32f0xx_hal_conf.h87 #if !defined (HSE_VALUE)
88 #define HSE_VALUE ((uint32_t)8000000) /*!< Value of the External oscillator in Hz */ macro
A Dstm32f0xx_ll_rcc.h131 #if !defined (HSE_VALUE)
132 #define HSE_VALUE 8000000U /*!< Value of the HSE oscillator in Hz */ macro
/external/platform/stm32f1xx/STM32F10x_StdPeriph_Driver/src/
A Dsystem_stm32f10x.c327 SystemCoreClock = HSE_VALUE; in SystemCoreClockUpdate()
348 SystemCoreClock = (HSE_VALUE / prediv1factor) * pllmull; in SystemCoreClockUpdate()
353 SystemCoreClock = (HSE_VALUE >> 1) * pllmull; in SystemCoreClockUpdate()
357 SystemCoreClock = HSE_VALUE * pllmull; in SystemCoreClockUpdate()
388 SystemCoreClock = (HSE_VALUE / prediv1factor) * pllmull; in SystemCoreClockUpdate()
396 …SystemCoreClock = (((HSE_VALUE / prediv2factor) * pll2mull) / prediv1factor) * pllmull; … in SystemCoreClockUpdate()
537 if (HSE_VALUE <= 24000000) in SetSysClockToHSE()
A Dstm32f10x_rcc.c928 RCC_Clocks->SYSCLK_Frequency = HSE_VALUE; in RCC_GetClocksFreq()
948 RCC_Clocks->SYSCLK_Frequency = (HSE_VALUE / prediv1factor) * pllmull; in RCC_GetClocksFreq()
953 RCC_Clocks->SYSCLK_Frequency = (HSE_VALUE >> 1) * pllmull; in RCC_GetClocksFreq()
957 RCC_Clocks->SYSCLK_Frequency = HSE_VALUE * pllmull; in RCC_GetClocksFreq()
986 RCC_Clocks->SYSCLK_Frequency = (HSE_VALUE / prediv1factor) * pllmull; in RCC_GetClocksFreq()
994 …RCC_Clocks->SYSCLK_Frequency = (((HSE_VALUE / prediv2factor) * pll2mull) / prediv1factor) * pllmul… in RCC_GetClocksFreq()
/external/platform/stm32f7xx/STM32F7xx_HAL_Driver/Inc/
A Dstm32f7xx_hal_conf.h104 #if !defined (HSE_VALUE)
105 #define HSE_VALUE ((uint32_t)25000000) /*!< Value of the External oscillator in Hz */ macro
A Dstm32f7xx_hal_conf_template.h104 #if !defined (HSE_VALUE)
105 #define HSE_VALUE ((uint32_t)25000000) /*!< Value of the External oscillator in Hz */ macro
/external/platform/stm32f2xx/STM32F2xx_StdPeriph_Driver/src/
A Dsystem_stm32f2xx.c294 SystemCoreClock = HSE_VALUE; in SystemCoreClockUpdate()
307 pllvco = (HSE_VALUE / pllm) * ((RCC->PLLCFGR & RCC_PLLCFGR_PLLN) >> 6); in SystemCoreClockUpdate()
A Dstm32f2xx_rcc.c875 RCC_Clocks->SYSCLK_Frequency = HSE_VALUE; in RCC_GetClocksFreq()
888 pllvco = (HSE_VALUE / pllm) * ((RCC->PLLCFGR & RCC_PLLCFGR_PLLN) >> 6); in RCC_GetClocksFreq()
A Dstm32f2xx_spi.c359 i2sclk = (uint32_t)(((HSE_VALUE / pllm) * plln) / pllr); in I2S_Init()
/external/platform/stm32f0xx/STM32F0xx_HAL_Driver/
A Dstm32f0xx_ll_rcc.c493 frequency = HSE_VALUE; in RCC_GetSystemClockFreq()
566 pllinputfreq = HSE_VALUE; in RCC_PLL_GetFreqDomain_SYS()
A Dstm32f0xx_hal_rcc_ex.c419 frequency = HSE_VALUE / 32U; in HAL_RCCEx_GetPeriphCLKFreq()
543 frequency = (HSE_VALUE/predivfactor) * pllmull; in HAL_RCCEx_GetPeriphCLKFreq()
A Dstm32f0xx_hal_rcc.c1081 sysclockfreq = HSE_VALUE; in HAL_RCC_GetSysClockFreq()
1091 pllclk = (HSE_VALUE / prediv) * pllmul; in HAL_RCC_GetSysClockFreq()
/external/platform/stm32f4xx/STM32F4xx_StdPeriph_Driver/src/
A Dsystem_stm32f4xx.c568 SystemCoreClock = HSE_VALUE; in SystemCoreClockUpdate()
581 pllvco = (HSE_VALUE / pllm) * ((RCC->PLLCFGR & RCC_PLLCFGR_PLLN) >> 6); in SystemCoreClockUpdate()
616 pllvco = (HSE_VALUE / pllm) * ((RCC->PLLCFGR & RCC_PLLCFGR_PLLN) >> 6); in SystemCoreClockUpdate()
A Dstm32f4xx_rcc.c1326 RCC_Clocks->SYSCLK_Frequency = HSE_VALUE; in RCC_GetClocksFreq()
1339 pllvco = (HSE_VALUE / pllm) * ((RCC->PLLCFGR & RCC_PLLCFGR_PLLN) >> 6); in RCC_GetClocksFreq()
1362 pllvco = (HSE_VALUE / pllm) * ((RCC->PLLCFGR & RCC_PLLCFGR_PLLN) >> 6); in RCC_GetClocksFreq()
A Dstm32f4xx_spi.c428 i2sclk = (uint32_t)(((HSE_VALUE / pllm) * plln) / pllr); in I2S_Init()
A Dstm32f4xx_dsi.c197 …unitIntervalx4 = (4000000 * tempIDF * (1 << PLLInit->PLLODF)) / ((HSE_VALUE/1000) * PLLInit->PLLND… in DSI_Init()
/external/platform/stm32f7xx/STM32F7xx_HAL_Driver/Src/
A Dstm32f7xx_hal_rcc.c863 sysclockfreq = HSE_VALUE; in HAL_RCC_GetSysClockFreq()
872 …pllvco = ((HSE_VALUE / pllm) * ((RCC->PLLCFGR & RCC_PLLCFGR_PLLN) >> POSITION_VAL(RCC_PLLCFGR_PLLN… in HAL_RCC_GetSysClockFreq()
A Dstm32f7xx_hal_rcc_ex.c730 vcoinput = ((HSE_VALUE / (uint32_t)(RCC->PLLCFGR & RCC_PLLCFGR_PLLM))); in HAL_RCCEx_GetPeriphCLKFreq()
751 vcoinput = ((HSE_VALUE / (uint32_t)(RCC->PLLCFGR & RCC_PLLCFGR_PLLM))); in HAL_RCCEx_GetPeriphCLKFreq()
A Dstm32f7xx_hal_i2s.c1233 vcoinput = ((HSE_VALUE / (uint32_t)(RCC->PLLCFGR & RCC_PLLCFGR_PLLM))); in I2S_GetClockFreq()
/external/platform/stm32f1xx/STM32F10x_StdPeriph_Driver/CMSIS/
A Dstm32f10x.h99 #if !defined HSE_VALUE
101 #define HSE_VALUE ((uint32_t)25000000) /*!< Value of the External oscillator in Hz */ macro
103 #define HSE_VALUE ((uint32_t)8000000) /*!< Value of the External oscillator in Hz */
515 #define HSE_Value HSE_VALUE
/external/platform/stm32f4xx/STM32F4xx_StdPeriph_Driver/CMSIS/
A Dstm32f4xx.h138 #if !defined (HSE_VALUE)
139 #define HSE_VALUE ((uint32_t)25000000) /*!< Value of the External oscillator in Hz */ macro
142 #if !defined (HSE_VALUE)
143 #define HSE_VALUE ((uint32_t)8000000) /*!< Value of the External oscillator in Hz */
/external/platform/stm32f2xx/STM32F2xx_StdPeriph_Driver/CMSIS/
A Dstm32f2xx.h96 #if !defined (HSE_VALUE)
97 #define HSE_VALUE ((uint32_t)25000000) /*!< Value of the External oscillator in Hz */ macro

Completed in 180 milliseconds