HP85 GPIB Disk Emulator  1.0
HP85GPIBDiskEmulator
All Data Structures Files Functions Variables Typedefs Enumerations Enumerator Macros Pages
timer.c
Go to the documentation of this file.
1 
25 #include "user_config.h"
26 
27 #ifdef AVR
28 #include <stdlib.h>
29 #define HAVE_HIRES_TIMER /*< We can read a high resolution hardware timer */
30 #endif
31 
32 #include "mathio.h"
33 
34 #include "time.h"
35 #include "timer.h"
36 
38 volatile ts_t __clock;
39 
42 
43 static int timers_enabled = 0;
44 static int timers_configured = 0;
45 
48 
59 int set_timers(void (*handler)(void), int timer __attribute__((unused)))
60 {
61  int i;
62  int ret = -1;
63 
64  if(!handler)
65  return -1;
66 
67  for(i=0;i<MAX_TIMER_CNT;++i)
68  {
69 
70 // already assigned
71  if(timer_irq[i].user_timer_handler == handler)
72  ret = i;
73 
74  if(!timer_irq[i].user_timer_handler)
75  {
76  timer_irq[i].timer = 0; // Set to disable
77  timer_irq[i].user_timer_handler = handler;
78  timer_irq[i].timer = 1; // Set if enabled, 0 if not
79  ret = i;
80  break;
81  }
82  }
83  if(ret == -1)
84  printf("set_timers: No more timers!\n");
85 
86  return(ret);
87 }
88 
89 
99 int kill_timer( int timer )
100 {
101  int ret = -1;
102  if(timer >= 0 && timer <= MAX_TIMER_CNT)
103  {
104  timer_irq[timer].timer = 0; // Disable
105  timer_irq[timer].user_timer_handler = 0;
106  ret = timer;
107  }
108  return(ret);
109 }
110 
111 
115 MEMSPACE
117 {
118  int i;
119  for(i=0; i < MAX_TIMER_CNT; i++)
120  {
121  timer_irq[i].timer = 0; // Disable
123  }
124 }
125 
126 
133 MEMSPACE
135 {
136  a->tv_nsec = a->tv_nsec - b->tv_nsec;
137  if (a->tv_nsec < 0L)
138  {
139  a->tv_nsec += 1000000000L;
140  a->tv_sec --;
141  }
142  a->tv_sec = a->tv_sec - b->tv_sec;
143 }
144 
145 
152 static char _ts_to_str[32];
153 MEMSPACE
154 char * ts_to_str(ts_t *val)
155 {
156  snprintf(_ts_to_str,31,"%ld.%09ld", val->tv_sec, val->tv_nsec);
157  return( _ts_to_str );
158 }
159 
160 
166 MEMSPACE
167 void display_ts(ts_t *val)
168 {
169  printf("[Seconds: %s]\n", ts_to_str(val) );
170 }
171 
172 
177 
183 MEMSPACE
185 {
187 }
188 
189 
199 MEMSPACE
200 void clock_elapsed_end(char *msg)
201 {
202  ts_t current;
203 
204  clock_gettime(0, (ts_t *) &current);
205 
207 
208  if(msg && *msg)
209  printf("[%s Time:%s]\n", msg, ts_to_str((ts_t *) &current) );
210  else
211  printf("[Time:%s]\n", ts_to_str((ts_t *) &current) );
212 }
213 
214 
221 MEMSPACE
223 {
224  struct timespec ts;
225  ts.tv_nsec = 0;
226  ts.tv_sec = 0;
227  clock_settime(0, &ts);
229  __tzone.tz_dsttime = 0;
230 }
231 
232 
236 MEMSPACE
238 {
240  {
242  timers_enabled = 0;
243  }
244 }
245 
246 
250 MEMSPACE
252 {
254  {
256  timers_enabled = 1;
257  }
258 }
259 
260 
266 {
267  int i;
268 
269  for(i=0; i < MAX_TIMER_CNT; i++)
270  {
271  if(timer_irq[i].timer && timer_irq[i].user_timer_handler != NULL)
273  }
274 }
275 
276 
281 void clock_task(void)
282 {
283  __clock.tv_nsec += 1000000;
284  if(__clock.tv_nsec >= 1000000000L)
285  {
286  __clock.tv_sec++;
287  __clock.tv_nsec = 0;
288  }
289 }
290 
291 
296 //
298 MEMSPACE
300 {
301  printf("Timers init called\n");
302 
303  if(!timers_configured)
304  {
306  timers_configured = 1;
307  timers_enabled = 0;
308  printf("Timers configured\n");
309  }
310 
312 
313  clock_clear();
314  printf("Clock Init\n");
315 
317  if(set_timers(clock_task,1) == -1)
318  printf("Clock task init failed\n");
319  printf("Clock Installed\n");
320 
321  enable_timers();
322 
323  printf("Timers enabled\n");
324 }
325 
326 
334 MEMSPACE
335 int clock_getres(clockid_t clk_id __attribute__((unused)), struct timespec *res)
336 {
337  if(clk_id)
338  return(-1);
339  res->tv_sec = 0;
341  return(0);
342 }
343 
344 
352 MEMSPACE
353 int clock_settime(clockid_t clk_id __attribute__((unused)), const struct timespec *ts)
354 {
355  if(clk_id)
356  return(-1);
357 
358  while(1)
359  {
360  __clock.tv_nsec = ts->tv_nsec;
361  __clock.tv_sec = ts->tv_sec;
362 
363  if(ts->tv_nsec != __clock.tv_nsec || ts->tv_sec != __clock.tv_sec)
364  continue;
365  break;
366  }
367 
368  return(0);
369 }
370 
371 
372 #if ! defined(HAVE_HIRES_TIMER)
373 
384 //TODO try to use system_get_time() to get microsecond offsets
385 MEMSPACE
386 int clock_gettime(clockid_t clk_id __attribute__((unused)), struct timespec *ts)
387 {
388 
389  if(clk_id)
390  return(-1);
391 
392  ts->tv_nsec = 0;
393  ts->tv_sec = 0;
394 
395  while(1)
396  {
397  ts->tv_nsec = __clock.tv_nsec;
398  ts->tv_sec = __clock.tv_sec;
399  if(ts->tv_nsec != __clock.tv_nsec || ts->tv_sec != __clock.tv_sec)
400  continue;
401  break;
402  }
403  return(0);
404 }
405 #endif
clock_settime
MEMSPACE int clock_settime(clockid_t clk_id __attribute__((unused)), const struct timespec *ts)
Set system clock using seconds and nonoseconds - POSIX function.
Definition: timer.c:353
current
uint16_t current
Definition: gpib.c:97
clockid_t
uint16_t clockid_t
type of clockid_t.
Definition: time.h:37
timezone
POSIX timezone.
Definition: time.h:75
display_ts
MEMSPACE void display_ts(ts_t *val)
timespec structure in seconds.nanoseconds.
Definition: timer.c:167
printf
MEMSPACE int printf(const char *format,...)
TIMERS
user timer struct
Definition: timer.h:35
__clock_elapsed
static ts_t __clock_elapsed
Used for elapsed time calculations.
Definition: timer.c:176
__clock
volatile ts_t __clock
System Clock Time.
Definition: timer.c:38
init_timers
MEMSPACE void init_timers()
Setup all timers tasksi and enable interrupts.
Definition: timer.c:299
MEMSPACE
#define MEMSPACE
Definition: user_config.h:17
clock_clear
MEMSPACE void clock_clear()
clear time and timezone to 0.
Definition: timer.c:222
disable_system_task
MEMSPACE void disable_system_task(void)
__tzone
tz_t __tzone
System Time Zone.
Definition: timer.c:41
kill_timer
MEMSPACE int kill_timer(int timer)
Delete "Kill" one user timer task.
Definition: timer.c:99
clock_getres
MEMSPACE int clock_getres(clockid_t clk_id __attribute__((unused)), struct timespec *res)
Read clock time resolution into struct timepec *ts - POSIX function.
Definition: timer.c:335
timespec::tv_nsec
long tv_nsec
Definition: time.h:88
disable_timers
MEMSPACE void disable_timers()
Disable all timer tasks.
Definition: timer.c:237
execute_timers
void execute_timers()
Execute all user timers at SYSTEM_HZ rate. Called by system task.
Definition: timer.c:265
timespec::tv_sec
time_t tv_sec
Definition: time.h:87
NULL
#define NULL
Definition: user_config.h:85
clock_elapsed_begin
MEMSPACE void clock_elapsed_begin()
Store current struct timespec in __clock_elapsed.
Definition: timer.c:184
timer.h
timer functions
SYSTEM_TASK_TIC_NS
#define SYSTEM_TASK_TIC_NS
System task in HZ.
Definition: timer.h:47
time.h
Common Linux/POSIX time functions.
timers_enabled
static int timers_enabled
Definition: timer.c:43
clock_gettime
MEMSPACE int clock_gettime(clockid_t clk_id __attribute__((unused)), struct timespec *ts)
Generic clock_gettime() function WITHOUT high resolution.
Definition: timer.c:386
delete_all_timers
MEMSPACE void delete_all_timers()
Clear ALL user timer tasks.
Definition: timer.c:116
timezone::tz_dsttime
int tz_dsttime
Definition: time.h:78
TIMERS::timer
uint8_t timer
Definition: timer.h:38
clock_task
void clock_task(void)
1000HZ timer task
Definition: timer.c:281
ts_to_str
MEMSPACE char * ts_to_str(ts_t *val)
Definition: timer.c:154
TIMERS::user_timer_handler
void(* user_timer_handler)(void)
Definition: timer.h:37
set_timers
MEMSPACE int set_timers(void(*handler)(void), int timer __attribute__((unused)))
Install a user timer task.
Definition: timer.c:59
install_timers_isr
MEMSPACE void install_timers_isr(void)
timer_irq
TIMERS timer_irq[MAX_TIMER_CNT]
array or user timers
Definition: timer.c:47
timers_configured
static int timers_configured
Definition: timer.c:44
mathio.h
Math IO functions, and verious conversion code with floating point support.
timespec
POSIX timespec.
Definition: time.h:85
_ts_to_str
static char _ts_to_str[32]
timespec structure in seconds.nanoseconds in string.
Definition: timer.c:152
enable_timers
MEMSPACE void enable_timers()
Enable timer tasks.
Definition: timer.c:251
timezone::tz_minuteswest
int tz_minuteswest
Definition: time.h:77
enable_system_task
MEMSPACE void enable_system_task(void)
clock_elapsed_end
MEMSPACE void clock_elapsed_end(char *msg)
Subtract and display time difference from clock_elapesed_begin().
Definition: timer.c:200
snprintf
#define snprintf(s, size, format, args...)
Definition: user_config.h:72
MAX_TIMER_CNT
#define MAX_TIMER_CNT
Number of user timer tasks.
Definition: timer.h:29
subtract_timespec
MEMSPACE void subtract_timespec(ts_t *a, ts_t *b)
subtract a-= b timespec * structures.
Definition: timer.c:134