Home
last modified time | relevance | path

Searched refs:pInit (Results 1 – 25 of 26) sorted by relevance

12

/hal_stm32-latest/stm32cube/stm32c0xx/drivers/src/
Dstm32c0xx_hal_rcc_ex.c580 void HAL_RCCEx_CRSConfig(RCC_CRSInitTypeDef *pInit) in HAL_RCCEx_CRSConfig() argument
585 assert_param(IS_RCC_CRS_SYNC_DIV(pInit->Prescaler)); in HAL_RCCEx_CRSConfig()
586 assert_param(IS_RCC_CRS_SYNC_SOURCE(pInit->Source)); in HAL_RCCEx_CRSConfig()
587 assert_param(IS_RCC_CRS_SYNC_POLARITY(pInit->Polarity)); in HAL_RCCEx_CRSConfig()
588 assert_param(IS_RCC_CRS_RELOADVALUE(pInit->ReloadValue)); in HAL_RCCEx_CRSConfig()
589 assert_param(IS_RCC_CRS_ERRORLIMIT(pInit->ErrorLimitValue)); in HAL_RCCEx_CRSConfig()
590 assert_param(IS_RCC_CRS_HSI48CALIBRATION(pInit->HSI48CalibrationValue)); in HAL_RCCEx_CRSConfig()
601 value = (pInit->Prescaler | pInit->Source | pInit->Polarity); in HAL_RCCEx_CRSConfig()
603 value |= pInit->ReloadValue; in HAL_RCCEx_CRSConfig()
605 value |= (pInit->ErrorLimitValue << CRS_CFGR_FELIM_Pos); in HAL_RCCEx_CRSConfig()
[all …]
/hal_stm32-latest/stm32cube/stm32f0xx/drivers/src/
Dstm32f0xx_hal_rcc_ex.c657 void HAL_RCCEx_CRSConfig(RCC_CRSInitTypeDef *pInit) in HAL_RCCEx_CRSConfig() argument
662 assert_param(IS_RCC_CRS_SYNC_DIV(pInit->Prescaler)); in HAL_RCCEx_CRSConfig()
663 assert_param(IS_RCC_CRS_SYNC_SOURCE(pInit->Source)); in HAL_RCCEx_CRSConfig()
664 assert_param(IS_RCC_CRS_SYNC_POLARITY(pInit->Polarity)); in HAL_RCCEx_CRSConfig()
665 assert_param(IS_RCC_CRS_RELOADVALUE(pInit->ReloadValue)); in HAL_RCCEx_CRSConfig()
666 assert_param(IS_RCC_CRS_ERRORLIMIT(pInit->ErrorLimitValue)); in HAL_RCCEx_CRSConfig()
667 assert_param(IS_RCC_CRS_HSI48CALIBRATION(pInit->HSI48CalibrationValue)); in HAL_RCCEx_CRSConfig()
678 value = (pInit->Prescaler | pInit->Source | pInit->Polarity); in HAL_RCCEx_CRSConfig()
680 value |= pInit->ReloadValue; in HAL_RCCEx_CRSConfig()
682 value |= (pInit->ErrorLimitValue << CRS_CFGR_FELIM_BITNUMBER); in HAL_RCCEx_CRSConfig()
[all …]
/hal_stm32-latest/stm32cube/stm32l0xx/drivers/src/
Dstm32l0xx_hal_rcc_ex.c919 void HAL_RCCEx_CRSConfig(RCC_CRSInitTypeDef *pInit) in HAL_RCCEx_CRSConfig() argument
924 assert_param(IS_RCC_CRS_SYNC_DIV(pInit->Prescaler)); in HAL_RCCEx_CRSConfig()
925 assert_param(IS_RCC_CRS_SYNC_SOURCE(pInit->Source)); in HAL_RCCEx_CRSConfig()
926 assert_param(IS_RCC_CRS_SYNC_POLARITY(pInit->Polarity)); in HAL_RCCEx_CRSConfig()
927 assert_param(IS_RCC_CRS_RELOADVALUE(pInit->ReloadValue)); in HAL_RCCEx_CRSConfig()
928 assert_param(IS_RCC_CRS_ERRORLIMIT(pInit->ErrorLimitValue)); in HAL_RCCEx_CRSConfig()
929 assert_param(IS_RCC_CRS_HSI48CALIBRATION(pInit->HSI48CalibrationValue)); in HAL_RCCEx_CRSConfig()
940 value = (pInit->Prescaler | pInit->Source | pInit->Polarity); in HAL_RCCEx_CRSConfig()
942 value |= pInit->ReloadValue; in HAL_RCCEx_CRSConfig()
944 value |= (pInit->ErrorLimitValue << CRS_CFGR_FELIM_Pos); in HAL_RCCEx_CRSConfig()
[all …]
/hal_stm32-latest/stm32cube/stm32u0xx/drivers/src/
Dstm32u0xx_hal_rcc_ex.c1520 void HAL_RCCEx_CRSConfig(const RCC_CRSInitTypeDef *const pInit) in HAL_RCCEx_CRSConfig() argument
1525 assert_param(IS_RCC_CRS_SYNC_DIV(pInit->Prescaler)); in HAL_RCCEx_CRSConfig()
1526 assert_param(IS_RCC_CRS_SYNC_SOURCE(pInit->Source)); in HAL_RCCEx_CRSConfig()
1527 assert_param(IS_RCC_CRS_SYNC_POLARITY(pInit->Polarity)); in HAL_RCCEx_CRSConfig()
1528 assert_param(IS_RCC_CRS_RELOADVALUE(pInit->ReloadValue)); in HAL_RCCEx_CRSConfig()
1529 assert_param(IS_RCC_CRS_ERRORLIMIT(pInit->ErrorLimitValue)); in HAL_RCCEx_CRSConfig()
1530 assert_param(IS_RCC_CRS_HSI48CALIBRATION(pInit->HSI48CalibrationValue)); in HAL_RCCEx_CRSConfig()
1541 value = (pInit->Prescaler | pInit->Source | pInit->Polarity); in HAL_RCCEx_CRSConfig()
1543 value |= pInit->ReloadValue; in HAL_RCCEx_CRSConfig()
1545 value |= (pInit->ErrorLimitValue << CRS_CFGR_FELIM_Pos); in HAL_RCCEx_CRSConfig()
[all …]
/hal_stm32-latest/stm32cube/stm32wbxx/drivers/src/
Dstm32wbxx_hal_rcc_ex.c1600 void HAL_RCCEx_CRSConfig(RCC_CRSInitTypeDef *pInit) in HAL_RCCEx_CRSConfig() argument
1605 assert_param(IS_RCC_CRS_SYNC_DIV(pInit->Prescaler)); in HAL_RCCEx_CRSConfig()
1606 assert_param(IS_RCC_CRS_SYNC_SOURCE(pInit->Source)); in HAL_RCCEx_CRSConfig()
1607 assert_param(IS_RCC_CRS_SYNC_POLARITY(pInit->Polarity)); in HAL_RCCEx_CRSConfig()
1608 assert_param(IS_RCC_CRS_RELOADVALUE(pInit->ReloadValue)); in HAL_RCCEx_CRSConfig()
1609 assert_param(IS_RCC_CRS_ERRORLIMIT(pInit->ErrorLimitValue)); in HAL_RCCEx_CRSConfig()
1610 assert_param(IS_RCC_CRS_HSI48CALIBRATION(pInit->HSI48CalibrationValue)); in HAL_RCCEx_CRSConfig()
1621 value = (pInit->Prescaler | pInit->Source | pInit->Polarity); in HAL_RCCEx_CRSConfig()
1623 value |= pInit->ReloadValue; in HAL_RCCEx_CRSConfig()
1625 value |= (pInit->ErrorLimitValue << CRS_CFGR_FELIM_Pos); in HAL_RCCEx_CRSConfig()
[all …]
/hal_stm32-latest/stm32cube/stm32g0xx/drivers/src/
Dstm32g0xx_hal_rcc_ex.c1370 void HAL_RCCEx_CRSConfig(RCC_CRSInitTypeDef *pInit) in HAL_RCCEx_CRSConfig() argument
1375 assert_param(IS_RCC_CRS_SYNC_DIV(pInit->Prescaler)); in HAL_RCCEx_CRSConfig()
1376 assert_param(IS_RCC_CRS_SYNC_SOURCE(pInit->Source)); in HAL_RCCEx_CRSConfig()
1377 assert_param(IS_RCC_CRS_SYNC_POLARITY(pInit->Polarity)); in HAL_RCCEx_CRSConfig()
1378 assert_param(IS_RCC_CRS_RELOADVALUE(pInit->ReloadValue)); in HAL_RCCEx_CRSConfig()
1379 assert_param(IS_RCC_CRS_ERRORLIMIT(pInit->ErrorLimitValue)); in HAL_RCCEx_CRSConfig()
1380 assert_param(IS_RCC_CRS_HSI48CALIBRATION(pInit->HSI48CalibrationValue)); in HAL_RCCEx_CRSConfig()
1391 value = (pInit->Prescaler | pInit->Source | pInit->Polarity); in HAL_RCCEx_CRSConfig()
1393 value |= pInit->ReloadValue; in HAL_RCCEx_CRSConfig()
1395 value |= (pInit->ErrorLimitValue << CRS_CFGR_FELIM_Pos); in HAL_RCCEx_CRSConfig()
[all …]
/hal_stm32-latest/stm32cube/stm32g4xx/drivers/src/
Dstm32g4xx_hal_rcc_ex.c1561 void HAL_RCCEx_CRSConfig(RCC_CRSInitTypeDef *pInit) in HAL_RCCEx_CRSConfig() argument
1566 assert_param(IS_RCC_CRS_SYNC_DIV(pInit->Prescaler)); in HAL_RCCEx_CRSConfig()
1567 assert_param(IS_RCC_CRS_SYNC_SOURCE(pInit->Source)); in HAL_RCCEx_CRSConfig()
1568 assert_param(IS_RCC_CRS_SYNC_POLARITY(pInit->Polarity)); in HAL_RCCEx_CRSConfig()
1569 assert_param(IS_RCC_CRS_RELOADVALUE(pInit->ReloadValue)); in HAL_RCCEx_CRSConfig()
1570 assert_param(IS_RCC_CRS_ERRORLIMIT(pInit->ErrorLimitValue)); in HAL_RCCEx_CRSConfig()
1571 assert_param(IS_RCC_CRS_HSI48CALIBRATION(pInit->HSI48CalibrationValue)); in HAL_RCCEx_CRSConfig()
1582 value = (pInit->Prescaler | pInit->Source | pInit->Polarity); in HAL_RCCEx_CRSConfig()
1584 value |= pInit->ReloadValue; in HAL_RCCEx_CRSConfig()
1586 value |= (pInit->ErrorLimitValue << CRS_CFGR_FELIM_Pos); in HAL_RCCEx_CRSConfig()
[all …]
/hal_stm32-latest/stm32cube/stm32h7xx/drivers/src/
Dstm32h7xx_hal_rcc_ex.c3382 void HAL_RCCEx_CRSConfig(const RCC_CRSInitTypeDef *pInit) in HAL_RCCEx_CRSConfig() argument
3387 assert_param(IS_RCC_CRS_SYNC_DIV(pInit->Prescaler)); in HAL_RCCEx_CRSConfig()
3388 assert_param(IS_RCC_CRS_SYNC_SOURCE(pInit->Source)); in HAL_RCCEx_CRSConfig()
3389 assert_param(IS_RCC_CRS_SYNC_POLARITY(pInit->Polarity)); in HAL_RCCEx_CRSConfig()
3390 assert_param(IS_RCC_CRS_RELOADVALUE(pInit->ReloadValue)); in HAL_RCCEx_CRSConfig()
3391 assert_param(IS_RCC_CRS_ERRORLIMIT(pInit->ErrorLimitValue)); in HAL_RCCEx_CRSConfig()
3392 assert_param(IS_RCC_CRS_HSI48CALIBRATION(pInit->HSI48CalibrationValue)); in HAL_RCCEx_CRSConfig()
3403 if ((HAL_GetREVID() <= REV_ID_Y) && (pInit->Source == RCC_CRS_SYNC_SOURCE_USB2)) in HAL_RCCEx_CRSConfig()
3406 value = (pInit->Prescaler | RCC_CRS_SYNC_SOURCE_PIN | pInit->Polarity); in HAL_RCCEx_CRSConfig()
3410 value = (pInit->Prescaler | pInit->Source | pInit->Polarity); in HAL_RCCEx_CRSConfig()
[all …]
/hal_stm32-latest/stm32cube/stm32h7rsxx/drivers/src/
Dstm32h7rsxx_hal_rcc_ex.c2890 void HAL_RCCEx_CRSConfig(const RCC_CRSInitTypeDef *pInit) in HAL_RCCEx_CRSConfig() argument
2895 assert_param(IS_RCC_CRS_SYNC_DIV(pInit->Prescaler)); in HAL_RCCEx_CRSConfig()
2896 assert_param(IS_RCC_CRS_SYNC_SOURCE(pInit->Source)); in HAL_RCCEx_CRSConfig()
2897 assert_param(IS_RCC_CRS_SYNC_POLARITY(pInit->Polarity)); in HAL_RCCEx_CRSConfig()
2898 assert_param(IS_RCC_CRS_RELOADVALUE(pInit->ReloadValue)); in HAL_RCCEx_CRSConfig()
2899 assert_param(IS_RCC_CRS_ERRORLIMIT(pInit->ErrorLimitValue)); in HAL_RCCEx_CRSConfig()
2900 assert_param(IS_RCC_CRS_HSI48CALIBRATION(pInit->HSI48CalibrationValue)); in HAL_RCCEx_CRSConfig()
2911 value = (pInit->Prescaler | pInit->Source | pInit->Polarity); in HAL_RCCEx_CRSConfig()
2913 value |= pInit->ReloadValue; in HAL_RCCEx_CRSConfig()
2915 value |= (pInit->ErrorLimitValue << CRS_CFGR_FELIM_Pos); in HAL_RCCEx_CRSConfig()
[all …]
/hal_stm32-latest/stm32cube/stm32l5xx/drivers/src/
Dstm32l5xx_hal_rcc_ex.c2114 void HAL_RCCEx_CRSConfig(RCC_CRSInitTypeDef *pInit) in HAL_RCCEx_CRSConfig() argument
2119 assert_param(IS_RCC_CRS_SYNC_DIV(pInit->Prescaler)); in HAL_RCCEx_CRSConfig()
2120 assert_param(IS_RCC_CRS_SYNC_SOURCE(pInit->Source)); in HAL_RCCEx_CRSConfig()
2121 assert_param(IS_RCC_CRS_SYNC_POLARITY(pInit->Polarity)); in HAL_RCCEx_CRSConfig()
2122 assert_param(IS_RCC_CRS_RELOADVALUE(pInit->ReloadValue)); in HAL_RCCEx_CRSConfig()
2123 assert_param(IS_RCC_CRS_ERRORLIMIT(pInit->ErrorLimitValue)); in HAL_RCCEx_CRSConfig()
2124 assert_param(IS_RCC_CRS_HSI48CALIBRATION(pInit->HSI48CalibrationValue)); in HAL_RCCEx_CRSConfig()
2135 value = (pInit->Prescaler | pInit->Source | pInit->Polarity); in HAL_RCCEx_CRSConfig()
2137 value |= pInit->ReloadValue; in HAL_RCCEx_CRSConfig()
2139 value |= (pInit->ErrorLimitValue << CRS_CFGR_FELIM_Pos); in HAL_RCCEx_CRSConfig()
[all …]
/hal_stm32-latest/stm32cube/stm32l4xx/drivers/src/
Dstm32l4xx_hal_rcc_ex.c2599 void HAL_RCCEx_CRSConfig(RCC_CRSInitTypeDef *pInit) in HAL_RCCEx_CRSConfig() argument
2604 assert_param(IS_RCC_CRS_SYNC_DIV(pInit->Prescaler)); in HAL_RCCEx_CRSConfig()
2605 assert_param(IS_RCC_CRS_SYNC_SOURCE(pInit->Source)); in HAL_RCCEx_CRSConfig()
2606 assert_param(IS_RCC_CRS_SYNC_POLARITY(pInit->Polarity)); in HAL_RCCEx_CRSConfig()
2607 assert_param(IS_RCC_CRS_RELOADVALUE(pInit->ReloadValue)); in HAL_RCCEx_CRSConfig()
2608 assert_param(IS_RCC_CRS_ERRORLIMIT(pInit->ErrorLimitValue)); in HAL_RCCEx_CRSConfig()
2609 assert_param(IS_RCC_CRS_HSI48CALIBRATION(pInit->HSI48CalibrationValue)); in HAL_RCCEx_CRSConfig()
2620 value = (pInit->Prescaler | pInit->Source | pInit->Polarity); in HAL_RCCEx_CRSConfig()
2622 value |= pInit->ReloadValue; in HAL_RCCEx_CRSConfig()
2624 value |= (pInit->ErrorLimitValue << CRS_CFGR_FELIM_Pos); in HAL_RCCEx_CRSConfig()
[all …]
/hal_stm32-latest/stm32cube/stm32u5xx/drivers/src/
Dstm32u5xx_hal_rcc_ex.c3773 void HAL_RCCEx_CRSConfig(const RCC_CRSInitTypeDef *const pInit) in HAL_RCCEx_CRSConfig() argument
3778 assert_param(IS_RCC_CRS_SYNC_DIV(pInit->Prescaler)); in HAL_RCCEx_CRSConfig()
3779 assert_param(IS_RCC_CRS_SYNC_SOURCE(pInit->Source)); in HAL_RCCEx_CRSConfig()
3780 assert_param(IS_RCC_CRS_SYNC_POLARITY(pInit->Polarity)); in HAL_RCCEx_CRSConfig()
3781 assert_param(IS_RCC_CRS_RELOADVALUE(pInit->ReloadValue)); in HAL_RCCEx_CRSConfig()
3782 assert_param(IS_RCC_CRS_ERRORLIMIT(pInit->ErrorLimitValue)); in HAL_RCCEx_CRSConfig()
3783 assert_param(IS_RCC_CRS_HSI48CALIBRATION(pInit->HSI48CalibrationValue)); in HAL_RCCEx_CRSConfig()
3794 value = (pInit->Prescaler | pInit->Source | pInit->Polarity); in HAL_RCCEx_CRSConfig()
3796 value |= pInit->ReloadValue; in HAL_RCCEx_CRSConfig()
3798 value |= (pInit->ErrorLimitValue << CRS_CFGR_FELIM_Pos); in HAL_RCCEx_CRSConfig()
[all …]
/hal_stm32-latest/stm32cube/stm32h5xx/drivers/src/
Dstm32h5xx_hal_rcc_ex.c5738 void HAL_RCCEx_CRSConfig(const RCC_CRSInitTypeDef *pInit) in HAL_RCCEx_CRSConfig() argument
5743 assert_param(IS_RCC_CRS_SYNC_DIV(pInit->Prescaler)); in HAL_RCCEx_CRSConfig()
5744 assert_param(IS_RCC_CRS_SYNC_SOURCE(pInit->Source)); in HAL_RCCEx_CRSConfig()
5745 assert_param(IS_RCC_CRS_SYNC_POLARITY(pInit->Polarity)); in HAL_RCCEx_CRSConfig()
5746 assert_param(IS_RCC_CRS_RELOADVALUE(pInit->ReloadValue)); in HAL_RCCEx_CRSConfig()
5747 assert_param(IS_RCC_CRS_ERRORLIMIT(pInit->ErrorLimitValue)); in HAL_RCCEx_CRSConfig()
5748 assert_param(IS_RCC_CRS_HSI48CALIBRATION(pInit->HSI48CalibrationValue)); in HAL_RCCEx_CRSConfig()
5759 value = (pInit->Prescaler | pInit->Source | pInit->Polarity); in HAL_RCCEx_CRSConfig()
5761 value |= pInit->ReloadValue; in HAL_RCCEx_CRSConfig()
5763 value |= (pInit->ErrorLimitValue << CRS_CFGR_FELIM_Pos); in HAL_RCCEx_CRSConfig()
[all …]
/hal_stm32-latest/stm32cube/stm32c0xx/drivers/include/
Dstm32c0xx_hal_rcc_ex.h690 void HAL_RCCEx_CRSConfig(RCC_CRSInitTypeDef *pInit);
/hal_stm32-latest/stm32cube/stm32u0xx/drivers/include/
Dstm32u0xx_hal_rcc_ex.h1119 void HAL_RCCEx_CRSConfig(const RCC_CRSInitTypeDef *const pInit);
/hal_stm32-latest/stm32cube/stm32wbxx/drivers/include/
Dstm32wbxx_hal_rcc_ex.h1628 void HAL_RCCEx_CRSConfig(RCC_CRSInitTypeDef *pInit);
/hal_stm32-latest/stm32cube/stm32g0xx/drivers/include/
Dstm32g0xx_hal_rcc_ex.h1218 void HAL_RCCEx_CRSConfig(RCC_CRSInitTypeDef *pInit);
/hal_stm32-latest/stm32cube/stm32g4xx/drivers/include/
Dstm32g4xx_hal_rcc_ex.h1299 void HAL_RCCEx_CRSConfig(RCC_CRSInitTypeDef *pInit);
/hal_stm32-latest/stm32cube/stm32h7rsxx/drivers/include/
Dstm32h7rsxx_hal_rcc_ex.h1694 void HAL_RCCEx_CRSConfig(const RCC_CRSInitTypeDef *pInit);
/hal_stm32-latest/stm32cube/stm32u5xx/drivers/include/
Dstm32u5xx_hal_rcc_ex.h2417 void HAL_RCCEx_CRSConfig(const RCC_CRSInitTypeDef *const pInit);
/hal_stm32-latest/stm32cube/stm32l5xx/drivers/include/
Dstm32l5xx_hal_rcc_ex.h1926 void HAL_RCCEx_CRSConfig(RCC_CRSInitTypeDef *pInit);
/hal_stm32-latest/stm32cube/stm32f0xx/drivers/include/
Dstm32f0xx_hal_rcc_ex.h2045 void HAL_RCCEx_CRSConfig(RCC_CRSInitTypeDef *pInit);
/hal_stm32-latest/stm32cube/stm32l4xx/drivers/include/
Dstm32l4xx_hal_rcc_ex.h2474 void HAL_RCCEx_CRSConfig(RCC_CRSInitTypeDef *pInit);
/hal_stm32-latest/stm32cube/stm32h5xx/drivers/include/
Dstm32h5xx_hal_rcc_ex.h3816 void HAL_RCCEx_CRSConfig(const RCC_CRSInitTypeDef *pInit);
/hal_stm32-latest/stm32cube/stm32l0xx/drivers/include/
Dstm32l0xx_hal_rcc_ex.h1984 void HAL_RCCEx_CRSConfig(RCC_CRSInitTypeDef *pInit);

12