author | Edouard Tisserant |
Wed, 27 Mar 2013 09:32:05 +0900 | |
changeset 779 | 5bbf6e4521bb |
parent 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 |
774
91d708a2cb4e
Fixed DLL calling convention when build with mingw32 + some re-indenting in can_tcp_win32
Edouard Tisserant
parents:
728
diff
changeset
|
49 |
#if !defined(WIN32) || defined(__CYGWIN__) || defined(__MINGW32__) |
91d708a2cb4e
Fixed DLL calling convention when build with mingw32 + some re-indenting in can_tcp_win32
Edouard Tisserant
parents:
728
diff
changeset
|
50 |
#define LIBAPI |
145
e747d2e26af0
Win32 Native support and dynamicaly loaded CAN drivers for Linux, Cygwin and Win32.
etisserant
parents:
24
diff
changeset
|
51 |
#define DLL_CALL(funcname) funcname##_driver |
629 | 52 |
#else |
728 | 53 |
#define LIBAPI __stdcall |
629 | 54 |
//Windows was missing the definition of the calling convention |
728 | 55 |
#define DLL_CALL(funcname) LIBAPI funcname##_driver |
0 | 56 |
#endif |
644
11b21e9a92f6
FIXED: - added missing endif
Christian Taedcke <hacking@taedcke.com>
parents:
631
diff
changeset
|
57 |
#endif //DLL_CALL |
145
e747d2e26af0
Win32 Native support and dynamicaly loaded CAN drivers for Linux, Cygwin and Win32.
etisserant
parents:
24
diff
changeset
|
58 |
|
728 | 59 |
#define LIBPUBLIC |
60 |
||
145
e747d2e26af0
Win32 Native support and dynamicaly loaded CAN drivers for Linux, Cygwin and Win32.
etisserant
parents:
24
diff
changeset
|
61 |
#ifndef FCT_PTR_INIT |
e747d2e26af0
Win32 Native support and dynamicaly loaded CAN drivers for Linux, Cygwin and Win32.
etisserant
parents:
24
diff
changeset
|
62 |
#define FCT_PTR_INIT |
e747d2e26af0
Win32 Native support and dynamicaly loaded CAN drivers for Linux, Cygwin and Win32.
etisserant
parents:
24
diff
changeset
|
63 |
#endif |
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 |
|
e747d2e26af0
Win32 Native support and dynamicaly loaded CAN drivers for Linux, Cygwin and Win32.
etisserant
parents:
24
diff
changeset
|
66 |
UNS8 DLL_CALL(canReceive)(CAN_HANDLE, Message *)FCT_PTR_INIT; |
631 | 67 |
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
|
68 |
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
|
69 |
int DLL_CALL(canClose)(CAN_HANDLE)FCT_PTR_INIT; |
384 | 70 |
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
|
71 |
|
341 | 72 |
#if defined DEBUG_MSG_CONSOLE_ON || defined NEED_PRINT_MESSAGE |
301 | 73 |
#include "def.h" |
74 |
||
391
7802a7d5584f
Accepted Vladimir Chren linux kernelspace port patch.
etisserant
parents:
384
diff
changeset
|
75 |
#define _P(fc) case fc: MSG(#fc" ");break; |
301 | 76 |
|
631 | 77 |
static inline void print_message(Message const *m) |
301 | 78 |
{ |
79 |
int i; |
|
319 | 80 |
UNS8 fc; |
391
7802a7d5584f
Accepted Vladimir Chren linux kernelspace port patch.
etisserant
parents:
384
diff
changeset
|
81 |
MSG("id:%02x ", m->cob_id & 0x7F); |
365 | 82 |
fc = m->cob_id >> 7; |
301 | 83 |
switch(fc) |
84 |
{ |
|
561 | 85 |
case SYNC: |
365 | 86 |
if(m->cob_id == 0x080) |
391
7802a7d5584f
Accepted Vladimir Chren linux kernelspace port patch.
etisserant
parents:
384
diff
changeset
|
87 |
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
|
88 |
else |
391
7802a7d5584f
Accepted Vladimir Chren linux kernelspace port patch.
etisserant
parents:
384
diff
changeset
|
89 |
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
|
90 |
break; |
381 | 91 |
#ifdef CO_ENABLE_LSS |
92 |
case LSS: |
|
93 |
if(m->cob_id == 0x7E5) |
|
391
7802a7d5584f
Accepted Vladimir Chren linux kernelspace port patch.
etisserant
parents:
384
diff
changeset
|
94 |
MSG("MLSS "); |
381 | 95 |
else |
391
7802a7d5584f
Accepted Vladimir Chren linux kernelspace port patch.
etisserant
parents:
384
diff
changeset
|
96 |
MSG("SLSS "); |
381 | 97 |
break; |
98 |
#endif |
|
301 | 99 |
_P(TIME_STAMP) |
100 |
_P(PDO1tx) |
|
101 |
_P(PDO1rx) |
|
102 |
_P(PDO2tx) |
|
103 |
_P(PDO2rx) |
|
104 |
_P(PDO3tx) |
|
105 |
_P(PDO3rx) |
|
106 |
_P(PDO4tx) |
|
107 |
_P(PDO4rx) |
|
108 |
_P(SDOtx) |
|
109 |
_P(SDOrx) |
|
110 |
_P(NODE_GUARD) |
|
111 |
_P(NMT) |
|
112 |
} |
|
113 |
if( fc == SDOtx) |
|
114 |
{ |
|
115 |
switch(m->data[0] >> 5) |
|
116 |
{ |
|
117 |
/* scs: server command specifier */ |
|
118 |
_P(UPLOAD_SEGMENT_RESPONSE) |
|
119 |
_P(DOWNLOAD_SEGMENT_RESPONSE) |
|
120 |
_P(INITIATE_DOWNLOAD_RESPONSE) |
|
121 |
_P(INITIATE_UPLOAD_RESPONSE) |
|
122 |
_P(ABORT_TRANSFER_REQUEST) |
|
123 |
} |
|
124 |
}else if( fc == SDOrx) |
|
125 |
{ |
|
126 |
switch(m->data[0] >> 5) |
|
127 |
{ |
|
128 |
/* ccs: client command specifier */ |
|
129 |
_P(DOWNLOAD_SEGMENT_REQUEST) |
|
130 |
_P(INITIATE_DOWNLOAD_REQUEST) |
|
131 |
_P(INITIATE_UPLOAD_REQUEST) |
|
132 |
_P(UPLOAD_SEGMENT_REQUEST) |
|
133 |
_P(ABORT_TRANSFER_REQUEST) |
|
134 |
} |
|
135 |
} |
|
391
7802a7d5584f
Accepted Vladimir Chren linux kernelspace port patch.
etisserant
parents:
384
diff
changeset
|
136 |
MSG(" rtr:%d", m->rtr); |
7802a7d5584f
Accepted Vladimir Chren linux kernelspace port patch.
etisserant
parents:
384
diff
changeset
|
137 |
MSG(" len:%d", m->len); |
301 | 138 |
for (i = 0 ; i < m->len ; i++) |
391
7802a7d5584f
Accepted Vladimir Chren linux kernelspace port patch.
etisserant
parents:
384
diff
changeset
|
139 |
MSG(" %02x", m->data[i]); |
7802a7d5584f
Accepted Vladimir Chren linux kernelspace port patch.
etisserant
parents:
384
diff
changeset
|
140 |
MSG("\n"); |
301 | 141 |
} |
142 |
||
145
e747d2e26af0
Win32 Native support and dynamicaly loaded CAN drivers for Linux, Cygwin and Win32.
etisserant
parents:
24
diff
changeset
|
143 |
#endif |
301 | 144 |
|
145 |
#endif |