o cleanup

This commit is contained in:
optixx
2009-09-23 15:58:13 +02:00
parent 1bbc73c363
commit 3f91df1af6
632 changed files with 0 additions and 266690 deletions

15
packages/ff-0.7/sample/lpc2k/rtc.h vendored Normal file
View File

@@ -0,0 +1,15 @@
#include "integer.h"
typedef struct {
WORD year; /* 1..4095 */
BYTE month; /* 1..12 */
BYTE mday; /* 1.. 31 */
BYTE wday; /* 1..7 */
BYTE hour; /* 0..23 */
BYTE min; /* 0..59 */
BYTE sec; /* 0..59 */
} RTC;
BOOL rtc_gettime (RTC*); /* Get time */
BOOL rtc_settime (const RTC*); /* Set time */