#include <nitro/rtc.h>typedef struct {
u32 year;
u32 month;
u32 day;
RTCWeek week;
} RTCDate;
This structure indicates the real time clock's date, including year, month, day, and day of the week.
| 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. |
05/18/2004 Initial Version