HP85 GPIB Disk Emulator
1.0
HP85GPIBDiskEmulator
|
Go to the documentation of this file.
28 #define EPOCH_YEAR 1970
31 #define EPOCH_2000 946684800
tz_t __tzone
System Time Zone.
uint16_t clockid_t
type of clockid_t.
volatile ts_t __clock
System Clock Time.
MEMSPACE void print_dst(void)
print start/stop for DST as localtime for this year
MEMSPACE void print_dst_gmt(void)
print start/stop for DST as GMT for this year
MEMSPACE char * ctime_r(time_t *t, char *buf)
Convert local time_t *t epoch time into POSIX asctime() ASCII string *buf.
MEMSPACE void initialize_clock(int minwest)
initialize system time - if we have an RTC use it
MEMSPACE int setdate_r(char *buf)
Set date and time from string in this format "YYYY MM DD HH:MM:SS".
MEMSPACE void set_dst(time_t epoch)
Set DST start and end time for the given epoch year.
MEMSPACE char * tm_wday_to_ascii(int i)
Get string Short name of day from day number.
dst_t dst
DST start and stop in GMT epoch.
MEMSPACE time_t mktime(tm_t *t)
convert tm_t structure to time_t local time epoch
MEMSPACE int gettimezone(tz_t *tz)
Get current timezone in struct timezone *tz - POSIX function.
MEMSPACE tm_t * localtime_r(time_t *t, tm_t *result)
Convert POSIX epoch time_t *tp into POSIX tm_t *result expressed as local time using timezone and DST...
MEMSPACE time_t normalize(tm_t *t, int normalize_to_timezone)
Normalize POSIX tm_t *t struct and convert to epoch time Note: does not deal with DST - by design.
MEMSPACE time_t time_to_tm(time_t epoch, int32_t offset, tm_t *t)
Converts epoch ( seconds from 1 Jan EPOCH_YEAR UTC), offset seconds, to UNIX tm *t.
MEMSPACE time_t timegm(tm_t *t)
Convert tm_t structure as GMT time into GMT seconds since 1900. All calculactions are in GMT regardle...
MEMSPACE time_t time(time_t *t)
Return second from epoch - POSIX function.
MEMSPACE void display_clock(void)
Display system time and optionally RTC time.
MEMSPACE int Days_Per_Month(int month, int year)
days in a month
MEMSPACE time_t find_dst(int dst, time_t epoch, int year, int month, int weekno, int dayno, int hour)
Calculate GMT seconds of DST transition given LOCAL time start / end time and DST flag.
time_t end
Start of local DST in GMT.
MEMSPACE char * asctime(tm_t *t)
Convert tm_t *t structure into POSIX asctime() ASCII string.
time_t epoch
End of local DST in GMT.
MEMSPACE int is_dst(time_t epoch)
Test GMT epoch time to see if DST applies in a local timezone.
MEMSPACE int finddayofweek(int year, int month, int day)
return day of week for givenn day, month, year
MEMSPACE tm_t * gmtime_r(time_t *t, tm_t *result)
Convert epoch GMT time_t *tp into POSIX tm_t *result.
MEMSPACE int gettimeofday(tv_t *tv, tz_t *tz)
Get current time struct timeval *tv and struct timezone *tz - POSIX function. We assume a GMT hardwar...
MEMSPACE void clock_set(uint32_t seconds, uint32_t us)
Set system clock with seconds and microseconds.
MEMSPACE char * ctime_gm(time_t *tp)
GMT version of POSIX ctime().
uint32_t time_t
type of EPOCH result.
MEMSPACE int settimeofday(tv_t *tv, tz_t *tz)
Set current time struct timeval *tv and struct timezone *tz - POSIX function. We assume a GMT hardwar...
MEMSPACE char * ctime(time_t *tp)
Convert local time_t *t epoch time into POSIX asctime() string buf[].
MEMSPACE char * tm_mon_to_ascii(int i)
Get string Short name of Month from month number.
MEMSPACE int settimezone(tz_t *tz)
Set current timezone with struct timezone *tz - POSIX function.
MEMSPACE int setdate(void)
Set date and time by prompting user.
MEMSPACE tm_t * gmtime(time_t *tp)
Convert epoch GMT time_t *tp into POSIX static tm_t *t.
MEMSPACE char * asctime_r(tm_t *t, char *buf)
Convert tm_t *t structure into POSIX asctime() ASCII string *buf.
MEMSPACE tm_t * localtime(time_t *tp)
Convert POSIX epoch time_t *tp into POSIX tm_t *result.