HP85 GPIB Disk Emulator
1.0
HP85GPIBDiskEmulator
|
Go to the documentation of this file.
27 #include "user_config.h"
57 double fval,begin,span;
61 begin = (double) start;
62 span = (double) (end - start);
66 span = (double) (start - end);
76 s = 16807 * (s - k * 127773) - 2836 * k;
85 fval = (double) s / (
double) 0x7fffffffL;
87 fval *= (double) span;
88 fval += (double) begin;
113 fp =
fopen(str,
"rb");
115 fp =
fopen(str,
"wb");
118 perror(
"timetest file open failed");
138 optimistic_yield(1000);
151 fprintf(fp,
"%4d,%2d,%2d, %02d:%02d:%2d\n",
159 fprintf(fp,
"%4d,%2d,%2d, %02d:%02d:%2d\n",
166 fprintf(fp,
"%4d,%2d,%2d, %02d:%02d:%2d\n",
177 perror(
"timetest fclose failed");
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 int timetests(char *str, int check)
MEMSPACE FILE * fopen(const char *path, const char *mode)
POSIX Open a file with path name and ascii file mode string.
MEMSPACE int printf(const char *format,...)
MEMSPACE int fprintf(FILE *fp, const char *format,...)
fprintf function Example user defined printf function using fputc for I/O This method allows I/O to d...
MEMSPACE char * asctime_r(tm_t *t, char *buf)
Convert tm_t *t structure into POSIX asctime() ASCII string *buf.
Common Linux/POSIX time functions.
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 void perror(const char *s)
POSIX perror() - convert POSIX errno to text with user message.
MEMSPACE int myrand(int start, int end)
static unsigned int __seed
MEMSPACE int fclose(FILE *stream)
POSIX close a file stream.
MEMSPACE time_t mktime(tm_t *t)
convert tm_t structure to time_t local time epoch
uint32_t time_t
type of EPOCH result.
Math IO functions, and verious conversion code with floating point support.
MEMSPACE char * skipspaces(char *ptr)
Skip white space in a string - tabs and spaces.
MEMSPACE void mysrand(int seed)