author | mwildbolz |
Mon, 01 Oct 2012 17:09:55 +0200 | |
changeset 752 | 48a0ebbefa74 |
parent 728 | 92b7c9f85aad |
child 774 | 91d708a2cb4e |
permissions | -rwxr-xr-x |
0 | 1 |
/* |
561 | 2 |
This file is part of CanFestival, a library implementing CanOpen Stack. |
0 | 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_driver_h__ |
|
24 |
#define __can_driver_h__ |
|
25 |
||
26 |
struct struct_s_BOARD; |
|
27 |
||
28 |
typedef struct struct_s_BOARD s_BOARD; |
|
29 |
||
145
e747d2e26af0
Win32 Native support and dynamicaly loaded CAN drivers for Linux, Cygwin and Win32.
etisserant
parents:
24
diff
changeset
|
30 |
#include "applicfg.h" |
0 | 31 |
#include "can.h" |
32 |
||
561 | 33 |
/** |
34 |
* @brief The CAN board configuration |
|
528
0a30e161d63c
Re-write doxygen tags in headers files to generate User API documentation
greg
parents:
391
diff
changeset
|
35 |
* @ingroup can |
0a30e161d63c
Re-write doxygen tags in headers files to generate User API documentation
greg
parents:
391
diff
changeset
|
36 |
*/ |
561 | 37 |
|
38 |
//struct struct_s_BOARD { |
|
39 |
// char busname[100]; /**< The bus name on which the CAN board is connected */ |
|
40 |
// char baudrate[4]; /**< The board baudrate */ |
|
41 |
//}; |
|
42 |
||
0 | 43 |
struct struct_s_BOARD { |
561 | 44 |
char * busname; /**< The bus name on which the CAN board is connected */ |
45 |
char * baudrate; /**< The board baudrate */ |
|
0 | 46 |
}; |
47 |
||
145
e747d2e26af0
Win32 Native support and dynamicaly loaded CAN drivers for Linux, Cygwin and Win32.
etisserant
parents:
24
diff
changeset
|
48 |
#ifndef DLL_CALL |
629 | 49 |
#if !defined(WIN32) || defined(__CYGWIN__) |
145
e747d2e26af0
Win32 Native support and dynamicaly loaded CAN drivers for Linux, Cygwin and Win32.
etisserant
parents:
24
diff
changeset
|
50 |
#define DLL_CALL(funcname) funcname##_driver |
629 | 51 |
#else |
728 | 52 |
#define LIBAPI __stdcall |
629 | 53 |
//Windows was missing the definition of the calling convention |
728 | 54 |
#define DLL_CALL(funcname) LIBAPI funcname##_driver |
0 | 55 |
#endif |
644
11b21e9a92f6
FIXED: - added missing endif
Christian Taedcke <hacking@taedcke.com>
parents:
631
diff
changeset
|
56 |
#endif //DLL_CALL |
145
e747d2e26af0
Win32 Native support and dynamicaly loaded CAN drivers for Linux, Cygwin and Win32.
etisserant
parents:
24
diff
changeset
|
57 |
|
728 | 58 |
#define LIBPUBLIC |
59 |
||
145
e747d2e26af0
Win32 Native support and dynamicaly loaded CAN drivers for Linux, Cygwin and Win32.
etisserant
parents:
24
diff
changeset
|
60 |
#ifndef FCT_PTR_INIT |
e747d2e26af0
Win32 Native support and dynamicaly loaded CAN drivers for Linux, Cygwin and Win32.
etisserant
parents:
24
diff
changeset
|
61 |
#define FCT_PTR_INIT |
e747d2e26af0
Win32 Native support and dynamicaly loaded CAN drivers for Linux, Cygwin and Win32.
etisserant
parents:
24
diff
changeset
|
62 |
#endif |
e747d2e26af0
Win32 Native support and dynamicaly loaded CAN drivers for Linux, Cygwin and Win32.
etisserant
parents:
24
diff
changeset
|
63 |
|
e747d2e26af0
Win32 Native support and dynamicaly loaded CAN drivers for Linux, Cygwin and Win32.
etisserant
parents:
24
diff
changeset
|
64 |
|
e747d2e26af0
Win32 Native support and dynamicaly loaded CAN drivers for Linux, Cygwin and Win32.
etisserant
parents:
24
diff
changeset
|
65 |
UNS8 DLL_CALL(canReceive)(CAN_HANDLE, Message *)FCT_PTR_INIT; |
631 | 66 |
UNS8 DLL_CALL(canSend)(CAN_HANDLE, Message const *)FCT_PTR_INIT; |
145
e747d2e26af0
Win32 Native support and dynamicaly loaded CAN drivers for Linux, Cygwin and Win32.
etisserant
parents:
24
diff
changeset
|
67 |
CAN_HANDLE DLL_CALL(canOpen)(s_BOARD *)FCT_PTR_INIT; |
e747d2e26af0
Win32 Native support and dynamicaly loaded CAN drivers for Linux, Cygwin and Win32.
etisserant
parents:
24
diff
changeset
|
68 |
int DLL_CALL(canClose)(CAN_HANDLE)FCT_PTR_INIT; |
384 | 69 |
UNS8 DLL_CALL(canChangeBaudRate)(CAN_HANDLE, char *)FCT_PTR_INIT; |
145
e747d2e26af0
Win32 Native support and dynamicaly loaded CAN drivers for Linux, Cygwin and Win32.
etisserant
parents:
24
diff
changeset
|
70 |
|
341 | 71 |
#if defined DEBUG_MSG_CONSOLE_ON || defined NEED_PRINT_MESSAGE |
301 | 72 |
#include "def.h" |
73 |
||
391
7802a7d5584f
Accepted Vladimir Chren linux kernelspace port patch.
etisserant
parents:
384
diff
changeset
|
74 |
#define _P(fc) case fc: MSG(#fc" ");break; |
301 | 75 |
|
631 | 76 |
static inline void print_message(Message const *m) |
301 | 77 |
{ |
78 |
int i; |
|
319 | 79 |
UNS8 fc; |
391
7802a7d5584f
Accepted Vladimir Chren linux kernelspace port patch.
etisserant
parents:
384
diff
changeset
|
80 |
MSG("id:%02x ", m->cob_id & 0x7F); |
365 | 81 |
fc = m->cob_id >> 7; |
301 | 82 |
switch(fc) |
83 |
{ |
|
561 | 84 |
case SYNC: |
365 | 85 |
if(m->cob_id == 0x080) |
391
7802a7d5584f
Accepted Vladimir Chren linux kernelspace port patch.
etisserant
parents:
384
diff
changeset
|
86 |
MSG("SYNC "); |
314
68e83c3ffbb5
Better EMCY support. Now EMCY COB-ID depend on OD 1014h entry, as told in DS-301.
etisserant
parents:
301
diff
changeset
|
87 |
else |
391
7802a7d5584f
Accepted Vladimir Chren linux kernelspace port patch.
etisserant
parents:
384
diff
changeset
|
88 |
MSG("EMCY "); |
314
68e83c3ffbb5
Better EMCY support. Now EMCY COB-ID depend on OD 1014h entry, as told in DS-301.
etisserant
parents:
301
diff
changeset
|
89 |
break; |
381 | 90 |
#ifdef CO_ENABLE_LSS |
91 |
case LSS: |
|
92 |
if(m->cob_id == 0x7E5) |
|
391
7802a7d5584f
Accepted Vladimir Chren linux kernelspace port patch.
etisserant
parents:
384
diff
changeset
|
93 |
MSG("MLSS "); |
381 | 94 |
else |
391
7802a7d5584f
Accepted Vladimir Chren linux kernelspace port patch.
etisserant
parents:
384
diff
changeset
|
95 |
MSG("SLSS "); |
381 | 96 |
break; |
97 |
#endif |
|
301 | 98 |
_P(TIME_STAMP) |
99 |
_P(PDO1tx) |
|
100 |
_P(PDO1rx) |
|
101 |
_P(PDO2tx) |
|
102 |
_P(PDO2rx) |
|
103 |
_P(PDO3tx) |
|
104 |
_P(PDO3rx) |
|
105 |
_P(PDO4tx) |
|
106 |
_P(PDO4rx) |
|
107 |
_P(SDOtx) |
|
108 |
_P(SDOrx) |
|
109 |
_P(NODE_GUARD) |
|
110 |
_P(NMT) |
|
111 |
} |
|
112 |
if( fc == SDOtx) |
|
113 |
{ |
|
114 |
switch(m->data[0] >> 5) |
|
115 |
{ |
|
116 |
/* scs: server command specifier */ |
|
117 |
_P(UPLOAD_SEGMENT_RESPONSE) |
|
118 |
_P(DOWNLOAD_SEGMENT_RESPONSE) |
|
119 |
_P(INITIATE_DOWNLOAD_RESPONSE) |
|
120 |
_P(INITIATE_UPLOAD_RESPONSE) |
|
121 |
_P(ABORT_TRANSFER_REQUEST) |
|
122 |
} |
|
123 |
}else if( fc == SDOrx) |
|
124 |
{ |
|
125 |
switch(m->data[0] >> 5) |
|
126 |
{ |
|
127 |
/* ccs: client command specifier */ |
|
128 |
_P(DOWNLOAD_SEGMENT_REQUEST) |
|
129 |
_P(INITIATE_DOWNLOAD_REQUEST) |
|
130 |
_P(INITIATE_UPLOAD_REQUEST) |
|
131 |
_P(UPLOAD_SEGMENT_REQUEST) |
|
132 |
_P(ABORT_TRANSFER_REQUEST) |
|
133 |
} |
|
134 |
} |
|
391
7802a7d5584f
Accepted Vladimir Chren linux kernelspace port patch.
etisserant
parents:
384
diff
changeset
|
135 |
MSG(" rtr:%d", m->rtr); |
7802a7d5584f
Accepted Vladimir Chren linux kernelspace port patch.
etisserant
parents:
384
diff
changeset
|
136 |
MSG(" len:%d", m->len); |
301 | 137 |
for (i = 0 ; i < m->len ; i++) |
391
7802a7d5584f
Accepted Vladimir Chren linux kernelspace port patch.
etisserant
parents:
384
diff
changeset
|
138 |
MSG(" %02x", m->data[i]); |
7802a7d5584f
Accepted Vladimir Chren linux kernelspace port patch.
etisserant
parents:
384
diff
changeset
|
139 |
MSG("\n"); |
301 | 140 |
} |
141 |
||
145
e747d2e26af0
Win32 Native support and dynamicaly loaded CAN drivers for Linux, Cygwin and Win32.
etisserant
parents:
24
diff
changeset
|
142 |
#endif |
301 | 143 |
|
144 |
#endif |