Home
last modified time | relevance | path

Searched refs:timeout (Results 1 – 25 of 86) sorted by relevance

1234

/hal_stm32-latest/stm32cube/stm32f2xx/drivers/src/
Dstm32f2xx_hal_pccard.c310 uint32_t timeout = 0U; in HAL_PCCARD_Read_ID() local
324 timeout = PCCARD_TIMEOUT_READ_ID; in HAL_PCCARD_Read_ID()
341 timeout--; in HAL_PCCARD_Read_ID()
342 } while ((status != PCCARD_STATUS_OK) && timeout); in HAL_PCCARD_Read_ID()
344 if (timeout == 0U) in HAL_PCCARD_Read_ID()
378 uint32_t timeout = 0U; in HAL_PCCARD_Read_Sector() local
392 timeout = PCCARD_TIMEOUT_READ_WRITE_SECTOR; in HAL_PCCARD_Read_Sector()
409 timeout--; in HAL_PCCARD_Read_Sector()
410 } while ((status == 0x80U) && timeout); in HAL_PCCARD_Read_Sector()
412 if (timeout == 0U) in HAL_PCCARD_Read_Sector()
[all …]
/hal_stm32-latest/stm32cube/stm32f3xx/drivers/src/
Dstm32f3xx_hal_pccard.c310 uint32_t timeout = PCCARD_TIMEOUT_READ_ID, index = 0U; in HAL_PCCARD_Read_ID() local
337 timeout--; in HAL_PCCARD_Read_ID()
338 } while ((status != PCCARD_STATUS_OK) && timeout); in HAL_PCCARD_Read_ID()
340 if (timeout == 0U) in HAL_PCCARD_Read_ID()
374 uint32_t timeout = PCCARD_TIMEOUT_READ_WRITE_SECTOR, index = 0U; in HAL_PCCARD_Read_Sector() local
401 timeout--; in HAL_PCCARD_Read_Sector()
402 } while ((status == 0x80U) && timeout); in HAL_PCCARD_Read_Sector()
404 if (timeout == 0U) in HAL_PCCARD_Read_Sector()
409 timeout = PCCARD_TIMEOUT_READ_WRITE_SECTOR; in HAL_PCCARD_Read_Sector()
415 timeout--; in HAL_PCCARD_Read_Sector()
[all …]
/hal_stm32-latest/stm32cube/stm32f4xx/drivers/src/
Dstm32f4xx_hal_pccard.c310 uint32_t timeout = PCCARD_TIMEOUT_READ_ID, index = 0U; in HAL_PCCARD_Read_ID() local
337 timeout--; in HAL_PCCARD_Read_ID()
338 } while ((status != PCCARD_STATUS_OK) && timeout); in HAL_PCCARD_Read_ID()
340 if (timeout == 0U) in HAL_PCCARD_Read_ID()
374 uint32_t timeout = PCCARD_TIMEOUT_READ_WRITE_SECTOR, index = 0U; in HAL_PCCARD_Read_Sector() local
401 timeout--; in HAL_PCCARD_Read_Sector()
402 } while ((status == 0x80U) && timeout); in HAL_PCCARD_Read_Sector()
404 if (timeout == 0U) in HAL_PCCARD_Read_Sector()
409 timeout = PCCARD_TIMEOUT_READ_WRITE_SECTOR; in HAL_PCCARD_Read_Sector()
415 timeout--; in HAL_PCCARD_Read_Sector()
[all …]
/hal_stm32-latest/stm32cube/stm32f1xx/drivers/src/
Dstm32f1xx_hal_pccard.c311 uint32_t timeout = 0U; in HAL_PCCARD_Read_ID() local
339 timeout--; in HAL_PCCARD_Read_ID()
340 } while ((status != PCCARD_STATUS_OK) && timeout); in HAL_PCCARD_Read_ID()
342 if (timeout == 0U) in HAL_PCCARD_Read_ID()
376 uint32_t timeout = 0U; in HAL_PCCARD_Read_Sector() local
404 timeout--; in HAL_PCCARD_Read_Sector()
405 } while ((status == 0x80U) && timeout); in HAL_PCCARD_Read_Sector()
407 if (timeout == 0U) in HAL_PCCARD_Read_Sector()
412 timeout = PCCARD_TIMEOUT_READ_WRITE_SECTOR; in HAL_PCCARD_Read_Sector()
418 timeout--; in HAL_PCCARD_Read_Sector()
[all …]
Dstm32f1xx_ll_rtc.c366 __IO uint32_t timeout = RTC_INITMODE_TIMEOUT; in LL_RTC_EnterInitMode() local
375 while ((timeout != 0U) && (tmp != 1U)) in LL_RTC_EnterInitMode()
379 timeout --; in LL_RTC_EnterInitMode()
382 if (timeout == 0U) in LL_RTC_EnterInitMode()
405 __IO uint32_t timeout = RTC_INITMODE_TIMEOUT; in LL_RTC_ExitInitMode() local
417 while ((timeout != 0U) && (tmp != 1U)) in LL_RTC_ExitInitMode()
421 timeout --; in LL_RTC_ExitInitMode()
424 if (timeout == 0U) in LL_RTC_ExitInitMode()
495 __IO uint32_t timeout = RTC_SYNCHRO_TIMEOUT; in LL_RTC_WaitForSynchro() local
507 while ((timeout != 0U) && (tmp != 0U)) in LL_RTC_WaitForSynchro()
[all …]
/hal_stm32-latest/stm32cube/stm32wbaxx/drivers/src/
Dstm32wbaxx_hal_pwr_ex.c216 uint32_t timeout; in HAL_PWREx_ControlVoltageScaling() local
235 timeout = ((PWR_VOSF_SETTING_DELAY_VALUE * SystemCoreClock) / 1000000U) + 1U; in HAL_PWREx_ControlVoltageScaling()
236 while (HAL_IS_BIT_CLR(PWR->VOSR, PWR_VOSR_VOSRDY) && (timeout != 0U)) in HAL_PWREx_ControlVoltageScaling()
238 timeout--; in HAL_PWREx_ControlVoltageScaling()
242 if (timeout == 0U) in HAL_PWREx_ControlVoltageScaling()
248 timeout = ((PWR_VOSF_SETTING_DELAY_VALUE * SystemCoreClock) / 1000000U) + 1U; in HAL_PWREx_ControlVoltageScaling()
249 while ((HAL_IS_BIT_CLR(PWR->SVMSR, PWR_SVMSR_ACTVOSRDY)) && (timeout != 0U)) in HAL_PWREx_ControlVoltageScaling()
251 timeout--; in HAL_PWREx_ControlVoltageScaling()
255 if (timeout == 0U) in HAL_PWREx_ControlVoltageScaling()
283 uint32_t timeout; in HAL_PWREx_ConfigSupply() local
[all …]
/hal_stm32-latest/stm32cube/stm32f4xx/soc/
Dsystem_stm32f4xx.c283 register uint32_t tmpreg = 0, timeout = 0xFFFF; in SystemInit_ExtMemCtl() local
377 while((tmpreg != 0) && (timeout-- > 0)) in SystemInit_ExtMemCtl()
388 timeout = 0xFFFF; in SystemInit_ExtMemCtl()
389 while((tmpreg != 0) && (timeout-- > 0)) in SystemInit_ExtMemCtl()
397 timeout = 0xFFFF; in SystemInit_ExtMemCtl()
398 while((tmpreg != 0) && (timeout-- > 0)) in SystemInit_ExtMemCtl()
406 timeout = 0xFFFF; in SystemInit_ExtMemCtl()
407 while((tmpreg != 0) && (timeout-- > 0)) in SystemInit_ExtMemCtl()
451 register uint32_t tmpreg = 0, timeout = 0xFFFF; in SystemInit_ExtMemCtl() local
585 while((tmpreg != 0) && (timeout-- > 0)) in SystemInit_ExtMemCtl()
[all …]
/hal_stm32-latest/stm32cube/stm32c0xx/drivers/src/
Dstm32c0xx_ll_rtc.c573 __IO uint32_t timeout = RTC_INITMODE_TIMEOUT; in LL_RTC_EnterInitMode() local
588 while ((timeout != 0U) && (tmp != 1U)) in LL_RTC_EnterInitMode()
592 timeout --; in LL_RTC_EnterInitMode()
595 if (timeout == 0U) in LL_RTC_EnterInitMode()
644 __IO uint32_t timeout = RTC_SYNCHRO_TIMEOUT; in LL_RTC_WaitForSynchro() local
656 while ((timeout != 0U) && (tmp != 0U)) in LL_RTC_WaitForSynchro()
660 timeout--; in LL_RTC_WaitForSynchro()
663 if (timeout == 0U) in LL_RTC_WaitForSynchro()
671 timeout = RTC_SYNCHRO_TIMEOUT; in LL_RTC_WaitForSynchro()
673 while ((timeout != 0U) && (tmp != 1U)) in LL_RTC_WaitForSynchro()
[all …]
/hal_stm32-latest/stm32cube/stm32u0xx/drivers/src/
Dstm32u0xx_ll_rtc.c733 __IO uint32_t timeout = RTC_INITMODE_TIMEOUT; in LL_RTC_EnterInitMode() local
748 while ((timeout != 0U) && (tmp != 1U)) in LL_RTC_EnterInitMode()
752 timeout --; in LL_RTC_EnterInitMode()
755 if (timeout == 0U) in LL_RTC_EnterInitMode()
804 __IO uint32_t timeout = RTC_SYNCHRO_TIMEOUT; in LL_RTC_WaitForSynchro() local
816 while ((timeout != 0U) && (tmp != 0U)) in LL_RTC_WaitForSynchro()
820 timeout--; in LL_RTC_WaitForSynchro()
823 if (timeout == 0U) in LL_RTC_WaitForSynchro()
831 timeout = RTC_SYNCHRO_TIMEOUT; in LL_RTC_WaitForSynchro()
833 while ((timeout != 0U) && (tmp != 1U)) in LL_RTC_WaitForSynchro()
[all …]
/hal_stm32-latest/stm32cube/stm32h7xx/drivers/src/
Dstm32h7xx_ll_rtc.c740 __IO uint32_t timeout = RTC_INITMODE_TIMEOUT; in LL_RTC_EnterInitMode() local
755 while ((timeout != 0U) && (tmp != 1U)) in LL_RTC_EnterInitMode()
759 timeout --; in LL_RTC_EnterInitMode()
762 if (timeout == 0U) in LL_RTC_EnterInitMode()
811 __IO uint32_t timeout = RTC_SYNCHRO_TIMEOUT; in LL_RTC_WaitForSynchro() local
823 while ((timeout != 0U) && (tmp != 0U)) in LL_RTC_WaitForSynchro()
827 timeout--; in LL_RTC_WaitForSynchro()
830 if (timeout == 0U) in LL_RTC_WaitForSynchro()
838 timeout = RTC_SYNCHRO_TIMEOUT; in LL_RTC_WaitForSynchro()
840 while ((timeout != 0U) && (tmp != 1U)) in LL_RTC_WaitForSynchro()
[all …]
/hal_stm32-latest/stm32cube/stm32g0xx/drivers/src/
Dstm32g0xx_ll_rtc.c724 __IO uint32_t timeout = RTC_INITMODE_TIMEOUT; in LL_RTC_EnterInitMode() local
739 while ((timeout != 0U) && (tmp != 1U)) in LL_RTC_EnterInitMode()
743 timeout --; in LL_RTC_EnterInitMode()
746 if (timeout == 0U) in LL_RTC_EnterInitMode()
795 __IO uint32_t timeout = RTC_SYNCHRO_TIMEOUT; in LL_RTC_WaitForSynchro() local
807 while ((timeout != 0U) && (tmp != 0U)) in LL_RTC_WaitForSynchro()
811 timeout--; in LL_RTC_WaitForSynchro()
814 if (timeout == 0U) in LL_RTC_WaitForSynchro()
822 timeout = RTC_SYNCHRO_TIMEOUT; in LL_RTC_WaitForSynchro()
824 while ((timeout != 0U) && (tmp != 1U)) in LL_RTC_WaitForSynchro()
[all …]
/hal_stm32-latest/stm32cube/stm32u5xx/drivers/src/
Dstm32u5xx_hal_pwr_ex.c342 uint32_t timeout; in HAL_PWREx_ControlVoltageScaling() local
379 timeout = ((PWR_FLAG_SETTING_DELAY * (SystemCoreClock / 1000U)) / 1000U) + 1U; in HAL_PWREx_ControlVoltageScaling()
380 while (HAL_IS_BIT_CLR(PWR->VOSR, PWR_VOSR_VOSRDY) && (timeout != 0U)) in HAL_PWREx_ControlVoltageScaling()
382 timeout--; in HAL_PWREx_ControlVoltageScaling()
386 if (timeout != 0U) in HAL_PWREx_ControlVoltageScaling()
389 timeout = ((PWR_FLAG_SETTING_DELAY * (SystemCoreClock / 1000U)) / 1000U) + 1U; in HAL_PWREx_ControlVoltageScaling()
390 while ((HAL_IS_BIT_CLR(PWR->SVMSR, PWR_SVMSR_ACTVOSRDY)) && (timeout != 0U)) in HAL_PWREx_ControlVoltageScaling()
392 timeout--; in HAL_PWREx_ControlVoltageScaling()
397 if (timeout == 0U) in HAL_PWREx_ControlVoltageScaling()
425 uint32_t timeout; in HAL_PWREx_ConfigSupply() local
[all …]
Dstm32u5xx_ll_rtc.c747 __IO uint32_t timeout = RTC_INITMODE_TIMEOUT; in LL_RTC_EnterInitMode() local
762 while ((timeout != 0U) && (tmp != 1U)) in LL_RTC_EnterInitMode()
766 timeout --; in LL_RTC_EnterInitMode()
769 if (timeout == 0U) in LL_RTC_EnterInitMode()
818 __IO uint32_t timeout = RTC_SYNCHRO_TIMEOUT; in LL_RTC_WaitForSynchro() local
830 while ((timeout != 0U) && (tmp != 0U)) in LL_RTC_WaitForSynchro()
834 timeout--; in LL_RTC_WaitForSynchro()
837 if (timeout == 0U) in LL_RTC_WaitForSynchro()
845 timeout = RTC_SYNCHRO_TIMEOUT; in LL_RTC_WaitForSynchro()
847 while ((timeout != 0U) && (tmp != 1U)) in LL_RTC_WaitForSynchro()
[all …]
/hal_stm32-latest/stm32cube/stm32h5xx/drivers/include/
Dstm32h5xx_hal_i3c.h1178 uint32_t timeout);
1187 uint32_t timeout);
1196 uint32_t timeout);
1205 uint32_t timeout);
1223 uint32_t timeout);
1228 uint32_t timeout);
1232 uint32_t timeout);
1234 HAL_StatusTypeDef HAL_I3C_Ctrl_GenerateArbitration(I3C_HandleTypeDef *hi3c, uint32_t timeout);
1243 …ypeDef HAL_I3C_Tgt_Transmit(I3C_HandleTypeDef *hi3c, I3C_XferTypeDef *pXferData, uint32_t timeout);
1246 …TypeDef HAL_I3C_Tgt_Receive(I3C_HandleTypeDef *hi3c, I3C_XferTypeDef *pXferData, uint32_t timeout);
[all …]
/hal_stm32-latest/stm32cube/stm32h7rsxx/drivers/include/
Dstm32h7rsxx_hal_i3c.h1178 uint32_t timeout);
1187 uint32_t timeout);
1196 uint32_t timeout);
1205 uint32_t timeout);
1223 uint32_t timeout);
1228 uint32_t timeout);
1232 uint32_t timeout);
1234 HAL_StatusTypeDef HAL_I3C_Ctrl_GenerateArbitration(I3C_HandleTypeDef *hi3c, uint32_t timeout);
1243 …ypeDef HAL_I3C_Tgt_Transmit(I3C_HandleTypeDef *hi3c, I3C_XferTypeDef *pXferData, uint32_t timeout);
1246 …TypeDef HAL_I3C_Tgt_Receive(I3C_HandleTypeDef *hi3c, I3C_XferTypeDef *pXferData, uint32_t timeout);
[all …]
/hal_stm32-latest/stm32cube/stm32n6xx/drivers/include/
Dstm32n6xx_hal_i3c.h1178 uint32_t timeout);
1187 uint32_t timeout);
1196 uint32_t timeout);
1205 uint32_t timeout);
1223 uint32_t timeout);
1228 uint32_t timeout);
1232 uint32_t timeout);
1234 HAL_StatusTypeDef HAL_I3C_Ctrl_GenerateArbitration(I3C_HandleTypeDef *hi3c, uint32_t timeout);
1243 …ypeDef HAL_I3C_Tgt_Transmit(I3C_HandleTypeDef *hi3c, I3C_XferTypeDef *pXferData, uint32_t timeout);
1246 …TypeDef HAL_I3C_Tgt_Receive(I3C_HandleTypeDef *hi3c, I3C_XferTypeDef *pXferData, uint32_t timeout);
[all …]
/hal_stm32-latest/stm32cube/stm32wlxx/drivers/src/
Dstm32wlxx_ll_rtc.c756 __IO uint32_t timeout = RTC_INITMODE_TIMEOUT; in LL_RTC_EnterInitMode() local
771 while ((timeout != 0U) && (tmp != 1U)) in LL_RTC_EnterInitMode()
775 timeout --; in LL_RTC_EnterInitMode()
778 if (timeout == 0U) in LL_RTC_EnterInitMode()
827 __IO uint32_t timeout = RTC_SYNCHRO_TIMEOUT; in LL_RTC_WaitForSynchro() local
839 while ((timeout != 0U) && (tmp != 0U)) in LL_RTC_WaitForSynchro()
843 timeout--; in LL_RTC_WaitForSynchro()
846 if (timeout == 0U) in LL_RTC_WaitForSynchro()
854 timeout = RTC_SYNCHRO_TIMEOUT; in LL_RTC_WaitForSynchro()
856 while ((timeout != 0U) && (tmp != 1U)) in LL_RTC_WaitForSynchro()
[all …]
/hal_stm32-latest/stm32cube/stm32l5xx/drivers/src/
Dstm32l5xx_ll_rtc.c744 __IO uint32_t timeout = RTC_INITMODE_TIMEOUT; in LL_RTC_EnterInitMode() local
759 while ((timeout != 0U) && (tmp != 1U)) in LL_RTC_EnterInitMode()
763 timeout --; in LL_RTC_EnterInitMode()
766 if (timeout == 0U) in LL_RTC_EnterInitMode()
815 __IO uint32_t timeout = RTC_SYNCHRO_TIMEOUT; in LL_RTC_WaitForSynchro() local
827 while ((timeout != 0U) && (tmp != 0U)) in LL_RTC_WaitForSynchro()
831 timeout--; in LL_RTC_WaitForSynchro()
834 if (timeout == 0U) in LL_RTC_WaitForSynchro()
842 timeout = RTC_SYNCHRO_TIMEOUT; in LL_RTC_WaitForSynchro()
844 while ((timeout != 0U) && (tmp != 1U)) in LL_RTC_WaitForSynchro()
[all …]
/hal_stm32-latest/stm32cube/stm32mp1xx/drivers/src/
Dstm32mp1xx_ll_rtc.c740 __IO uint32_t timeout = RTC_INITMODE_TIMEOUT; in LL_RTC_EnterInitMode() local
755 while ((timeout != 0U) && (tmp != 1U)) in LL_RTC_EnterInitMode()
759 timeout --; in LL_RTC_EnterInitMode()
762 if (timeout == 0U) in LL_RTC_EnterInitMode()
811 __IO uint32_t timeout = RTC_SYNCHRO_TIMEOUT; in LL_RTC_WaitForSynchro() local
823 while ((timeout != 0U) && (tmp != 0U)) in LL_RTC_WaitForSynchro()
827 timeout--; in LL_RTC_WaitForSynchro()
830 if (timeout == 0U) in LL_RTC_WaitForSynchro()
838 timeout = RTC_SYNCHRO_TIMEOUT; in LL_RTC_WaitForSynchro()
840 while ((timeout != 0U) && (tmp != 1U)) in LL_RTC_WaitForSynchro()
[all …]
/hal_stm32-latest/stm32cube/stm32g4xx/drivers/src/
Dstm32g4xx_ll_rtc.c747 __IO uint32_t timeout = RTC_INITMODE_TIMEOUT; in LL_RTC_EnterInitMode() local
762 while ((timeout != 0U) && (tmp != 1U)) in LL_RTC_EnterInitMode()
766 timeout --; in LL_RTC_EnterInitMode()
769 if (timeout == 0U) in LL_RTC_EnterInitMode()
818 __IO uint32_t timeout = RTC_SYNCHRO_TIMEOUT; in LL_RTC_WaitForSynchro() local
830 while ((timeout != 0U) && (tmp != 0U)) in LL_RTC_WaitForSynchro()
834 timeout--; in LL_RTC_WaitForSynchro()
837 if (timeout == 0U) in LL_RTC_WaitForSynchro()
845 timeout = RTC_SYNCHRO_TIMEOUT; in LL_RTC_WaitForSynchro()
847 while ((timeout != 0U) && (tmp != 1U)) in LL_RTC_WaitForSynchro()
[all …]
/hal_stm32-latest/stm32cube/stm32n6xx/drivers/src/
Dstm32n6xx_hal_i3c.c537 static HAL_StatusTypeDef I3C_WaitOnDAAUntilTimeout(I3C_HandleTypeDef *hi3c, uint32_t timeout, uint3…
539 uint32_t timeout, uint32_t tickstart);
572 uint32_t timeout);
2743 uint32_t timeout) in HAL_I3C_Ctrl_TransmitCCC() argument
2841 if (timeout != HAL_MAX_DELAY) in HAL_I3C_Ctrl_TransmitCCC()
2843 if (((HAL_GetTick() - tickstart) > timeout) || (timeout == 0U)) in HAL_I3C_Ctrl_TransmitCCC()
3193 uint32_t timeout) in HAL_I3C_Ctrl_ReceiveCCC() argument
3306 if (timeout != HAL_MAX_DELAY) in HAL_I3C_Ctrl_ReceiveCCC()
3308 if (((HAL_GetTick() - tickstart) > timeout) || (timeout == 0U)) in HAL_I3C_Ctrl_ReceiveCCC()
3745 uint32_t timeout) in HAL_I3C_Ctrl_Transmit() argument
[all …]
/hal_stm32-latest/stm32cube/stm32h7rsxx/drivers/src/
Dstm32h7rsxx_hal_i3c.c537 static HAL_StatusTypeDef I3C_WaitOnDAAUntilTimeout(I3C_HandleTypeDef *hi3c, uint32_t timeout, uint3…
539 uint32_t timeout, uint32_t tickstart);
572 uint32_t timeout);
2743 uint32_t timeout) in HAL_I3C_Ctrl_TransmitCCC() argument
2841 if (timeout != HAL_MAX_DELAY) in HAL_I3C_Ctrl_TransmitCCC()
2843 if (((HAL_GetTick() - tickstart) > timeout) || (timeout == 0U)) in HAL_I3C_Ctrl_TransmitCCC()
3193 uint32_t timeout) in HAL_I3C_Ctrl_ReceiveCCC() argument
3306 if (timeout != HAL_MAX_DELAY) in HAL_I3C_Ctrl_ReceiveCCC()
3308 if (((HAL_GetTick() - tickstart) > timeout) || (timeout == 0U)) in HAL_I3C_Ctrl_ReceiveCCC()
3745 uint32_t timeout) in HAL_I3C_Ctrl_Transmit() argument
[all …]
/hal_stm32-latest/stm32cube/stm32h5xx/drivers/src/
Dstm32h5xx_hal_i3c.c537 static HAL_StatusTypeDef I3C_WaitOnDAAUntilTimeout(I3C_HandleTypeDef *hi3c, uint32_t timeout, uint3…
539 uint32_t timeout, uint32_t tickstart);
572 uint32_t timeout);
2743 uint32_t timeout) in HAL_I3C_Ctrl_TransmitCCC() argument
2841 if (timeout != HAL_MAX_DELAY) in HAL_I3C_Ctrl_TransmitCCC()
2843 if (((HAL_GetTick() - tickstart) > timeout) || (timeout == 0U)) in HAL_I3C_Ctrl_TransmitCCC()
3193 uint32_t timeout) in HAL_I3C_Ctrl_ReceiveCCC() argument
3306 if (timeout != HAL_MAX_DELAY) in HAL_I3C_Ctrl_ReceiveCCC()
3308 if (((HAL_GetTick() - tickstart) > timeout) || (timeout == 0U)) in HAL_I3C_Ctrl_ReceiveCCC()
3745 uint32_t timeout) in HAL_I3C_Ctrl_Transmit() argument
[all …]
/hal_stm32-latest/stm32cube/stm32f0xx/drivers/src/
Dstm32f0xx_ll_rtc.c575 __IO uint32_t timeout = RTC_INITMODE_TIMEOUT; in LL_RTC_EnterInitMode() local
590 while ((timeout != 0U) && (tmp != 1U)) in LL_RTC_EnterInitMode()
594 timeout --; in LL_RTC_EnterInitMode()
597 if (timeout == 0U) in LL_RTC_EnterInitMode()
646 __IO uint32_t timeout = RTC_SYNCHRO_TIMEOUT; in LL_RTC_WaitForSynchro() local
658 while ((timeout != 0U) && (tmp != 1U)) in LL_RTC_WaitForSynchro()
662 timeout--; in LL_RTC_WaitForSynchro()
665 if (timeout == 0U) in LL_RTC_WaitForSynchro()
/hal_stm32-latest/stm32cube/stm32wb0x/drivers/src/
Dstm32wb0x_ll_rtc.c566 __IO uint32_t timeout = RTC_INITMODE_TIMEOUT; in LL_RTC_EnterInitMode() local
581 while ((timeout != 0U) && (tmp != 1U)) in LL_RTC_EnterInitMode()
585 timeout --; in LL_RTC_EnterInitMode()
588 if (timeout == 0U) in LL_RTC_EnterInitMode()
637 __IO uint32_t timeout = RTC_SYNCHRO_TIMEOUT; in LL_RTC_WaitForSynchro() local
649 while ((timeout != 0U) && (tmp != 1U)) in LL_RTC_WaitForSynchro()
653 timeout--; in LL_RTC_WaitForSynchro()
656 if (timeout == 0U) in LL_RTC_WaitForSynchro()

1234