author | lbessard |
Mon, 11 Jun 2007 14:54:25 +0200 | |
changeset 219 | dbf69fd1fe6f |
parent 145 | e747d2e26af0 |
child 235 | f812bf6b7237 |
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 __can_h__ |
|
24 |
#define __can_h__ |
|
145
e747d2e26af0
Win32 Native support and dynamicaly loaded CAN drivers for Linux, Cygwin and Win32.
etisserant
parents:
71
diff
changeset
|
25 |
|
e747d2e26af0
Win32 Native support and dynamicaly loaded CAN drivers for Linux, Cygwin and Win32.
etisserant
parents:
71
diff
changeset
|
26 |
#include "applicfg.h" |
0 | 27 |
/** Used for the Can message structure */ |
28 |
/* |
|
29 |
union SHORT_CAN { |
|
30 |
struct { UNS8 b0,b1; } b; |
|
31 |
UNS32 w; |
|
32 |
}; |
|
33 |
*/ |
|
34 |
||
35 |
typedef struct { |
|
71 | 36 |
UNS32 w; /* 32 bits */ |
0 | 37 |
} SHORT_CAN; |
38 |
||
39 |
||
40 |
/** Can message structure */ |
|
41 |
typedef struct { |
|
71 | 42 |
SHORT_CAN cob_id; /* l'ID du mesg */ |
43 |
UNS8 rtr; /* remote transmission request. 0 if not rtr, |
|
44 |
1 for a rtr message */ |
|
45 |
UNS8 len; /* message length (0 to 8) */ |
|
46 |
UNS8 data[8]; /* data */ |
|
0 | 47 |
} Message; |
48 |
||
49 |
||
50 |
typedef UNS8 (*canSend_t)(Message *); |
|
51 |
||
71 | 52 |
#endif /* __can_h__ */ |