Home
last modified time | relevance | path

Searched refs:RCC_Clocks (Results 1 – 10 of 10) sorted by relevance

/lk-master/external/platform/stm32f0xx/STM32F0xx_HAL_Driver/
A Dstm32f0xx_ll_usart.c265 LL_RCC_ClocksTypeDef RCC_Clocks; in LL_USART_Init() local
322 LL_RCC_GetSystemClocksFreq(&RCC_Clocks); in LL_USART_Init()
323 periphclk = RCC_Clocks.PCLK1_Frequency; in LL_USART_Init()
334 LL_RCC_GetSystemClocksFreq(&RCC_Clocks); in LL_USART_Init()
335 periphclk = RCC_Clocks.PCLK1_Frequency; in LL_USART_Init()
343 LL_RCC_GetSystemClocksFreq(&RCC_Clocks); in LL_USART_Init()
344 periphclk = RCC_Clocks.PCLK1_Frequency; in LL_USART_Init()
352 periphclk = RCC_Clocks.PCLK1_Frequency; in LL_USART_Init()
360 periphclk = RCC_Clocks.PCLK1_Frequency; in LL_USART_Init()
368 periphclk = RCC_Clocks.PCLK1_Frequency; in LL_USART_Init()
[all …]
A Dstm32f0xx_ll_rcc.c217 void LL_RCC_GetSystemClocksFreq(LL_RCC_ClocksTypeDef *RCC_Clocks) in LL_RCC_GetSystemClocksFreq() argument
220 RCC_Clocks->SYSCLK_Frequency = RCC_GetSystemClockFreq(); in LL_RCC_GetSystemClocksFreq()
223 RCC_Clocks->HCLK_Frequency = RCC_GetHCLKClockFreq(RCC_Clocks->SYSCLK_Frequency); in LL_RCC_GetSystemClocksFreq()
226 RCC_Clocks->PCLK1_Frequency = RCC_GetPCLK1ClockFreq(RCC_Clocks->HCLK_Frequency); in LL_RCC_GetSystemClocksFreq()
/lk-master/external/platform/stm32f1xx/STM32F10x_StdPeriph_Driver/src/
A Dstm32f10x_rcc.c907 void RCC_GetClocksFreq(RCC_ClocksTypeDef* RCC_Clocks) in RCC_GetClocksFreq() argument
925 RCC_Clocks->SYSCLK_Frequency = HSI_VALUE; in RCC_GetClocksFreq()
928 RCC_Clocks->SYSCLK_Frequency = HSE_VALUE; in RCC_GetClocksFreq()
941 RCC_Clocks->SYSCLK_Frequency = (HSI_VALUE >> 1) * pllmull; in RCC_GetClocksFreq()
957 RCC_Clocks->SYSCLK_Frequency = HSE_VALUE * pllmull; in RCC_GetClocksFreq()
975 RCC_Clocks->SYSCLK_Frequency = (HSI_VALUE >> 1) * pllmull; in RCC_GetClocksFreq()
1001 RCC_Clocks->SYSCLK_Frequency = HSI_VALUE; in RCC_GetClocksFreq()
1011 RCC_Clocks->HCLK_Frequency = RCC_Clocks->SYSCLK_Frequency >> presc; in RCC_GetClocksFreq()
1017 RCC_Clocks->PCLK1_Frequency = RCC_Clocks->HCLK_Frequency >> presc; in RCC_GetClocksFreq()
1023 RCC_Clocks->PCLK2_Frequency = RCC_Clocks->HCLK_Frequency >> presc; in RCC_GetClocksFreq()
[all …]
A Dstm32f10x_spi.c222 RCC_ClocksTypeDef RCC_Clocks; in I2S_Init() local
306 RCC_GetClocksFreq(&RCC_Clocks); in I2S_Init()
309 sourceclock = RCC_Clocks.SYSCLK_Frequency; in I2S_Init()
313 RCC_GetClocksFreq(&RCC_Clocks); in I2S_Init()
316 sourceclock = RCC_Clocks.SYSCLK_Frequency; in I2S_Init()
/lk-master/external/platform/stm32f2xx/STM32F2xx_StdPeriph_Driver/src/
A Dstm32f2xx_rcc.c862 void RCC_GetClocksFreq(RCC_ClocksTypeDef* RCC_Clocks) in RCC_GetClocksFreq() argument
872 RCC_Clocks->SYSCLK_Frequency = HSI_VALUE; in RCC_GetClocksFreq()
875 RCC_Clocks->SYSCLK_Frequency = HSE_VALUE; in RCC_GetClocksFreq()
897 RCC_Clocks->SYSCLK_Frequency = pllvco/pllp; in RCC_GetClocksFreq()
900 RCC_Clocks->SYSCLK_Frequency = HSI_VALUE; in RCC_GetClocksFreq()
910 RCC_Clocks->HCLK_Frequency = RCC_Clocks->SYSCLK_Frequency >> presc; in RCC_GetClocksFreq()
917 RCC_Clocks->PCLK1_Frequency = RCC_Clocks->HCLK_Frequency >> presc; in RCC_GetClocksFreq()
924 RCC_Clocks->PCLK2_Frequency = RCC_Clocks->HCLK_Frequency >> presc; in RCC_GetClocksFreq()
/lk-master/external/platform/stm32f4xx/STM32F4xx_StdPeriph_Driver/src/
A Dstm32f4xx_rcc.c1248 void RCC_GetClocksFreq(RCC_ClocksTypeDef* RCC_Clocks) in RCC_GetClocksFreq() argument
1261 RCC_Clocks->SYSCLK_Frequency = HSI_VALUE; in RCC_GetClocksFreq()
1264 RCC_Clocks->SYSCLK_Frequency = HSE_VALUE; in RCC_GetClocksFreq()
1286 RCC_Clocks->SYSCLK_Frequency = pllvco/pllp; in RCC_GetClocksFreq()
1309 RCC_Clocks->SYSCLK_Frequency = pllvco/pllr; in RCC_GetClocksFreq()
1314 RCC_Clocks->SYSCLK_Frequency = HSI_VALUE; in RCC_GetClocksFreq()
1324 RCC_Clocks->HCLK_Frequency = RCC_Clocks->SYSCLK_Frequency >> presc; in RCC_GetClocksFreq()
1331 RCC_Clocks->PCLK1_Frequency = RCC_Clocks->HCLK_Frequency >> presc; in RCC_GetClocksFreq()
1338 RCC_Clocks->PCLK2_Frequency = RCC_Clocks->HCLK_Frequency >> presc; in RCC_GetClocksFreq()
/lk-master/external/platform/stm32f2xx/STM32F2xx_StdPeriph_Driver/inc/
A Dstm32f2xx_rcc.h468 void RCC_GetClocksFreq(RCC_ClocksTypeDef* RCC_Clocks);
/lk-master/external/platform/stm32f1xx/STM32F10x_StdPeriph_Driver/inc/
A Dstm32f10x_rcc.h690 void RCC_GetClocksFreq(RCC_ClocksTypeDef* RCC_Clocks);
/lk-master/external/platform/stm32f4xx/STM32F4xx_StdPeriph_Driver/inc/
A Dstm32f4xx_rcc.h772 void RCC_GetClocksFreq(RCC_ClocksTypeDef* RCC_Clocks);
/lk-master/external/platform/stm32f0xx/STM32F0xx_HAL_Driver/inc/
A Dstm32f0xx_ll_rcc.h2223 void LL_RCC_GetSystemClocksFreq(LL_RCC_ClocksTypeDef *RCC_Clocks);

Completed in 25 milliseconds