RTCDate


Definitions

#include <nitro/rtc.h>
typedef struct {
         u32        year;
         u32        month;
         u32        day;
         RTCWeek week;
} RTCDate;

Description

This structure indicates the real time clock's date, including year, month, day, and day of the week.

Elements

year Numerical value 0 – 99 indicates the year.
month Numerical value 1 – 12 indicates the month.
day Numerical value 1 – 31 indicates the day.
week The value of the RTCWeek that indicates the day of the week.

See Also

RTCWeek

Revision History

05/18/2004 Initial Version