HP85 GPIB Disk Emulator
1.0
HP85GPIBDiskEmulator
|
Go to the documentation of this file.
25 #include "user_config.h"
29 #define HAVE_HIRES_TIMER
59 int set_timers(
void (*handler)(
void),
int timer __attribute__((unused)))
71 if(
timer_irq[i].user_timer_handler == handler)
84 printf(
"set_timers: No more timers!\n");
301 printf(
"Timers init called\n");
308 printf(
"Timers configured\n");
318 printf(
"Clock task init failed\n");
319 printf(
"Clock Installed\n");
323 printf(
"Timers enabled\n");
372 #if ! defined(HAVE_HIRES_TIMER)
MEMSPACE int clock_settime(clockid_t clk_id __attribute__((unused)), const struct timespec *ts)
Set system clock using seconds and nonoseconds - POSIX function.
uint16_t clockid_t
type of clockid_t.
MEMSPACE void display_ts(ts_t *val)
timespec structure in seconds.nanoseconds.
MEMSPACE int printf(const char *format,...)
static ts_t __clock_elapsed
Used for elapsed time calculations.
volatile ts_t __clock
System Clock Time.
MEMSPACE void init_timers()
Setup all timers tasksi and enable interrupts.
MEMSPACE void clock_clear()
clear time and timezone to 0.
MEMSPACE void disable_system_task(void)
tz_t __tzone
System Time Zone.
MEMSPACE int kill_timer(int timer)
Delete "Kill" one user timer task.
MEMSPACE int clock_getres(clockid_t clk_id __attribute__((unused)), struct timespec *res)
Read clock time resolution into struct timepec *ts - POSIX function.
MEMSPACE void disable_timers()
Disable all timer tasks.
void execute_timers()
Execute all user timers at SYSTEM_HZ rate. Called by system task.
MEMSPACE void clock_elapsed_begin()
Store current struct timespec in __clock_elapsed.
#define SYSTEM_TASK_TIC_NS
System task in HZ.
Common Linux/POSIX time functions.
static int timers_enabled
MEMSPACE int clock_gettime(clockid_t clk_id __attribute__((unused)), struct timespec *ts)
Generic clock_gettime() function WITHOUT high resolution.
MEMSPACE void delete_all_timers()
Clear ALL user timer tasks.
void clock_task(void)
1000HZ timer task
MEMSPACE char * ts_to_str(ts_t *val)
void(* user_timer_handler)(void)
MEMSPACE int set_timers(void(*handler)(void), int timer __attribute__((unused)))
Install a user timer task.
MEMSPACE void install_timers_isr(void)
TIMERS timer_irq[MAX_TIMER_CNT]
array or user timers
static int timers_configured
Math IO functions, and verious conversion code with floating point support.
static char _ts_to_str[32]
timespec structure in seconds.nanoseconds in string.
MEMSPACE void enable_timers()
Enable timer tasks.
MEMSPACE void enable_system_task(void)
MEMSPACE void clock_elapsed_end(char *msg)
Subtract and display time difference from clock_elapesed_begin().
#define snprintf(s, size, format, args...)
#define MAX_TIMER_CNT
Number of user timer tasks.
MEMSPACE void subtract_timespec(ts_t *a, ts_t *b)
subtract a-= b timespec * structures.