vead
Full Member level 5
- Joined
- Nov 27, 2011
- Messages
- 285
- Helped
- 3
- Reputation
- 6
- Reaction score
- 3
- Trophy points
- 1,298
- Location
- india
- Activity points
- 3,815
hello
I need help to understand below statement
I don't understand what is meaning of Parameters , and Return Value?
I need help to understand below statement
void RTC_Start(void)
Descriptionerforms all the required calculations for the time and date registers and initializes the component along with the date and time selected in the customizer. If ‘Implement RTC update manually’ is disabled in the customizer and if WDT is selected as a source in the clocks configuration window (low frequency clocks tab), attaches the RTC_Update API to the corresponding WDT’s ISR callback.
Parameters:None
Return Value:None
Side Effects:None
void RTC_SetDateAndTime(uint32 time, uint32 date)
Description:Sets the time and date values as current time and date.
Parameters:
time: Time value in "HH:MM:SS" format.
date: Date value in format selected in customizer.
Return Value:None
Side Effects:None
void RTC_GetDateAndTime(RTC_DATE_TIME* dateTime)
Description: Reads the current time and date.
Parameters:
dateTime: Pointer to the RTC_date_time structure in which
Time and Date is returned.
Return Value:None
Side Effects:
None
I don't understand what is meaning of Parameters , and Return Value?
Last edited by a moderator: