author | mwildbolz |
Mon, 01 Oct 2012 17:09:55 +0200 | |
changeset 752 | 48a0ebbefa74 |
parent 750 | bfb63ff7106e |
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; |
670
e37511baf56b
New feature : event timers allowed for RxPDOs (subidx 5 in RxPDO com paramaters)
Mongo
parents:
669
diff
changeset
|
61 |
TIMER_HANDLE *RxPDO_EventTimers; |
e37511baf56b
New feature : event timers allowed for RxPDOs (subidx 5 in RxPDO com paramaters)
Mongo
parents:
669
diff
changeset
|
62 |
void (*RxPDO_EventTimers_Handler)(CO_Data*, UNS32); |
475 | 63 |
const quick_index *firstIndex; |
64 |
const quick_index *lastIndex; |
|
65 |
const UNS16 *ObjdictSize; |
|
0 | 66 |
const UNS8 *iam_a_slave; |
67 |
valueRangeTest_t valueRangeTest; |
|
68 |
||
71 | 69 |
/* SDO */ |
694
8dd1e58b3815
There is no English word "transfert". Fix all the typos.
JaFojtik
parents:
670
diff
changeset
|
70 |
s_transfer transfers[SDO_MAX_SIMULTANEOUS_TRANSFERS]; |
71 | 71 |
/* s_sdo_parameter *sdo_parameters; */ |
0 | 72 |
|
71 | 73 |
/* State machine */ |
0 | 74 |
e_nodeState nodeState; |
75 |
s_state_communication CurrentCommunicationState; |
|
76 |
initialisation_t initialisation; |
|
77 |
preOperational_t preOperational; |
|
78 |
operational_t operational; |
|
79 |
stopped_t stopped; |
|
475 | 80 |
void (*NMT_Slave_Node_Reset_Callback)(CO_Data*); |
81 |
void (*NMT_Slave_Communications_Reset_Callback)(CO_Data*); |
|
82 |
||
71 | 83 |
/* NMT-heartbeat */ |
0 | 84 |
UNS8 *ConsumerHeartbeatCount; |
85 |
UNS32 *ConsumerHeartbeatEntries; |
|
86 |
TIMER_HANDLE *ConsumerHeartBeatTimers; |
|
87 |
UNS16 *ProducerHeartBeatTime; |
|
88 |
TIMER_HANDLE ProducerHeartBeatTimer; |
|
89 |
heartbeatError_t heartbeatError; |
|
90 |
e_nodeState NMTable[NMT_MAX_NODE_ID]; |
|
91 |
||
750 | 92 |
/* NMT-nodeguarding */ |
93 |
TIMER_HANDLE GuardTimeTimer; |
|
94 |
TIMER_HANDLE LifeTimeTimer; |
|
95 |
nodeguardError_t nodeguardError; |
|
96 |
UNS16 *GuardTime; |
|
97 |
UNS8 *LifeTimeFactor; |
|
98 |
UNS8 nodeGuardStatus[NMT_MAX_NODE_ID]; |
|
99 |
||
71 | 100 |
/* SYNC */ |
0 | 101 |
TIMER_HANDLE syncTimer; |
102 |
UNS32 *COB_ID_Sync; |
|
103 |
UNS32 *Sync_Cycle_Period; |
|
71 | 104 |
/*UNS32 *Sync_window_length;;*/ |
0 | 105 |
post_sync_t post_sync; |
106 |
post_TPDO_t post_TPDO; |
|
343 | 107 |
post_SlaveBootup_t post_SlaveBootup; |
664
a03f0aa7d219
CHANGE: SDO block mode added, without CRC support
fbeaulier
parents:
636
diff
changeset
|
108 |
post_SlaveStateChange_t post_SlaveStateChange; |
0 | 109 |
|
71 | 110 |
/* General */ |
0 | 111 |
UNS8 toggle; |
405
487b37176423
Changed CAN_HANDLE into CAN_PORT in data.h and lss.h. More semanticaly correct.
etisserant
parents:
384
diff
changeset
|
112 |
CAN_PORT canHandle; |
0 | 113 |
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
|
114 |
storeODSubIndex_t storeODSubIndex; |
178 | 115 |
|
116 |
/* DCF concise */ |
|
322 | 117 |
const indextable* dcf_odentry; |
204
44ce74232ccb
Some fixes for visual studio C compiler compatiblity.
etisserant
parents:
178
diff
changeset
|
118 |
UNS8* dcf_cursor; |
320
f82e758840bd
Some fixes suggested by Luis Jim?nez, plus some minor enhancements in DCF.
etisserant
parents:
314
diff
changeset
|
119 |
UNS32 dcf_entries_count; |
669
50da44ebaf00
Configuration manager with DCF in object 0x1F22 rewritten almost from scratch.
Mongo
parents:
664
diff
changeset
|
120 |
UNS8 dcf_status; |
50da44ebaf00
Configuration manager with DCF in object 0x1F22 rewritten almost from scratch.
Mongo
parents:
664
diff
changeset
|
121 |
UNS32 dcf_size; |
50da44ebaf00
Configuration manager with DCF in object 0x1F22 rewritten almost from scratch.
Mongo
parents:
664
diff
changeset
|
122 |
UNS8* dcf_data; |
178 | 123 |
|
284 | 124 |
/* EMCY */ |
125 |
e_errorState error_state; |
|
126 |
UNS8 error_history_size; |
|
127 |
UNS8* error_number; |
|
128 |
UNS32* error_first_element; |
|
129 |
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
|
130 |
UNS32* error_cobid; |
284 | 131 |
s_errors error_data[EMCY_MAX_ERRORS]; |
132 |
post_emcy_t post_emcy; |
|
133 |
||
343 | 134 |
#ifdef CO_ENABLE_LSS |
135 |
/* LSS */ |
|
136 |
lss_transfer_t lss_transfer; |
|
137 |
lss_StoreConfiguration_t lss_StoreConfiguration; |
|
138 |
#endif |
|
0 | 139 |
}; |
140 |
||
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
|
141 |
#define NMTable_Initializer Unknown_state, |
750 | 142 |
#define nodeGuardStatus_Initializer 0x00, |
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
|
143 |
|
636
033fe6f1ec3c
ADDED: - dynamic memory allocation for sdo transfer using malloc and free
Christian Taedcke
parents:
635
diff
changeset
|
144 |
#ifdef SDO_DYNAMIC_BUFFER_ALLOCATION |
033fe6f1ec3c
ADDED: - dynamic memory allocation for sdo transfer using malloc and free
Christian Taedcke
parents:
635
diff
changeset
|
145 |
#define s_transfer_Initializer {\ |
750 | 146 |
0, /* CliServ{REPEAT_NMT_MAX_NODE_ID_TIMES(NMTable_Initializer)},Nbr */\ |
636
033fe6f1ec3c
ADDED: - dynamic memory allocation for sdo transfer using malloc and free
Christian Taedcke
parents:
635
diff
changeset
|
147 |
0, /* wohami */\ |
033fe6f1ec3c
ADDED: - dynamic memory allocation for sdo transfer using malloc and free
Christian Taedcke
parents:
635
diff
changeset
|
148 |
SDO_RESET, /* state */\ |
033fe6f1ec3c
ADDED: - dynamic memory allocation for sdo transfer using malloc and free
Christian Taedcke
parents:
635
diff
changeset
|
149 |
0, /* toggle */\ |
033fe6f1ec3c
ADDED: - dynamic memory allocation for sdo transfer using malloc and free
Christian Taedcke
parents:
635
diff
changeset
|
150 |
0, /* abortCode */\ |
033fe6f1ec3c
ADDED: - dynamic memory allocation for sdo transfer using malloc and free
Christian Taedcke
parents:
635
diff
changeset
|
151 |
0, /* index */\ |
033fe6f1ec3c
ADDED: - dynamic memory allocation for sdo transfer using malloc and free
Christian Taedcke
parents:
635
diff
changeset
|
152 |
0, /* subIndex */\ |
033fe6f1ec3c
ADDED: - dynamic memory allocation for sdo transfer using malloc and free
Christian Taedcke
parents:
635
diff
changeset
|
153 |
0, /* count */\ |
033fe6f1ec3c
ADDED: - dynamic memory allocation for sdo transfer using malloc and free
Christian Taedcke
parents:
635
diff
changeset
|
154 |
0, /* offset */\ |
033fe6f1ec3c
ADDED: - dynamic memory allocation for sdo transfer using malloc and free
Christian Taedcke
parents:
635
diff
changeset
|
155 |
{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
|
156 |
NULL, /* dynamicData */ \ |
033fe6f1ec3c
ADDED: - dynamic memory allocation for sdo transfer using malloc and free
Christian Taedcke
parents:
635
diff
changeset
|
157 |
0, /* dynamicDataSize */ \ |
664
a03f0aa7d219
CHANGE: SDO block mode added, without CRC support
fbeaulier
parents:
636
diff
changeset
|
158 |
0, /* peerCRCsupport */\ |
a03f0aa7d219
CHANGE: SDO block mode added, without CRC support
fbeaulier
parents:
636
diff
changeset
|
159 |
0, /* blksize */\ |
a03f0aa7d219
CHANGE: SDO block mode added, without CRC support
fbeaulier
parents:
636
diff
changeset
|
160 |
0, /* ackseq */\ |
a03f0aa7d219
CHANGE: SDO block mode added, without CRC support
fbeaulier
parents:
636
diff
changeset
|
161 |
0, /* objsize */\ |
a03f0aa7d219
CHANGE: SDO block mode added, without CRC support
fbeaulier
parents:
636
diff
changeset
|
162 |
0, /* lastblockoffset */\ |
a03f0aa7d219
CHANGE: SDO block mode added, without CRC support
fbeaulier
parents:
636
diff
changeset
|
163 |
0, /* seqno */\ |
a03f0aa7d219
CHANGE: SDO block mode added, without CRC support
fbeaulier
parents:
636
diff
changeset
|
164 |
0, /* endfield */\ |
a03f0aa7d219
CHANGE: SDO block mode added, without CRC support
fbeaulier
parents:
636
diff
changeset
|
165 |
RXSTEP_INIT,/* rxstep */\ |
a03f0aa7d219
CHANGE: SDO block mode added, without CRC support
fbeaulier
parents:
636
diff
changeset
|
166 |
{0}, /* tmpData */\ |
636
033fe6f1ec3c
ADDED: - dynamic memory allocation for sdo transfer using malloc and free
Christian Taedcke
parents:
635
diff
changeset
|
167 |
0, /* dataType */\ |
033fe6f1ec3c
ADDED: - dynamic memory allocation for sdo transfer using malloc and free
Christian Taedcke
parents:
635
diff
changeset
|
168 |
-1, /* timer */\ |
033fe6f1ec3c
ADDED: - dynamic memory allocation for sdo transfer using malloc and free
Christian Taedcke
parents:
635
diff
changeset
|
169 |
NULL /* Callback */\ |
033fe6f1ec3c
ADDED: - dynamic memory allocation for sdo transfer using malloc and free
Christian Taedcke
parents:
635
diff
changeset
|
170 |
}, |
033fe6f1ec3c
ADDED: - dynamic memory allocation for sdo transfer using malloc and free
Christian Taedcke
parents:
635
diff
changeset
|
171 |
#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
|
172 |
#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
|
173 |
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
|
174 |
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
|
175 |
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
|
176 |
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
|
177 |
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
|
178 |
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
|
179 |
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
|
180 |
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
|
181 |
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
|
182 |
{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
|
183 |
0, /* peerCRCsupport */\ |
a03f0aa7d219
CHANGE: SDO block mode added, without CRC support
fbeaulier
parents:
636
diff
changeset
|
184 |
0, /* blksize */\ |
a03f0aa7d219
CHANGE: SDO block mode added, without CRC support
fbeaulier
parents:
636
diff
changeset
|
185 |
0, /* ackseq */\ |
a03f0aa7d219
CHANGE: SDO block mode added, without CRC support
fbeaulier
parents:
636
diff
changeset
|
186 |
0, /* objsize */\ |
a03f0aa7d219
CHANGE: SDO block mode added, without CRC support
fbeaulier
parents:
636
diff
changeset
|
187 |
0, /* lastblockoffset */\ |
a03f0aa7d219
CHANGE: SDO block mode added, without CRC support
fbeaulier
parents:
636
diff
changeset
|
188 |
0, /* seqno */\ |
a03f0aa7d219
CHANGE: SDO block mode added, without CRC support
fbeaulier
parents:
636
diff
changeset
|
189 |
0, /* endfield */\ |
a03f0aa7d219
CHANGE: SDO block mode added, without CRC support
fbeaulier
parents:
636
diff
changeset
|
190 |
RXSTEP_INIT,/* rxstep */\ |
a03f0aa7d219
CHANGE: SDO block mode added, without CRC support
fbeaulier
parents:
636
diff
changeset
|
191 |
{0}, /* tmpData */\ |
a03f0aa7d219
CHANGE: SDO block mode added, without CRC support
fbeaulier
parents:
636
diff
changeset
|
192 |
0, /* */\ |
a03f0aa7d219
CHANGE: SDO block mode added, without CRC support
fbeaulier
parents:
636
diff
changeset
|
193 |
-1, /* */\ |
a03f0aa7d219
CHANGE: SDO block mode added, without CRC support
fbeaulier
parents:
636
diff
changeset
|
194 |
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
|
195 |
}, |
636
033fe6f1ec3c
ADDED: - dynamic memory allocation for sdo transfer using malloc and free
Christian Taedcke
parents:
635
diff
changeset
|
196 |
#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
|
197 |
|
284 | 198 |
#define ERROR_DATA_INITIALIZER \ |
199 |
{\ |
|
200 |
0, /* errCode */\ |
|
201 |
0, /* errRegMask */\ |
|
202 |
0 /* active */\ |
|
203 |
}, |
|
343 | 204 |
|
205 |
#ifdef CO_ENABLE_LSS |
|
381 | 206 |
|
207 |
#ifdef CO_ENABLE_LSS_FS |
|
208 |
#define lss_fs_Initializer \ |
|
209 |
,0, /* IDNumber */\ |
|
210 |
128, /* BitChecked */\ |
|
211 |
0, /* LSSSub */\ |
|
212 |
0, /* LSSNext */\ |
|
213 |
0, /* LSSPos */\ |
|
214 |
LSS_FS_RESET, /* FastScan_SM */\ |
|
517 | 215 |
-1, /* timerFS */\ |
216 |
{{0,0,0,0},{0,0,0,0}} /* lss_fs_transfer */ |
|
381 | 217 |
#else |
218 |
#define lss_fs_Initializer |
|
219 |
#endif |
|
220 |
||
343 | 221 |
#define lss_Initializer {\ |
222 |
LSS_RESET, /* state */\ |
|
223 |
0, /* command */\ |
|
224 |
LSS_WAITING_MODE, /* mode */\ |
|
225 |
0, /* dat1 */\ |
|
226 |
0, /* dat2 */\ |
|
227 |
0, /* NodeID */\ |
|
228 |
0, /* addr_sel_match */\ |
|
229 |
0, /* addr_ident_match */\ |
|
230 |
"none", /* BaudRate */\ |
|
231 |
0, /* SwitchDelay */\ |
|
232 |
SDELAY_OFF, /* SwitchDelayState */\ |
|
381 | 233 |
NULL, /* canHandle_t */\ |
234 |
-1, /* TimerMSG */\ |
|
235 |
-1, /* TimerSDELAY */\ |
|
343 | 236 |
NULL, /* Callback */\ |
381 | 237 |
0 /* LSSanswer */\ |
238 |
lss_fs_Initializer /*FastScan service initialization */\ |
|
343 | 239 |
},\ |
384 | 240 |
NULL /* _lss_StoreConfiguration*/ |
343 | 241 |
#else |
242 |
#define lss_Initializer |
|
243 |
#endif |
|
244 |
||
284 | 245 |
|
71 | 246 |
/* A macro to initialize the data in client app.*/ |
78 | 247 |
/* CO_Data structure */ |
0 | 248 |
#define CANOPEN_NODE_DATA_INITIALIZER(NODE_PREFIX) {\ |
249 |
/* Object dictionary*/\ |
|
78 | 250 |
& NODE_PREFIX ## _bDeviceNodeId, /* bDeviceNodeId */\ |
251 |
NODE_PREFIX ## _objdict, /* objdict */\ |
|
235
f812bf6b7237
Preliminary implementation of Event Timer and Inhibit Timer driven TPDO
etisserant
parents:
204
diff
changeset
|
252 |
NODE_PREFIX ## _PDO_status, /* PDO_status */\ |
670
e37511baf56b
New feature : event timers allowed for RxPDOs (subidx 5 in RxPDO com paramaters)
Mongo
parents:
669
diff
changeset
|
253 |
NULL, /* RxPDO_EventTimers */\ |
e37511baf56b
New feature : event timers allowed for RxPDOs (subidx 5 in RxPDO com paramaters)
Mongo
parents:
669
diff
changeset
|
254 |
_RxPDO_EventTimers_Handler, /* RxPDO_EventTimers_Handler */\ |
78 | 255 |
& NODE_PREFIX ## _firstIndex, /* firstIndex */\ |
256 |
& NODE_PREFIX ## _lastIndex, /* lastIndex */\ |
|
257 |
& NODE_PREFIX ## _ObjdictSize, /* ObjdictSize */\ |
|
258 |
& NODE_PREFIX ## _iam_a_slave, /* iam_a_slave */\ |
|
259 |
NODE_PREFIX ## _valueRangeTest, /* valueRangeTest */\ |
|
0 | 260 |
\ |
78 | 261 |
/* 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
|
262 |
{\ |
694
8dd1e58b3815
There is no English word "transfert". Fix all the typos.
JaFojtik
parents:
670
diff
changeset
|
263 |
REPEAT_SDO_MAX_SIMULTANEOUS_TRANSFERS_TIMES(s_transfer_Initializer)\ |
78 | 264 |
},\ |
0 | 265 |
\ |
78 | 266 |
/* State machine*/\ |
267 |
Unknown_state, /* nodeState */\ |
|
268 |
/* structure s_state_communication */\ |
|
269 |
{\ |
|
270 |
0, /* csBoot_Up */\ |
|
271 |
0, /* csSDO */\ |
|
272 |
0, /* csEmergency */\ |
|
273 |
0, /* csSYNC */\ |
|
274 |
0, /* csHeartbeat */\ |
|
381 | 275 |
0, /* csPDO */\ |
276 |
0 /* csLSS */\ |
|
78 | 277 |
},\ |
167 | 278 |
_initialisation, /* initialisation */\ |
279 |
_preOperational, /* preOperational */\ |
|
280 |
_operational, /* operational */\ |
|
281 |
_stopped, /* stopped */\ |
|
475 | 282 |
NULL, /* NMT node reset callback */\ |
283 |
NULL, /* NMT communications reset callback */\ |
|
0 | 284 |
\ |
285 |
/* NMT-heartbeat */\ |
|
78 | 286 |
& NODE_PREFIX ## _highestSubIndex_obj1016, /* ConsumerHeartbeatCount */\ |
287 |
NODE_PREFIX ## _obj1016, /* ConsumerHeartbeatEntries */\ |
|
288 |
NODE_PREFIX ## _heartBeatTimers, /* ConsumerHeartBeatTimers */\ |
|
289 |
& NODE_PREFIX ## _obj1017, /* ProducerHeartBeatTime */\ |
|
290 |
TIMER_NONE, /* ProducerHeartBeatTimer */\ |
|
167 | 291 |
_heartbeatError, /* heartbeatError */\ |
78 | 292 |
\ |
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
|
293 |
{REPEAT_NMT_MAX_NODE_ID_TIMES(NMTable_Initializer)},\ |
78 | 294 |
/* is well initialized at "Unknown_state". Is it ok ? (FD)*/\ |
0 | 295 |
\ |
750 | 296 |
/* NMT-nodeguarding */\ |
297 |
TIMER_NONE, /* GuardTimeTimer */\ |
|
298 |
TIMER_NONE, /* LifeTimeTimer */\ |
|
299 |
_nodeguardError, /* nodeguardError */\ |
|
300 |
& NODE_PREFIX ## _obj100C, /* GuardTime */\ |
|
301 |
& NODE_PREFIX ## _obj100D, /* LifeTimeFactor */\ |
|
302 |
{REPEAT_NMT_MAX_NODE_ID_TIMES(nodeGuardStatus_Initializer)},\ |
|
303 |
\ |
|
0 | 304 |
/* SYNC */\ |
78 | 305 |
TIMER_NONE, /* syncTimer */\ |
306 |
& NODE_PREFIX ## _obj1005, /* COB_ID_Sync */\ |
|
307 |
& NODE_PREFIX ## _obj1006, /* Sync_Cycle_Period */\ |
|
308 |
/*& NODE_PREFIX ## _obj1007, */ /* Sync_window_length */\ |
|
167 | 309 |
_post_sync, /* post_sync */\ |
310 |
_post_TPDO, /* post_TPDO */\ |
|
343 | 311 |
_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
|
312 |
_post_SlaveStateChange, /* post_SlaveStateChange */\ |
0 | 313 |
\ |
314 |
/* General */\ |
|
78 | 315 |
0, /* toggle */\ |
167 | 316 |
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
|
317 |
NODE_PREFIX ## _scanIndexOD, /* scanIndexOD */\ |
178 | 318 |
_storeODSubIndex, /* storeODSubIndex */\ |
320
f82e758840bd
Some fixes suggested by Luis Jim?nez, plus some minor enhancements in DCF.
etisserant
parents:
314
diff
changeset
|
319 |
/* DCF concise */\ |
f82e758840bd
Some fixes suggested by Luis Jim?nez, plus some minor enhancements in DCF.
etisserant
parents:
314
diff
changeset
|
320 |
NULL, /*dcf_odentry*/\ |
178 | 321 |
NULL, /*dcf_cursor*/\ |
320
f82e758840bd
Some fixes suggested by Luis Jim?nez, plus some minor enhancements in DCF.
etisserant
parents:
314
diff
changeset
|
322 |
1, /*dcf_entries_count*/\ |
669
50da44ebaf00
Configuration manager with DCF in object 0x1F22 rewritten almost from scratch.
Mongo
parents:
664
diff
changeset
|
323 |
0, /* dcf_status*/\ |
50da44ebaf00
Configuration manager with DCF in object 0x1F22 rewritten almost from scratch.
Mongo
parents:
664
diff
changeset
|
324 |
0, /* dcf_size */\ |
50da44ebaf00
Configuration manager with DCF in object 0x1F22 rewritten almost from scratch.
Mongo
parents:
664
diff
changeset
|
325 |
NULL, /* dcf_data */\ |
284 | 326 |
\ |
327 |
/* EMCY */\ |
|
328 |
Error_free, /* error_state */\ |
|
329 |
sizeof(NODE_PREFIX ## _obj1003) / sizeof(NODE_PREFIX ## _obj1003[0]), /* error_history_size */\ |
|
330 |
& NODE_PREFIX ## _highestSubIndex_obj1003, /* error_number */\ |
|
331 |
& NODE_PREFIX ## _obj1003[0], /* error_first_element */\ |
|
332 |
& 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
|
333 |
& NODE_PREFIX ## _obj1014, /* error_cobid */\ |
284 | 334 |
/* error_data: structure s_errors */\ |
335 |
{\ |
|
336 |
REPEAT_EMCY_MAX_ERRORS_TIMES(ERROR_DATA_INITIALIZER)\ |
|
337 |
},\ |
|
343 | 338 |
_post_emcy, /* post_emcy */\ |
339 |
/* LSS */\ |
|
340 |
lss_Initializer\ |
|
0 | 341 |
} |
342 |
||
251 | 343 |
#ifdef __cplusplus |
344 |
}; |
|
345 |
#endif |
|
346 |
||
71 | 347 |
#endif /* __data_h__ */ |
0 | 348 |
|
349 |