Lines Matching refs:pstcAlarmTime
204 en_result_t Rtc_SetAlarmTime(stc_rtc_alarmset_t* pstcAlarmTime) in Rtc_SetAlarmTime() argument
207 ASSERT(NULL != pstcAlarmTime); in Rtc_SetAlarmTime()
210 enRet = Check_BCD_Format(pstcAlarmTime->u8Hour,0x00,0x12); in Rtc_SetAlarmTime()
214 enRet = Check_BCD_Format(pstcAlarmTime->u8Hour,0x00,0x24); in Rtc_SetAlarmTime()
220 enRet = Check_BCD_Format(pstcAlarmTime->u8Minute,0x00,0x59); in Rtc_SetAlarmTime()
230 M0P_RTC->ALMHOUR = pstcAlarmTime->u8Hour; in Rtc_SetAlarmTime()
231 M0P_RTC->ALMMIN = pstcAlarmTime->u8Minute; in Rtc_SetAlarmTime()
232 M0P_RTC->ALMWEEK = pstcAlarmTime->u8Week; in Rtc_SetAlarmTime()
245 en_result_t Rtc_GetAlarmTime(stc_rtc_alarmset_t* pstcAlarmTime) in Rtc_GetAlarmTime() argument
248 ASSERT(NULL != pstcAlarmTime); in Rtc_GetAlarmTime()
249 pstcAlarmTime->u8Minute = M0P_RTC->ALMMIN; in Rtc_GetAlarmTime()
250 pstcAlarmTime->u8Hour = M0P_RTC->ALMHOUR; in Rtc_GetAlarmTime()
251 pstcAlarmTime->u8Week = M0P_RTC->ALMWEEK; in Rtc_GetAlarmTime()