author | etisserant |
Tue, 15 Jan 2008 09:30:26 +0100 | |
changeset 356 | 171830d836ce |
parent 145 | e747d2e26af0 |
child 561 | f9be4262c68d |
permissions | -rw-r--r-- |
0 | 1 |
/* |
2 |
This file is part of CanFestival, a library implementing CanOpen Stack. |
|
3 |
||
4 |
Copyright (C): Edouard TISSERANT and Francis DUPIN |
|
5 |
||
6 |
See COPYING file for copyrights details. |
|
7 |
||
8 |
This library is free software; you can redistribute it and/or |
|
9 |
modify it under the terms of the GNU Lesser General Public |
|
10 |
License as published by the Free Software Foundation; either |
|
11 |
version 2.1 of the License, or (at your option) any later version. |
|
12 |
||
13 |
This library is distributed in the hope that it will be useful, |
|
14 |
but WITHOUT ANY WARRANTY; without even the implied warranty of |
|
15 |
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
|
16 |
Lesser General Public License for more details. |
|
17 |
||
18 |
You should have received a copy of the GNU Lesser General Public |
|
19 |
License along with this library; if not, write to the Free Software |
|
20 |
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA |
|
21 |
*/ |
|
22 |
||
23 |
#ifndef __timer_h__ |
|
24 |
#define __timer_h__ |
|
25 |
||
145
e747d2e26af0
Win32 Native support and dynamicaly loaded CAN drivers for Linux, Cygwin and Win32.
etisserant
parents:
71
diff
changeset
|
26 |
#include <timerscfg.h> |
0 | 27 |
#include <applicfg.h> |
28 |
||
29 |
#define TIMER_HANDLE INTEGER16 |
|
30 |
||
31 |
#include "data.h" |
|
32 |
||
71 | 33 |
/* --------- types and constants definitions --------- */ |
0 | 34 |
#define TIMER_FREE 0 |
35 |
#define TIMER_ARMED 1 |
|
36 |
#define TIMER_TRIG 2 |
|
37 |
#define TIMER_TRIG_PERIOD 3 |
|
38 |
||
39 |
#define TIMER_NONE -1 |
|
40 |
||
41 |
typedef void (*TimerCallback_t)(CO_Data* d, UNS32 id); |
|
42 |
||
43 |
struct struct_s_timer_entry { |
|
44 |
UNS8 state; |
|
45 |
CO_Data* d; |
|
71 | 46 |
TimerCallback_t callback; /* The callback func. */ |
47 |
UNS32 id; /* The callback func. */ |
|
0 | 48 |
TIMEVAL val; |
71 | 49 |
TIMEVAL interval; /* Periodicity */ |
0 | 50 |
}; |
51 |
||
52 |
typedef struct struct_s_timer_entry s_timer_entry; |
|
53 |
||
71 | 54 |
/* --------- prototypes --------- */ |
55 |
/*#define SetAlarm(d, id, callback, value, period) printf("%s, %d, SetAlarm(%s, %s, %s, %s, %s)\n",__FILE__, __LINE__, #d, #id, #callback, #value, #period); _SetAlarm(d, id, callback, value, period)*/ |
|
0 | 56 |
TIMER_HANDLE SetAlarm(CO_Data* d, UNS32 id, TimerCallback_t callback, TIMEVAL value, TIMEVAL period); |
57 |
TIMER_HANDLE DelAlarm(TIMER_HANDLE handle); |
|
58 |
void TimeDispatch(void); |
|
59 |
||
71 | 60 |
/* --------- to be defined in user app ---------*/ |
0 | 61 |
void setTimer(TIMEVAL value); |
62 |
TIMEVAL getElapsedTime(void); |
|
63 |
||
71 | 64 |
#endif /* #define __timer_h__ */ |