author | greg |
Mon, 02 Mar 2009 09:30:33 +0100 | |
changeset 532 | 1ca55c717660 |
parent 528 | 0a30e161d63c |
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 |
||
528
0a30e161d63c
Re-write doxygen tags in headers files to generate User API documentation
greg
parents:
365
diff
changeset
|
23 |
/** |
0a30e161d63c
Re-write doxygen tags in headers files to generate User API documentation
greg
parents:
365
diff
changeset
|
24 |
* @defgroup can CAN Management |
0a30e161d63c
Re-write doxygen tags in headers files to generate User API documentation
greg
parents:
365
diff
changeset
|
25 |
* @ingroup userapi |
0a30e161d63c
Re-write doxygen tags in headers files to generate User API documentation
greg
parents:
365
diff
changeset
|
26 |
*/ |
0a30e161d63c
Re-write doxygen tags in headers files to generate User API documentation
greg
parents:
365
diff
changeset
|
27 |
|
0 | 28 |
#ifndef __can_h__ |
29 |
#define __can_h__ |
|
145
e747d2e26af0
Win32 Native support and dynamicaly loaded CAN drivers for Linux, Cygwin and Win32.
etisserant
parents:
71
diff
changeset
|
30 |
|
e747d2e26af0
Win32 Native support and dynamicaly loaded CAN drivers for Linux, Cygwin and Win32.
etisserant
parents:
71
diff
changeset
|
31 |
#include "applicfg.h" |
0 | 32 |
/** Used for the Can message structure */ |
33 |
/* |
|
34 |
union SHORT_CAN { |
|
35 |
struct { UNS8 b0,b1; } b; |
|
36 |
UNS32 w; |
|
37 |
}; |
|
38 |
*/ |
|
365 | 39 |
/* |
0 | 40 |
typedef struct { |
365 | 41 |
UNS32 w; |
0 | 42 |
} SHORT_CAN; |
365 | 43 |
*/ |
0 | 44 |
|
528
0a30e161d63c
Re-write doxygen tags in headers files to generate User API documentation
greg
parents:
365
diff
changeset
|
45 |
/** |
0a30e161d63c
Re-write doxygen tags in headers files to generate User API documentation
greg
parents:
365
diff
changeset
|
46 |
* @brief The CAN message structure |
0a30e161d63c
Re-write doxygen tags in headers files to generate User API documentation
greg
parents:
365
diff
changeset
|
47 |
* @ingroup can |
0a30e161d63c
Re-write doxygen tags in headers files to generate User API documentation
greg
parents:
365
diff
changeset
|
48 |
* @{ |
0a30e161d63c
Re-write doxygen tags in headers files to generate User API documentation
greg
parents:
365
diff
changeset
|
49 |
*/ |
0 | 50 |
typedef struct { |
365 | 51 |
UNS16 cob_id; /* l'ID du mesg */ |
528
0a30e161d63c
Re-write doxygen tags in headers files to generate User API documentation
greg
parents:
365
diff
changeset
|
52 |
UNS8 rtr; /**< remote transmission request. 0 if not rtr, |
71 | 53 |
1 for a rtr message */ |
528
0a30e161d63c
Re-write doxygen tags in headers files to generate User API documentation
greg
parents:
365
diff
changeset
|
54 |
UNS8 len; /**< message length (0 to 8) */ |
0a30e161d63c
Re-write doxygen tags in headers files to generate User API documentation
greg
parents:
365
diff
changeset
|
55 |
UNS8 data[8]; /**< data */ |
0 | 56 |
} Message; |
528
0a30e161d63c
Re-write doxygen tags in headers files to generate User API documentation
greg
parents:
365
diff
changeset
|
57 |
/** @} */ |
0 | 58 |
|
235
f812bf6b7237
Preliminary implementation of Event Timer and Inhibit Timer driven TPDO
etisserant
parents:
145
diff
changeset
|
59 |
#define Message_Initializer {0,0,0,{0,0,0,0,0,0,0,0}} |
0 | 60 |
|
61 |
typedef UNS8 (*canSend_t)(Message *); |
|
62 |
||
71 | 63 |
#endif /* __can_h__ */ |