#include <nitro/rtc.h>typedef struct {
u32 hour;
u32 minute;
u32 second;
} RTCTime;
This data structure describes the real time clock's time
It indicates the hour, the minute, the second, and AM or PM.
hour |
Numerical value 0 – 23 that indicates the hour |
minute |
Numerical value 0 – 59 that indicates the minute |
second |
Numerical value 0 – 59 that indicates the second |
08/19/2004 Changed the description due to the fixing of the time notation
07/01/2004 Changed the description due to standardize the time notation.
05/18/2004 Initial Version