author | etisserant |
Fri, 25 Jul 2008 10:57:20 +0200 | |
changeset 504 | ad574af3628d |
parent 475 | 4b63ea646964 |
child 517 | 003679edc437 |
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 __data_h__ |
|
24 |
#define __data_h__ |
|
25 |
||
251 | 26 |
#ifdef __cplusplus |
27 |
extern "C" { |
|
28 |
#endif |
|
29 |
||
71 | 30 |
/* declaration of CO_Data type let us include all necessary headers |
31 |
struct struct_CO_Data can then be defined later |
|
32 |
*/ |
|
0 | 33 |
typedef struct struct_CO_Data CO_Data; |
34 |
||
145
e747d2e26af0
Win32 Native support and dynamicaly loaded CAN drivers for Linux, Cygwin and Win32.
etisserant
parents:
91
diff
changeset
|
35 |
#include "applicfg.h" |
0 | 36 |
#include "def.h" |
37 |
#include "can.h" |
|
38 |
#include "objdictdef.h" |
|
39 |
#include "objacces.h" |
|
40 |
#include "sdo.h" |
|
41 |
#include "pdo.h" |
|
42 |
#include "states.h" |
|
43 |
#include "lifegrd.h" |
|
44 |
#include "sync.h" |
|
383 | 45 |
#include "nmtSlave.h" |
0 | 46 |
#include "nmtMaster.h" |
284 | 47 |
#include "emcy.h" |
343 | 48 |
#ifdef CO_ENABLE_LSS |
49 |
#include "lss.h" |
|
50 |
#endif |
|
0 | 51 |
|
71 | 52 |
/* This structurs contains all necessary information for a CanOpen node */ |
0 | 53 |
struct struct_CO_Data { |
71 | 54 |
/* Object dictionary */ |
0 | 55 |
UNS8 *bDeviceNodeId; |
56 |
const indextable *objdict; |
|
235
f812bf6b7237
Preliminary implementation of Event Timer and Inhibit Timer driven TPDO
etisserant
parents:
204
diff
changeset
|
57 |
s_PDO_status *PDO_status; |
475 | 58 |
const quick_index *firstIndex; |
59 |
const quick_index *lastIndex; |
|
60 |
const UNS16 *ObjdictSize; |
|
0 | 61 |
const UNS8 *iam_a_slave; |
62 |
valueRangeTest_t valueRangeTest; |
|
63 |
||
71 | 64 |
/* SDO */ |
0 | 65 |
s_transfer transfers[SDO_MAX_SIMULTANEOUS_TRANSFERTS]; |
71 | 66 |
/* s_sdo_parameter *sdo_parameters; */ |
0 | 67 |
|
71 | 68 |
/* State machine */ |
0 | 69 |
e_nodeState nodeState; |
70 |
s_state_communication CurrentCommunicationState; |
|
71 |
initialisation_t initialisation; |
|
72 |
preOperational_t preOperational; |
|
73 |
operational_t operational; |
|
74 |
stopped_t stopped; |
|
475 | 75 |
void (*NMT_Slave_Node_Reset_Callback)(CO_Data*); |
76 |
void (*NMT_Slave_Communications_Reset_Callback)(CO_Data*); |
|
77 |
||
71 | 78 |
/* NMT-heartbeat */ |
0 | 79 |
UNS8 *ConsumerHeartbeatCount; |
80 |
UNS32 *ConsumerHeartbeatEntries; |
|
81 |
TIMER_HANDLE *ConsumerHeartBeatTimers; |
|
82 |
UNS16 *ProducerHeartBeatTime; |
|
83 |
TIMER_HANDLE ProducerHeartBeatTimer; |
|
84 |
heartbeatError_t heartbeatError; |
|
85 |
e_nodeState NMTable[NMT_MAX_NODE_ID]; |
|
86 |
||
71 | 87 |
/* SYNC */ |
0 | 88 |
TIMER_HANDLE syncTimer; |
89 |
UNS32 *COB_ID_Sync; |
|
90 |
UNS32 *Sync_Cycle_Period; |
|
71 | 91 |
/*UNS32 *Sync_window_length;;*/ |
0 | 92 |
post_sync_t post_sync; |
93 |
post_TPDO_t post_TPDO; |
|
343 | 94 |
post_SlaveBootup_t post_SlaveBootup; |
0 | 95 |
|
71 | 96 |
/* General */ |
0 | 97 |
UNS8 toggle; |
405
487b37176423
Changed CAN_HANDLE into CAN_PORT in data.h and lss.h. More semanticaly correct.
etisserant
parents:
384
diff
changeset
|
98 |
CAN_PORT canHandle; |
0 | 99 |
scanIndexOD_t scanIndexOD; |
161
c4908cc776a9
SetODEntry now call CO_data->storeODSubEntry(Index,SubIndex) for variables to be Stored (when column Save==True in GUI)
etisserant
parents:
149
diff
changeset
|
100 |
storeODSubIndex_t storeODSubIndex; |
178 | 101 |
|
102 |
/* DCF concise */ |
|
322 | 103 |
const indextable* dcf_odentry; |
204
44ce74232ccb
Some fixes for visual studio C compiler compatiblity.
etisserant
parents:
178
diff
changeset
|
104 |
UNS8* dcf_cursor; |
320
f82e758840bd
Some fixes suggested by Luis Jim?nez, plus some minor enhancements in DCF.
etisserant
parents:
314
diff
changeset
|
105 |
UNS32 dcf_entries_count; |
349 | 106 |
UNS8 dcf_request; |
178 | 107 |
|
284 | 108 |
/* EMCY */ |
109 |
e_errorState error_state; |
|
110 |
UNS8 error_history_size; |
|
111 |
UNS8* error_number; |
|
112 |
UNS32* error_first_element; |
|
113 |
UNS8* error_register; |
|
314
68e83c3ffbb5
Better EMCY support. Now EMCY COB-ID depend on OD 1014h entry, as told in DS-301.
etisserant
parents:
284
diff
changeset
|
114 |
UNS32* error_cobid; |
284 | 115 |
s_errors error_data[EMCY_MAX_ERRORS]; |
116 |
post_emcy_t post_emcy; |
|
117 |
||
343 | 118 |
#ifdef CO_ENABLE_LSS |
119 |
/* LSS */ |
|
120 |
lss_transfer_t lss_transfer; |
|
121 |
lss_StoreConfiguration_t lss_StoreConfiguration; |
|
122 |
#endif |
|
0 | 123 |
}; |
124 |
||
91
ed2612282988
- Better array initialization in data.h CANOPEN_NODE_DATA_INITIALIZER macro. Use a little hack with configure and config.h to create the "pure Ansi C" initializer.
etisserant
parents:
78
diff
changeset
|
125 |
#define NMTable_Initializer Unknown_state, |
ed2612282988
- Better array initialization in data.h CANOPEN_NODE_DATA_INITIALIZER macro. Use a little hack with configure and config.h to create the "pure Ansi C" initializer.
etisserant
parents:
78
diff
changeset
|
126 |
|
ed2612282988
- Better array initialization in data.h CANOPEN_NODE_DATA_INITIALIZER macro. Use a little hack with configure and config.h to create the "pure Ansi C" initializer.
etisserant
parents:
78
diff
changeset
|
127 |
#define s_transfer_Initializer {\ |
ed2612282988
- Better array initialization in data.h CANOPEN_NODE_DATA_INITIALIZER macro. Use a little hack with configure and config.h to create the "pure Ansi C" initializer.
etisserant
parents:
78
diff
changeset
|
128 |
0, /* nodeId */\ |
ed2612282988
- Better array initialization in data.h CANOPEN_NODE_DATA_INITIALIZER macro. Use a little hack with configure and config.h to create the "pure Ansi C" initializer.
etisserant
parents:
78
diff
changeset
|
129 |
0, /* wohami */\ |
ed2612282988
- Better array initialization in data.h CANOPEN_NODE_DATA_INITIALIZER macro. Use a little hack with configure and config.h to create the "pure Ansi C" initializer.
etisserant
parents:
78
diff
changeset
|
130 |
SDO_RESET, /* state */\ |
ed2612282988
- Better array initialization in data.h CANOPEN_NODE_DATA_INITIALIZER macro. Use a little hack with configure and config.h to create the "pure Ansi C" initializer.
etisserant
parents:
78
diff
changeset
|
131 |
0, /* toggle */\ |
ed2612282988
- Better array initialization in data.h CANOPEN_NODE_DATA_INITIALIZER macro. Use a little hack with configure and config.h to create the "pure Ansi C" initializer.
etisserant
parents:
78
diff
changeset
|
132 |
0, /* abortCode */\ |
ed2612282988
- Better array initialization in data.h CANOPEN_NODE_DATA_INITIALIZER macro. Use a little hack with configure and config.h to create the "pure Ansi C" initializer.
etisserant
parents:
78
diff
changeset
|
133 |
0, /* index */\ |
ed2612282988
- Better array initialization in data.h CANOPEN_NODE_DATA_INITIALIZER macro. Use a little hack with configure and config.h to create the "pure Ansi C" initializer.
etisserant
parents:
78
diff
changeset
|
134 |
0, /* subIndex */\ |
ed2612282988
- Better array initialization in data.h CANOPEN_NODE_DATA_INITIALIZER macro. Use a little hack with configure and config.h to create the "pure Ansi C" initializer.
etisserant
parents:
78
diff
changeset
|
135 |
0, /* count */\ |
ed2612282988
- Better array initialization in data.h CANOPEN_NODE_DATA_INITIALIZER macro. Use a little hack with configure and config.h to create the "pure Ansi C" initializer.
etisserant
parents:
78
diff
changeset
|
136 |
0, /* offset */\ |
ed2612282988
- Better array initialization in data.h CANOPEN_NODE_DATA_INITIALIZER macro. Use a little hack with configure and config.h to create the "pure Ansi C" initializer.
etisserant
parents:
78
diff
changeset
|
137 |
{0}, /* data (static use, so that all the table is initialize at 0)*/\ |
ed2612282988
- Better array initialization in data.h CANOPEN_NODE_DATA_INITIALIZER macro. Use a little hack with configure and config.h to create the "pure Ansi C" initializer.
etisserant
parents:
78
diff
changeset
|
138 |
0, /* dataType */\ |
ed2612282988
- Better array initialization in data.h CANOPEN_NODE_DATA_INITIALIZER macro. Use a little hack with configure and config.h to create the "pure Ansi C" initializer.
etisserant
parents:
78
diff
changeset
|
139 |
-1, /* timer */\ |
ed2612282988
- Better array initialization in data.h CANOPEN_NODE_DATA_INITIALIZER macro. Use a little hack with configure and config.h to create the "pure Ansi C" initializer.
etisserant
parents:
78
diff
changeset
|
140 |
NULL /* Callback */\ |
ed2612282988
- Better array initialization in data.h CANOPEN_NODE_DATA_INITIALIZER macro. Use a little hack with configure and config.h to create the "pure Ansi C" initializer.
etisserant
parents:
78
diff
changeset
|
141 |
}, |
ed2612282988
- Better array initialization in data.h CANOPEN_NODE_DATA_INITIALIZER macro. Use a little hack with configure and config.h to create the "pure Ansi C" initializer.
etisserant
parents:
78
diff
changeset
|
142 |
|
284 | 143 |
#define ERROR_DATA_INITIALIZER \ |
144 |
{\ |
|
145 |
0, /* errCode */\ |
|
146 |
0, /* errRegMask */\ |
|
147 |
0 /* active */\ |
|
148 |
}, |
|
343 | 149 |
|
150 |
#ifdef CO_ENABLE_LSS |
|
381 | 151 |
|
152 |
#ifdef CO_ENABLE_LSS_FS |
|
153 |
#define lss_fs_Initializer \ |
|
154 |
,0, /* IDNumber */\ |
|
155 |
128, /* BitChecked */\ |
|
156 |
0, /* LSSSub */\ |
|
157 |
0, /* LSSNext */\ |
|
158 |
0, /* LSSPos */\ |
|
159 |
LSS_FS_RESET, /* FastScan_SM */\ |
|
160 |
-1 /* timerFS */ |
|
161 |
#else |
|
162 |
#define lss_fs_Initializer |
|
163 |
#endif |
|
164 |
||
343 | 165 |
#define lss_Initializer {\ |
166 |
LSS_RESET, /* state */\ |
|
167 |
0, /* command */\ |
|
168 |
LSS_WAITING_MODE, /* mode */\ |
|
169 |
0, /* dat1 */\ |
|
170 |
0, /* dat2 */\ |
|
171 |
0, /* NodeID */\ |
|
172 |
0, /* addr_sel_match */\ |
|
173 |
0, /* addr_ident_match */\ |
|
174 |
"none", /* BaudRate */\ |
|
175 |
0, /* SwitchDelay */\ |
|
176 |
SDELAY_OFF, /* SwitchDelayState */\ |
|
381 | 177 |
NULL, /* canHandle_t */\ |
178 |
-1, /* TimerMSG */\ |
|
179 |
-1, /* TimerSDELAY */\ |
|
343 | 180 |
NULL, /* Callback */\ |
381 | 181 |
0 /* LSSanswer */\ |
182 |
lss_fs_Initializer /*FastScan service initialization */\ |
|
343 | 183 |
},\ |
384 | 184 |
NULL /* _lss_StoreConfiguration*/ |
343 | 185 |
#else |
186 |
#define lss_Initializer |
|
187 |
#endif |
|
188 |
||
284 | 189 |
|
71 | 190 |
/* A macro to initialize the data in client app.*/ |
78 | 191 |
/* CO_Data structure */ |
0 | 192 |
#define CANOPEN_NODE_DATA_INITIALIZER(NODE_PREFIX) {\ |
193 |
/* Object dictionary*/\ |
|
78 | 194 |
& NODE_PREFIX ## _bDeviceNodeId, /* bDeviceNodeId */\ |
195 |
NODE_PREFIX ## _objdict, /* objdict */\ |
|
235
f812bf6b7237
Preliminary implementation of Event Timer and Inhibit Timer driven TPDO
etisserant
parents:
204
diff
changeset
|
196 |
NODE_PREFIX ## _PDO_status, /* PDO_status */\ |
78 | 197 |
& NODE_PREFIX ## _firstIndex, /* firstIndex */\ |
198 |
& NODE_PREFIX ## _lastIndex, /* lastIndex */\ |
|
199 |
& NODE_PREFIX ## _ObjdictSize, /* ObjdictSize */\ |
|
200 |
& NODE_PREFIX ## _iam_a_slave, /* iam_a_slave */\ |
|
201 |
NODE_PREFIX ## _valueRangeTest, /* valueRangeTest */\ |
|
0 | 202 |
\ |
78 | 203 |
/* SDO, structure s_transfer */\ |
91
ed2612282988
- Better array initialization in data.h CANOPEN_NODE_DATA_INITIALIZER macro. Use a little hack with configure and config.h to create the "pure Ansi C" initializer.
etisserant
parents:
78
diff
changeset
|
204 |
{\ |
ed2612282988
- Better array initialization in data.h CANOPEN_NODE_DATA_INITIALIZER macro. Use a little hack with configure and config.h to create the "pure Ansi C" initializer.
etisserant
parents:
78
diff
changeset
|
205 |
REPEAT_SDO_MAX_SIMULTANEOUS_TRANSFERTS_TIMES(s_transfer_Initializer)\ |
78 | 206 |
},\ |
0 | 207 |
\ |
78 | 208 |
/* State machine*/\ |
209 |
Unknown_state, /* nodeState */\ |
|
210 |
/* structure s_state_communication */\ |
|
211 |
{\ |
|
212 |
0, /* csBoot_Up */\ |
|
213 |
0, /* csSDO */\ |
|
214 |
0, /* csEmergency */\ |
|
215 |
0, /* csSYNC */\ |
|
216 |
0, /* csHeartbeat */\ |
|
381 | 217 |
0, /* csPDO */\ |
218 |
0 /* csLSS */\ |
|
78 | 219 |
},\ |
167 | 220 |
_initialisation, /* initialisation */\ |
221 |
_preOperational, /* preOperational */\ |
|
222 |
_operational, /* operational */\ |
|
223 |
_stopped, /* stopped */\ |
|
475 | 224 |
NULL, /* NMT node reset callback */\ |
225 |
NULL, /* NMT communications reset callback */\ |
|
0 | 226 |
\ |
227 |
/* NMT-heartbeat */\ |
|
78 | 228 |
& NODE_PREFIX ## _highestSubIndex_obj1016, /* ConsumerHeartbeatCount */\ |
229 |
NODE_PREFIX ## _obj1016, /* ConsumerHeartbeatEntries */\ |
|
230 |
NODE_PREFIX ## _heartBeatTimers, /* ConsumerHeartBeatTimers */\ |
|
231 |
& NODE_PREFIX ## _obj1017, /* ProducerHeartBeatTime */\ |
|
232 |
TIMER_NONE, /* ProducerHeartBeatTimer */\ |
|
167 | 233 |
_heartbeatError, /* heartbeatError */\ |
78 | 234 |
\ |
91
ed2612282988
- Better array initialization in data.h CANOPEN_NODE_DATA_INITIALIZER macro. Use a little hack with configure and config.h to create the "pure Ansi C" initializer.
etisserant
parents:
78
diff
changeset
|
235 |
{REPEAT_NMT_MAX_NODE_ID_TIMES(NMTable_Initializer)},\ |
78 | 236 |
/* is well initialized at "Unknown_state". Is it ok ? (FD)*/\ |
0 | 237 |
\ |
238 |
/* SYNC */\ |
|
78 | 239 |
TIMER_NONE, /* syncTimer */\ |
240 |
& NODE_PREFIX ## _obj1005, /* COB_ID_Sync */\ |
|
241 |
& NODE_PREFIX ## _obj1006, /* Sync_Cycle_Period */\ |
|
242 |
/*& NODE_PREFIX ## _obj1007, */ /* Sync_window_length */\ |
|
167 | 243 |
_post_sync, /* post_sync */\ |
244 |
_post_TPDO, /* post_TPDO */\ |
|
343 | 245 |
_post_SlaveBootup, /* post_SlaveBootup */\ |
0 | 246 |
\ |
247 |
/* General */\ |
|
78 | 248 |
0, /* toggle */\ |
167 | 249 |
NULL, /* canSend */\ |
161
c4908cc776a9
SetODEntry now call CO_data->storeODSubEntry(Index,SubIndex) for variables to be Stored (when column Save==True in GUI)
etisserant
parents:
149
diff
changeset
|
250 |
NODE_PREFIX ## _scanIndexOD, /* scanIndexOD */\ |
178 | 251 |
_storeODSubIndex, /* storeODSubIndex */\ |
320
f82e758840bd
Some fixes suggested by Luis Jim?nez, plus some minor enhancements in DCF.
etisserant
parents:
314
diff
changeset
|
252 |
/* DCF concise */\ |
f82e758840bd
Some fixes suggested by Luis Jim?nez, plus some minor enhancements in DCF.
etisserant
parents:
314
diff
changeset
|
253 |
NULL, /*dcf_odentry*/\ |
178 | 254 |
NULL, /*dcf_cursor*/\ |
320
f82e758840bd
Some fixes suggested by Luis Jim?nez, plus some minor enhancements in DCF.
etisserant
parents:
314
diff
changeset
|
255 |
1, /*dcf_entries_count*/\ |
349 | 256 |
0, /* dcf_request*/\ |
284 | 257 |
\ |
258 |
/* EMCY */\ |
|
259 |
Error_free, /* error_state */\ |
|
260 |
sizeof(NODE_PREFIX ## _obj1003) / sizeof(NODE_PREFIX ## _obj1003[0]), /* error_history_size */\ |
|
261 |
& NODE_PREFIX ## _highestSubIndex_obj1003, /* error_number */\ |
|
262 |
& NODE_PREFIX ## _obj1003[0], /* error_first_element */\ |
|
263 |
& NODE_PREFIX ## _obj1001, /* error_register */\ |
|
314
68e83c3ffbb5
Better EMCY support. Now EMCY COB-ID depend on OD 1014h entry, as told in DS-301.
etisserant
parents:
284
diff
changeset
|
264 |
& NODE_PREFIX ## _obj1014, /* error_cobid */\ |
284 | 265 |
/* error_data: structure s_errors */\ |
266 |
{\ |
|
267 |
REPEAT_EMCY_MAX_ERRORS_TIMES(ERROR_DATA_INITIALIZER)\ |
|
268 |
},\ |
|
343 | 269 |
_post_emcy, /* post_emcy */\ |
270 |
/* LSS */\ |
|
271 |
lss_Initializer\ |
|
0 | 272 |
} |
273 |
||
251 | 274 |
#ifdef __cplusplus |
275 |
}; |
|
276 |
#endif |
|
277 |
||
71 | 278 |
#endif /* __data_h__ */ |
0 | 279 |
|
280 |