author | fbeaulier |
Tue, 30 Aug 2011 12:14:34 +0200 | |
changeset 667 | f48424ce2a5e |
parent 664 | a03f0aa7d219 |
child 669 | 50da44ebaf00 |
permissions | -rwxr-xr-x |
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 |
|
528
0a30e161d63c
Re-write doxygen tags in headers files to generate User API documentation
greg
parents:
517
diff
changeset
|
52 |
/** |
0a30e161d63c
Re-write doxygen tags in headers files to generate User API documentation
greg
parents:
517
diff
changeset
|
53 |
* @ingroup od |
561 | 54 |
* @brief This structure contains all necessary informations to define a CANOpen node |
528
0a30e161d63c
Re-write doxygen tags in headers files to generate User API documentation
greg
parents:
517
diff
changeset
|
55 |
*/ |
0 | 56 |
struct struct_CO_Data { |
71 | 57 |
/* Object dictionary */ |
0 | 58 |
UNS8 *bDeviceNodeId; |
59 |
const indextable *objdict; |
|
235
f812bf6b7237
Preliminary implementation of Event Timer and Inhibit Timer driven TPDO
etisserant
parents:
204
diff
changeset
|
60 |
s_PDO_status *PDO_status; |
475 | 61 |
const quick_index *firstIndex; |
62 |
const quick_index *lastIndex; |
|
63 |
const UNS16 *ObjdictSize; |
|
0 | 64 |
const UNS8 *iam_a_slave; |
65 |
valueRangeTest_t valueRangeTest; |
|
66 |
||
71 | 67 |
/* SDO */ |
0 | 68 |
s_transfer transfers[SDO_MAX_SIMULTANEOUS_TRANSFERTS]; |
71 | 69 |
/* s_sdo_parameter *sdo_parameters; */ |
0 | 70 |
|
71 | 71 |
/* State machine */ |
0 | 72 |
e_nodeState nodeState; |
73 |
s_state_communication CurrentCommunicationState; |
|
74 |
initialisation_t initialisation; |
|
75 |
preOperational_t preOperational; |
|
76 |
operational_t operational; |
|
77 |
stopped_t stopped; |
|
475 | 78 |
void (*NMT_Slave_Node_Reset_Callback)(CO_Data*); |
79 |
void (*NMT_Slave_Communications_Reset_Callback)(CO_Data*); |
|
80 |
||
71 | 81 |
/* NMT-heartbeat */ |
0 | 82 |
UNS8 *ConsumerHeartbeatCount; |
83 |
UNS32 *ConsumerHeartbeatEntries; |
|
84 |
TIMER_HANDLE *ConsumerHeartBeatTimers; |
|
85 |
UNS16 *ProducerHeartBeatTime; |
|
86 |
TIMER_HANDLE ProducerHeartBeatTimer; |
|
87 |
heartbeatError_t heartbeatError; |
|
88 |
e_nodeState NMTable[NMT_MAX_NODE_ID]; |
|
89 |
||
71 | 90 |
/* SYNC */ |
0 | 91 |
TIMER_HANDLE syncTimer; |
92 |
UNS32 *COB_ID_Sync; |
|
93 |
UNS32 *Sync_Cycle_Period; |
|
71 | 94 |
/*UNS32 *Sync_window_length;;*/ |
0 | 95 |
post_sync_t post_sync; |
96 |
post_TPDO_t post_TPDO; |
|
343 | 97 |
post_SlaveBootup_t post_SlaveBootup; |
664
a03f0aa7d219
CHANGE: SDO block mode added, without CRC support
fbeaulier
parents:
636
diff
changeset
|
98 |
post_SlaveStateChange_t post_SlaveStateChange; |
0 | 99 |
|
71 | 100 |
/* General */ |
0 | 101 |
UNS8 toggle; |
405
487b37176423
Changed CAN_HANDLE into CAN_PORT in data.h and lss.h. More semanticaly correct.
etisserant
parents:
384
diff
changeset
|
102 |
CAN_PORT canHandle; |
0 | 103 |
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
|
104 |
storeODSubIndex_t storeODSubIndex; |
178 | 105 |
|
106 |
/* DCF concise */ |
|
322 | 107 |
const indextable* dcf_odentry; |
204
44ce74232ccb
Some fixes for visual studio C compiler compatiblity.
etisserant
parents:
178
diff
changeset
|
108 |
UNS8* dcf_cursor; |
320
f82e758840bd
Some fixes suggested by Luis Jim?nez, plus some minor enhancements in DCF.
etisserant
parents:
314
diff
changeset
|
109 |
UNS32 dcf_entries_count; |
349 | 110 |
UNS8 dcf_request; |
178 | 111 |
|
284 | 112 |
/* EMCY */ |
113 |
e_errorState error_state; |
|
114 |
UNS8 error_history_size; |
|
115 |
UNS8* error_number; |
|
116 |
UNS32* error_first_element; |
|
117 |
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
|
118 |
UNS32* error_cobid; |
284 | 119 |
s_errors error_data[EMCY_MAX_ERRORS]; |
120 |
post_emcy_t post_emcy; |
|
121 |
||
343 | 122 |
#ifdef CO_ENABLE_LSS |
123 |
/* LSS */ |
|
124 |
lss_transfer_t lss_transfer; |
|
125 |
lss_StoreConfiguration_t lss_StoreConfiguration; |
|
126 |
#endif |
|
0 | 127 |
}; |
128 |
||
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
|
129 |
#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
|
130 |
|
636
033fe6f1ec3c
ADDED: - dynamic memory allocation for sdo transfer using malloc and free
Christian Taedcke
parents:
635
diff
changeset
|
131 |
#ifdef SDO_DYNAMIC_BUFFER_ALLOCATION |
033fe6f1ec3c
ADDED: - dynamic memory allocation for sdo transfer using malloc and free
Christian Taedcke
parents:
635
diff
changeset
|
132 |
#define s_transfer_Initializer {\ |
664
a03f0aa7d219
CHANGE: SDO block mode added, without CRC support
fbeaulier
parents:
636
diff
changeset
|
133 |
0, /* CliServNbr */\ |
636
033fe6f1ec3c
ADDED: - dynamic memory allocation for sdo transfer using malloc and free
Christian Taedcke
parents:
635
diff
changeset
|
134 |
0, /* wohami */\ |
033fe6f1ec3c
ADDED: - dynamic memory allocation for sdo transfer using malloc and free
Christian Taedcke
parents:
635
diff
changeset
|
135 |
SDO_RESET, /* state */\ |
033fe6f1ec3c
ADDED: - dynamic memory allocation for sdo transfer using malloc and free
Christian Taedcke
parents:
635
diff
changeset
|
136 |
0, /* toggle */\ |
033fe6f1ec3c
ADDED: - dynamic memory allocation for sdo transfer using malloc and free
Christian Taedcke
parents:
635
diff
changeset
|
137 |
0, /* abortCode */\ |
033fe6f1ec3c
ADDED: - dynamic memory allocation for sdo transfer using malloc and free
Christian Taedcke
parents:
635
diff
changeset
|
138 |
0, /* index */\ |
033fe6f1ec3c
ADDED: - dynamic memory allocation for sdo transfer using malloc and free
Christian Taedcke
parents:
635
diff
changeset
|
139 |
0, /* subIndex */\ |
033fe6f1ec3c
ADDED: - dynamic memory allocation for sdo transfer using malloc and free
Christian Taedcke
parents:
635
diff
changeset
|
140 |
0, /* count */\ |
033fe6f1ec3c
ADDED: - dynamic memory allocation for sdo transfer using malloc and free
Christian Taedcke
parents:
635
diff
changeset
|
141 |
0, /* offset */\ |
033fe6f1ec3c
ADDED: - dynamic memory allocation for sdo transfer using malloc and free
Christian Taedcke
parents:
635
diff
changeset
|
142 |
{0}, /* data (static use, so that all the table is initialize at 0)*/\ |
033fe6f1ec3c
ADDED: - dynamic memory allocation for sdo transfer using malloc and free
Christian Taedcke
parents:
635
diff
changeset
|
143 |
NULL, /* dynamicData */ \ |
033fe6f1ec3c
ADDED: - dynamic memory allocation for sdo transfer using malloc and free
Christian Taedcke
parents:
635
diff
changeset
|
144 |
0, /* dynamicDataSize */ \ |
664
a03f0aa7d219
CHANGE: SDO block mode added, without CRC support
fbeaulier
parents:
636
diff
changeset
|
145 |
0, /* peerCRCsupport */\ |
a03f0aa7d219
CHANGE: SDO block mode added, without CRC support
fbeaulier
parents:
636
diff
changeset
|
146 |
0, /* blksize */\ |
a03f0aa7d219
CHANGE: SDO block mode added, without CRC support
fbeaulier
parents:
636
diff
changeset
|
147 |
0, /* ackseq */\ |
a03f0aa7d219
CHANGE: SDO block mode added, without CRC support
fbeaulier
parents:
636
diff
changeset
|
148 |
0, /* objsize */\ |
a03f0aa7d219
CHANGE: SDO block mode added, without CRC support
fbeaulier
parents:
636
diff
changeset
|
149 |
0, /* lastblockoffset */\ |
a03f0aa7d219
CHANGE: SDO block mode added, without CRC support
fbeaulier
parents:
636
diff
changeset
|
150 |
0, /* seqno */\ |
a03f0aa7d219
CHANGE: SDO block mode added, without CRC support
fbeaulier
parents:
636
diff
changeset
|
151 |
0, /* endfield */\ |
a03f0aa7d219
CHANGE: SDO block mode added, without CRC support
fbeaulier
parents:
636
diff
changeset
|
152 |
RXSTEP_INIT,/* rxstep */\ |
a03f0aa7d219
CHANGE: SDO block mode added, without CRC support
fbeaulier
parents:
636
diff
changeset
|
153 |
{0}, /* tmpData */\ |
636
033fe6f1ec3c
ADDED: - dynamic memory allocation for sdo transfer using malloc and free
Christian Taedcke
parents:
635
diff
changeset
|
154 |
0, /* dataType */\ |
033fe6f1ec3c
ADDED: - dynamic memory allocation for sdo transfer using malloc and free
Christian Taedcke
parents:
635
diff
changeset
|
155 |
-1, /* timer */\ |
033fe6f1ec3c
ADDED: - dynamic memory allocation for sdo transfer using malloc and free
Christian Taedcke
parents:
635
diff
changeset
|
156 |
NULL /* Callback */\ |
033fe6f1ec3c
ADDED: - dynamic memory allocation for sdo transfer using malloc and free
Christian Taedcke
parents:
635
diff
changeset
|
157 |
}, |
033fe6f1ec3c
ADDED: - dynamic memory allocation for sdo transfer using malloc and free
Christian Taedcke
parents:
635
diff
changeset
|
158 |
#else |
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
|
159 |
#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
|
160 |
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
|
161 |
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
|
162 |
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
|
163 |
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
|
164 |
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
|
165 |
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
|
166 |
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
|
167 |
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
|
168 |
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
|
169 |
{0}, /* data (static use, so that all the table is initialize at 0)*/\ |
664
a03f0aa7d219
CHANGE: SDO block mode added, without CRC support
fbeaulier
parents:
636
diff
changeset
|
170 |
0, /* peerCRCsupport */\ |
a03f0aa7d219
CHANGE: SDO block mode added, without CRC support
fbeaulier
parents:
636
diff
changeset
|
171 |
0, /* blksize */\ |
a03f0aa7d219
CHANGE: SDO block mode added, without CRC support
fbeaulier
parents:
636
diff
changeset
|
172 |
0, /* ackseq */\ |
a03f0aa7d219
CHANGE: SDO block mode added, without CRC support
fbeaulier
parents:
636
diff
changeset
|
173 |
0, /* objsize */\ |
a03f0aa7d219
CHANGE: SDO block mode added, without CRC support
fbeaulier
parents:
636
diff
changeset
|
174 |
0, /* lastblockoffset */\ |
a03f0aa7d219
CHANGE: SDO block mode added, without CRC support
fbeaulier
parents:
636
diff
changeset
|
175 |
0, /* seqno */\ |
a03f0aa7d219
CHANGE: SDO block mode added, without CRC support
fbeaulier
parents:
636
diff
changeset
|
176 |
0, /* endfield */\ |
a03f0aa7d219
CHANGE: SDO block mode added, without CRC support
fbeaulier
parents:
636
diff
changeset
|
177 |
RXSTEP_INIT,/* rxstep */\ |
a03f0aa7d219
CHANGE: SDO block mode added, without CRC support
fbeaulier
parents:
636
diff
changeset
|
178 |
{0}, /* tmpData */\ |
a03f0aa7d219
CHANGE: SDO block mode added, without CRC support
fbeaulier
parents:
636
diff
changeset
|
179 |
0, /* */\ |
a03f0aa7d219
CHANGE: SDO block mode added, without CRC support
fbeaulier
parents:
636
diff
changeset
|
180 |
-1, /* */\ |
a03f0aa7d219
CHANGE: SDO block mode added, without CRC support
fbeaulier
parents:
636
diff
changeset
|
181 |
NULL /* */\ |
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
|
182 |
}, |
636
033fe6f1ec3c
ADDED: - dynamic memory allocation for sdo transfer using malloc and free
Christian Taedcke
parents:
635
diff
changeset
|
183 |
#endif //SDO_DYNAMIC_BUFFER_ALLOCATION |
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
|
184 |
|
284 | 185 |
#define ERROR_DATA_INITIALIZER \ |
186 |
{\ |
|
187 |
0, /* errCode */\ |
|
188 |
0, /* errRegMask */\ |
|
189 |
0 /* active */\ |
|
190 |
}, |
|
343 | 191 |
|
192 |
#ifdef CO_ENABLE_LSS |
|
381 | 193 |
|
194 |
#ifdef CO_ENABLE_LSS_FS |
|
195 |
#define lss_fs_Initializer \ |
|
196 |
,0, /* IDNumber */\ |
|
197 |
128, /* BitChecked */\ |
|
198 |
0, /* LSSSub */\ |
|
199 |
0, /* LSSNext */\ |
|
200 |
0, /* LSSPos */\ |
|
201 |
LSS_FS_RESET, /* FastScan_SM */\ |
|
517 | 202 |
-1, /* timerFS */\ |
203 |
{{0,0,0,0},{0,0,0,0}} /* lss_fs_transfer */ |
|
381 | 204 |
#else |
205 |
#define lss_fs_Initializer |
|
206 |
#endif |
|
207 |
||
343 | 208 |
#define lss_Initializer {\ |
209 |
LSS_RESET, /* state */\ |
|
210 |
0, /* command */\ |
|
211 |
LSS_WAITING_MODE, /* mode */\ |
|
212 |
0, /* dat1 */\ |
|
213 |
0, /* dat2 */\ |
|
214 |
0, /* NodeID */\ |
|
215 |
0, /* addr_sel_match */\ |
|
216 |
0, /* addr_ident_match */\ |
|
217 |
"none", /* BaudRate */\ |
|
218 |
0, /* SwitchDelay */\ |
|
219 |
SDELAY_OFF, /* SwitchDelayState */\ |
|
381 | 220 |
NULL, /* canHandle_t */\ |
221 |
-1, /* TimerMSG */\ |
|
222 |
-1, /* TimerSDELAY */\ |
|
343 | 223 |
NULL, /* Callback */\ |
381 | 224 |
0 /* LSSanswer */\ |
225 |
lss_fs_Initializer /*FastScan service initialization */\ |
|
343 | 226 |
},\ |
384 | 227 |
NULL /* _lss_StoreConfiguration*/ |
343 | 228 |
#else |
229 |
#define lss_Initializer |
|
230 |
#endif |
|
231 |
||
284 | 232 |
|
71 | 233 |
/* A macro to initialize the data in client app.*/ |
78 | 234 |
/* CO_Data structure */ |
0 | 235 |
#define CANOPEN_NODE_DATA_INITIALIZER(NODE_PREFIX) {\ |
236 |
/* Object dictionary*/\ |
|
78 | 237 |
& NODE_PREFIX ## _bDeviceNodeId, /* bDeviceNodeId */\ |
238 |
NODE_PREFIX ## _objdict, /* objdict */\ |
|
235
f812bf6b7237
Preliminary implementation of Event Timer and Inhibit Timer driven TPDO
etisserant
parents:
204
diff
changeset
|
239 |
NODE_PREFIX ## _PDO_status, /* PDO_status */\ |
78 | 240 |
& NODE_PREFIX ## _firstIndex, /* firstIndex */\ |
241 |
& NODE_PREFIX ## _lastIndex, /* lastIndex */\ |
|
242 |
& NODE_PREFIX ## _ObjdictSize, /* ObjdictSize */\ |
|
243 |
& NODE_PREFIX ## _iam_a_slave, /* iam_a_slave */\ |
|
244 |
NODE_PREFIX ## _valueRangeTest, /* valueRangeTest */\ |
|
0 | 245 |
\ |
78 | 246 |
/* 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
|
247 |
{\ |
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
|
248 |
REPEAT_SDO_MAX_SIMULTANEOUS_TRANSFERTS_TIMES(s_transfer_Initializer)\ |
78 | 249 |
},\ |
0 | 250 |
\ |
78 | 251 |
/* State machine*/\ |
252 |
Unknown_state, /* nodeState */\ |
|
253 |
/* structure s_state_communication */\ |
|
254 |
{\ |
|
255 |
0, /* csBoot_Up */\ |
|
256 |
0, /* csSDO */\ |
|
257 |
0, /* csEmergency */\ |
|
258 |
0, /* csSYNC */\ |
|
259 |
0, /* csHeartbeat */\ |
|
381 | 260 |
0, /* csPDO */\ |
261 |
0 /* csLSS */\ |
|
78 | 262 |
},\ |
167 | 263 |
_initialisation, /* initialisation */\ |
264 |
_preOperational, /* preOperational */\ |
|
265 |
_operational, /* operational */\ |
|
266 |
_stopped, /* stopped */\ |
|
475 | 267 |
NULL, /* NMT node reset callback */\ |
268 |
NULL, /* NMT communications reset callback */\ |
|
0 | 269 |
\ |
270 |
/* NMT-heartbeat */\ |
|
78 | 271 |
& NODE_PREFIX ## _highestSubIndex_obj1016, /* ConsumerHeartbeatCount */\ |
272 |
NODE_PREFIX ## _obj1016, /* ConsumerHeartbeatEntries */\ |
|
273 |
NODE_PREFIX ## _heartBeatTimers, /* ConsumerHeartBeatTimers */\ |
|
274 |
& NODE_PREFIX ## _obj1017, /* ProducerHeartBeatTime */\ |
|
275 |
TIMER_NONE, /* ProducerHeartBeatTimer */\ |
|
167 | 276 |
_heartbeatError, /* heartbeatError */\ |
78 | 277 |
\ |
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
|
278 |
{REPEAT_NMT_MAX_NODE_ID_TIMES(NMTable_Initializer)},\ |
78 | 279 |
/* is well initialized at "Unknown_state". Is it ok ? (FD)*/\ |
0 | 280 |
\ |
281 |
/* SYNC */\ |
|
78 | 282 |
TIMER_NONE, /* syncTimer */\ |
283 |
& NODE_PREFIX ## _obj1005, /* COB_ID_Sync */\ |
|
284 |
& NODE_PREFIX ## _obj1006, /* Sync_Cycle_Period */\ |
|
285 |
/*& NODE_PREFIX ## _obj1007, */ /* Sync_window_length */\ |
|
167 | 286 |
_post_sync, /* post_sync */\ |
287 |
_post_TPDO, /* post_TPDO */\ |
|
343 | 288 |
_post_SlaveBootup, /* post_SlaveBootup */\ |
635
30a0e926bb2e
ADDED: - new callback post_SlaveStateChange so that a master can monitor the state of its slave nodes using a heartbeat.
Christian Taedcke
parents:
561
diff
changeset
|
289 |
_post_SlaveStateChange, /* post_SlaveStateChange */\ |
0 | 290 |
\ |
291 |
/* General */\ |
|
78 | 292 |
0, /* toggle */\ |
167 | 293 |
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
|
294 |
NODE_PREFIX ## _scanIndexOD, /* scanIndexOD */\ |
178 | 295 |
_storeODSubIndex, /* storeODSubIndex */\ |
320
f82e758840bd
Some fixes suggested by Luis Jim?nez, plus some minor enhancements in DCF.
etisserant
parents:
314
diff
changeset
|
296 |
/* DCF concise */\ |
f82e758840bd
Some fixes suggested by Luis Jim?nez, plus some minor enhancements in DCF.
etisserant
parents:
314
diff
changeset
|
297 |
NULL, /*dcf_odentry*/\ |
178 | 298 |
NULL, /*dcf_cursor*/\ |
320
f82e758840bd
Some fixes suggested by Luis Jim?nez, plus some minor enhancements in DCF.
etisserant
parents:
314
diff
changeset
|
299 |
1, /*dcf_entries_count*/\ |
349 | 300 |
0, /* dcf_request*/\ |
284 | 301 |
\ |
302 |
/* EMCY */\ |
|
303 |
Error_free, /* error_state */\ |
|
304 |
sizeof(NODE_PREFIX ## _obj1003) / sizeof(NODE_PREFIX ## _obj1003[0]), /* error_history_size */\ |
|
305 |
& NODE_PREFIX ## _highestSubIndex_obj1003, /* error_number */\ |
|
306 |
& NODE_PREFIX ## _obj1003[0], /* error_first_element */\ |
|
307 |
& 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
|
308 |
& NODE_PREFIX ## _obj1014, /* error_cobid */\ |
284 | 309 |
/* error_data: structure s_errors */\ |
310 |
{\ |
|
311 |
REPEAT_EMCY_MAX_ERRORS_TIMES(ERROR_DATA_INITIALIZER)\ |
|
312 |
},\ |
|
343 | 313 |
_post_emcy, /* post_emcy */\ |
314 |
/* LSS */\ |
|
315 |
lss_Initializer\ |
|
0 | 316 |
} |
317 |
||
251 | 318 |
#ifdef __cplusplus |
319 |
}; |
|
320 |
#endif |
|
321 |
||
71 | 322 |
#endif /* __data_h__ */ |
0 | 323 |
|
324 |