Searched refs:Seconds (Results 1 – 8 of 8) sorted by relevance
/lk-master/external/platform/stm32f0xx/STM32F0xx_HAL_Driver/ |
A D | stm32f0xx_ll_rtc.c | 294 assert_param(IS_LL_RTC_SECONDS(RTC_TimeStruct->Seconds)); in LL_RTC_TIME_Init() 309 assert_param(IS_LL_RTC_SECONDS(__LL_RTC_CONVERT_BCD2BIN(RTC_TimeStruct->Seconds))); in LL_RTC_TIME_Init() 322 RTC_TimeStruct->Minutes, RTC_TimeStruct->Seconds); in LL_RTC_TIME_Init() 328 __LL_RTC_CONVERT_BIN2BCD(RTC_TimeStruct->Seconds)); in LL_RTC_TIME_Init() 361 RTC_TimeStruct->Seconds = 0U; in LL_RTC_TIME_StructInit() 487 assert_param(IS_LL_RTC_SECONDS(RTC_AlarmStruct->AlarmTime.Seconds)); in LL_RTC_ALMA_Init() 512 assert_param(IS_LL_RTC_SECONDS(__LL_RTC_CONVERT_BCD2BIN(RTC_AlarmStruct->AlarmTime.Seconds))); in LL_RTC_ALMA_Init() 552 RTC_AlarmStruct->AlarmTime.Minutes, RTC_AlarmStruct->AlarmTime.Seconds); in LL_RTC_ALMA_Init() 559 __LL_RTC_CONVERT_BIN2BCD(RTC_AlarmStruct->AlarmTime.Seconds)); in LL_RTC_ALMA_Init() 582 RTC_AlarmStruct->AlarmTime.Seconds = 0U; in LL_RTC_ALMA_StructInit()
|
A D | stm32f0xx_hal_rtc.c | 437 assert_param(IS_RTC_SECONDS(sTime->Seconds)); in HAL_RTC_SetTime() 441 ((uint32_t)RTC_ByteToBcd2(sTime->Seconds)) | \ in HAL_RTC_SetTime() 458 assert_param(IS_RTC_SECONDS(RTC_Bcd2ToByte(sTime->Seconds))); in HAL_RTC_SetTime() 461 ((uint32_t)sTime->Seconds) | \ in HAL_RTC_SetTime() 564 sTime->Seconds = (uint8_t)(tmpreg & (RTC_TR_ST | RTC_TR_SU)); in HAL_RTC_GetTime() 573 sTime->Seconds = (uint8_t)RTC_Bcd2ToByte(sTime->Seconds); in HAL_RTC_GetTime() 785 assert_param(IS_RTC_SECONDS(sAlarm->AlarmTime.Seconds)); in HAL_RTC_SetAlarm() 834 ((uint32_t) sAlarm->AlarmTime.Seconds) | \ in HAL_RTC_SetAlarm() 933 assert_param(IS_RTC_SECONDS(sAlarm->AlarmTime.Seconds)); in HAL_RTC_SetAlarm_IT() 980 ((uint32_t) sAlarm->AlarmTime.Seconds) | \ in HAL_RTC_SetAlarm_IT() [all …]
|
A D | stm32f0xx_hal_rtc_ex.c | 312 sTimeStamp->Seconds = (uint8_t)(tmptime & (RTC_TR_ST | RTC_TR_SU)); in HAL_RTCEx_GetTimeStamp() 328 sTimeStamp->Seconds = (uint8_t)RTC_Bcd2ToByte(sTimeStamp->Seconds); in HAL_RTCEx_GetTimeStamp()
|
/lk-master/external/platform/stm32f7xx/STM32F7xx_HAL_Driver/Src/ |
A D | stm32f7xx_hal_rtc.c | 445 assert_param(IS_RTC_SECONDS(sTime->Seconds)); in HAL_RTC_SetTime() 449 ((uint32_t)RTC_ByteToBcd2(sTime->Seconds)) | \ in HAL_RTC_SetTime() 461 assert_param(IS_RTC_SECONDS(RTC_Bcd2ToByte(sTime->Seconds))); in HAL_RTC_SetTime() 464 ((uint32_t)sTime->Seconds) | \ in HAL_RTC_SetTime() 559 sTime->Seconds = (uint8_t)(tmpreg & (RTC_TR_ST | RTC_TR_SU)); in HAL_RTC_GetTime() 567 sTime->Seconds = (uint8_t)RTC_Bcd2ToByte(sTime->Seconds); in HAL_RTC_GetTime() 768 assert_param(IS_RTC_SECONDS(sAlarm->AlarmTime.Seconds)); in HAL_RTC_SetAlarm() 806 ((uint32_t) sAlarm->AlarmTime.Seconds) | \ in HAL_RTC_SetAlarm() 935 assert_param(IS_RTC_SECONDS(sAlarm->AlarmTime.Seconds)); in HAL_RTC_SetAlarm_IT() 971 ((uint32_t) sAlarm->AlarmTime.Seconds) | \ in HAL_RTC_SetAlarm_IT() [all …]
|
A D | stm32f7xx_hal_rtc_ex.c | 393 sTimeStamp->Seconds = (uint8_t)(tmptime & (RTC_TR_ST | RTC_TR_SU)); in HAL_RTCEx_GetTimeStamp() 408 sTimeStamp->Seconds = (uint8_t)RTC_Bcd2ToByte(sTimeStamp->Seconds); in HAL_RTCEx_GetTimeStamp()
|
/lk-master/external/platform/stm32f0xx/STM32F0xx_HAL_Driver/inc/ |
A D | stm32f0xx_ll_rtc.h | 144 uint8_t Seconds; /*!< Specifies the RTC Time Seconds. member 1201 __STATIC_INLINE void LL_RTC_TIME_SetSecond(RTC_TypeDef *RTCx, uint32_t Seconds) in LL_RTC_TIME_SetSecond() argument 1204 (((Seconds & 0xF0U) << (RTC_TR_ST_Pos - 4U)) | ((Seconds & 0x0FU) << RTC_TR_SU_Pos))); in LL_RTC_TIME_SetSecond() 1249 …Config(RTC_TypeDef *RTCx, uint32_t Format12_24, uint32_t Hours, uint32_t Minutes, uint32_t Seconds) in LL_RTC_TIME_Config() argument 1256 (((Seconds & 0xF0U) << (RTC_TR_ST_Pos - 4U)) | ((Seconds & 0x0FU) << RTC_TR_SU_Pos)); in LL_RTC_TIME_Config() 1888 __STATIC_INLINE void LL_RTC_ALMA_SetSecond(RTC_TypeDef *RTCx, uint32_t Seconds) in LL_RTC_ALMA_SetSecond() argument 1891 … (((Seconds & 0xF0U) << (RTC_ALRMAR_ST_Pos - 4U)) | ((Seconds & 0x0FU) << RTC_ALRMAR_SU_Pos))); in LL_RTC_ALMA_SetSecond() 1928 …igTime(RTC_TypeDef *RTCx, uint32_t Format12_24, uint32_t Hours, uint32_t Minutes, uint32_t Seconds) in LL_RTC_ALMA_ConfigTime() argument 1934 … (((Seconds & 0xF0U) << (RTC_ALRMAR_ST_Pos - 4U)) | ((Seconds & 0x0FU) << RTC_ALRMAR_SU_Pos)); in LL_RTC_ALMA_ConfigTime()
|
A D | stm32f0xx_hal_rtc.h | 109 uint8_t Seconds; /*!< Specifies the RTC Time Seconds. member
|
/lk-master/external/platform/stm32f7xx/STM32F7xx_HAL_Driver/Inc/ |
A D | stm32f7xx_hal_rtc.h | 108 uint8_t Seconds; /*!< Specifies the RTC Time Seconds. member
|
Completed in 21 milliseconds