include/data.h
author luis
Wed, 26 Sep 2007 16:02:00 +0200
changeset 284 24bf3d692993
parent 251 cab66ef3e68e
child 314 68e83c3ffbb5
permissions -rw-r--r--
Implemented EMCY objects.
Added emcy.c and emcy.h
Modified data.h for necessary variables.
Added some EMCY message sendings in TestMasterSlave example.
Modified configure script to define EMCY_MAX_ERRORS.
Modified python scripts to make 1003h object always available (with a callback).
0
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
     1
/*
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
     2
This file is part of CanFestival, a library implementing CanOpen Stack. 
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
     3
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
     4
Copyright (C): Edouard TISSERANT and Francis DUPIN
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
     5
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
     6
See COPYING file for copyrights details.
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
     7
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
     8
This library is free software; you can redistribute it and/or
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
     9
modify it under the terms of the GNU Lesser General Public
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    10
License as published by the Free Software Foundation; either
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    11
version 2.1 of the License, or (at your option) any later version.
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    12
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    13
This library is distributed in the hope that it will be useful,
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    14
but WITHOUT ANY WARRANTY; without even the implied warranty of
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    15
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    16
Lesser General Public License for more details.
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    17
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    18
You should have received a copy of the GNU Lesser General Public
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    19
License along with this library; if not, write to the Free Software
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    20
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    21
*/
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    22
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    23
#ifndef __data_h__
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    24
#define __data_h__
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    25
251
cab66ef3e68e Some fixes for C++
etisserant
parents: 235
diff changeset
    26
#ifdef __cplusplus
cab66ef3e68e Some fixes for C++
etisserant
parents: 235
diff changeset
    27
extern "C" {
cab66ef3e68e Some fixes for C++
etisserant
parents: 235
diff changeset
    28
#endif
cab66ef3e68e Some fixes for C++
etisserant
parents: 235
diff changeset
    29
71
95cd3376cc9f compilator compatitibility
frdupin
parents: 32
diff changeset
    30
/* declaration of CO_Data type let us include all necessary headers
95cd3376cc9f compilator compatitibility
frdupin
parents: 32
diff changeset
    31
 struct struct_CO_Data can then be defined later
95cd3376cc9f compilator compatitibility
frdupin
parents: 32
diff changeset
    32
 */
0
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    33
typedef struct struct_CO_Data CO_Data;
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    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
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    36
#include "def.h"
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    37
#include "can.h"
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    38
#include "objdictdef.h"
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    39
#include "objacces.h"
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    40
#include "sdo.h"
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    41
#include "pdo.h"
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    42
#include "states.h"
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    43
#include "lifegrd.h"
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    44
#include "sync.h"
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    45
#include "nmtMaster.h"
284
24bf3d692993 Implemented EMCY objects.
luis
parents: 251
diff changeset
    46
#include "emcy.h"
0
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    47
71
95cd3376cc9f compilator compatitibility
frdupin
parents: 32
diff changeset
    48
/* This structurs contains all necessary information for a CanOpen node */
0
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    49
struct struct_CO_Data {
71
95cd3376cc9f compilator compatitibility
frdupin
parents: 32
diff changeset
    50
	/* Object dictionary */
0
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    51
	UNS8 *bDeviceNodeId;
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    52
	const indextable *objdict;
235
f812bf6b7237 Preliminary implementation of Event Timer and Inhibit Timer driven TPDO
etisserant
parents: 204
diff changeset
    53
	s_PDO_status *PDO_status;
0
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    54
	quick_index *firstIndex;
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    55
	quick_index *lastIndex;
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    56
	UNS16 *ObjdictSize;
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    57
	const UNS8 *iam_a_slave;
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    58
	valueRangeTest_t valueRangeTest;
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    59
	
71
95cd3376cc9f compilator compatitibility
frdupin
parents: 32
diff changeset
    60
	/* SDO */
0
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    61
	s_transfer transfers[SDO_MAX_SIMULTANEOUS_TRANSFERTS];
71
95cd3376cc9f compilator compatitibility
frdupin
parents: 32
diff changeset
    62
	/* s_sdo_parameter *sdo_parameters; */
0
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    63
71
95cd3376cc9f compilator compatitibility
frdupin
parents: 32
diff changeset
    64
	/* State machine */
0
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    65
	e_nodeState nodeState;
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    66
	s_state_communication CurrentCommunicationState;
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    67
	initialisation_t initialisation;
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    68
	preOperational_t preOperational;
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    69
	operational_t operational;
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    70
	stopped_t stopped;
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    71
71
95cd3376cc9f compilator compatitibility
frdupin
parents: 32
diff changeset
    72
	/* NMT-heartbeat */
0
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    73
	UNS8 *ConsumerHeartbeatCount;
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    74
	UNS32 *ConsumerHeartbeatEntries;
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    75
	TIMER_HANDLE *ConsumerHeartBeatTimers;
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    76
	UNS16 *ProducerHeartBeatTime;
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    77
	TIMER_HANDLE ProducerHeartBeatTimer;
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    78
	heartbeatError_t heartbeatError;
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    79
	e_nodeState NMTable[NMT_MAX_NODE_ID]; 
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    80
71
95cd3376cc9f compilator compatitibility
frdupin
parents: 32
diff changeset
    81
	/* SYNC */
0
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    82
	TIMER_HANDLE syncTimer;
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    83
	UNS32 *COB_ID_Sync;
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    84
	UNS32 *Sync_Cycle_Period;
71
95cd3376cc9f compilator compatitibility
frdupin
parents: 32
diff changeset
    85
	/*UNS32 *Sync_window_length;;*/
0
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    86
	post_sync_t post_sync;
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    87
	post_TPDO_t post_TPDO;
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    88
	
71
95cd3376cc9f compilator compatitibility
frdupin
parents: 32
diff changeset
    89
	/* General */
0
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    90
	UNS8 toggle;
149
fe50ada8020b Changes in the API:
etisserant
parents: 145
diff changeset
    91
	CAN_HANDLE canHandle;	
0
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    92
	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
    93
	storeODSubIndex_t storeODSubIndex; 
178
01d81faa3350 Add concise DCF support
greg
parents: 172
diff changeset
    94
	
01d81faa3350 Add concise DCF support
greg
parents: 172
diff changeset
    95
	/* DCF concise */
204
44ce74232ccb Some fixes for visual studio C compiler compatiblity.
etisserant
parents: 178
diff changeset
    96
	UNS8* dcf_cursor;
178
01d81faa3350 Add concise DCF support
greg
parents: 172
diff changeset
    97
	UNS32 dcf_count_targets;
01d81faa3350 Add concise DCF support
greg
parents: 172
diff changeset
    98
	
284
24bf3d692993 Implemented EMCY objects.
luis
parents: 251
diff changeset
    99
	/* EMCY */
24bf3d692993 Implemented EMCY objects.
luis
parents: 251
diff changeset
   100
	e_errorState error_state;
24bf3d692993 Implemented EMCY objects.
luis
parents: 251
diff changeset
   101
	UNS8 error_history_size;
24bf3d692993 Implemented EMCY objects.
luis
parents: 251
diff changeset
   102
	UNS8* error_number;
24bf3d692993 Implemented EMCY objects.
luis
parents: 251
diff changeset
   103
	UNS32* error_first_element;
24bf3d692993 Implemented EMCY objects.
luis
parents: 251
diff changeset
   104
	UNS8* error_register;
24bf3d692993 Implemented EMCY objects.
luis
parents: 251
diff changeset
   105
	s_errors error_data[EMCY_MAX_ERRORS];
24bf3d692993 Implemented EMCY objects.
luis
parents: 251
diff changeset
   106
	post_emcy_t post_emcy;
24bf3d692993 Implemented EMCY objects.
luis
parents: 251
diff changeset
   107
	
0
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   108
};
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   109
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
   110
#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
   111
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
   112
#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
   113
		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
   114
		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
   115
		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
   116
		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
   117
		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
   118
		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
   119
		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
   120
		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
   121
		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
   122
		{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
   123
		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
   124
		-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
   125
		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
   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
284
24bf3d692993 Implemented EMCY objects.
luis
parents: 251
diff changeset
   128
#define ERROR_DATA_INITIALIZER \
24bf3d692993 Implemented EMCY objects.
luis
parents: 251
diff changeset
   129
	{\
24bf3d692993 Implemented EMCY objects.
luis
parents: 251
diff changeset
   130
	0, /* errCode */\
24bf3d692993 Implemented EMCY objects.
luis
parents: 251
diff changeset
   131
	0, /* errRegMask */\
24bf3d692993 Implemented EMCY objects.
luis
parents: 251
diff changeset
   132
	0 /* active */\
24bf3d692993 Implemented EMCY objects.
luis
parents: 251
diff changeset
   133
	},
24bf3d692993 Implemented EMCY objects.
luis
parents: 251
diff changeset
   134
71
95cd3376cc9f compilator compatitibility
frdupin
parents: 32
diff changeset
   135
/* A macro to initialize the data in client app.*/
78
ac05410cc1b8 compilers compatibility
frdupin
parents: 71
diff changeset
   136
/* CO_Data structure */
0
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   137
#define CANOPEN_NODE_DATA_INITIALIZER(NODE_PREFIX) {\
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   138
	/* Object dictionary*/\
78
ac05410cc1b8 compilers compatibility
frdupin
parents: 71
diff changeset
   139
	& NODE_PREFIX ## _bDeviceNodeId,     /* bDeviceNodeId */\
ac05410cc1b8 compilers compatibility
frdupin
parents: 71
diff changeset
   140
	NODE_PREFIX ## _objdict,             /* objdict  */\
235
f812bf6b7237 Preliminary implementation of Event Timer and Inhibit Timer driven TPDO
etisserant
parents: 204
diff changeset
   141
	NODE_PREFIX ## _PDO_status,          /* PDO_status */\
78
ac05410cc1b8 compilers compatibility
frdupin
parents: 71
diff changeset
   142
	& NODE_PREFIX ## _firstIndex,        /* firstIndex */\
ac05410cc1b8 compilers compatibility
frdupin
parents: 71
diff changeset
   143
	& NODE_PREFIX ## _lastIndex,         /* lastIndex */\
ac05410cc1b8 compilers compatibility
frdupin
parents: 71
diff changeset
   144
	& NODE_PREFIX ## _ObjdictSize,       /* ObjdictSize */\
ac05410cc1b8 compilers compatibility
frdupin
parents: 71
diff changeset
   145
	& NODE_PREFIX ## _iam_a_slave,       /* iam_a_slave */\
ac05410cc1b8 compilers compatibility
frdupin
parents: 71
diff changeset
   146
	NODE_PREFIX ## _valueRangeTest,      /* valueRangeTest */\
0
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   147
	\
78
ac05410cc1b8 compilers compatibility
frdupin
parents: 71
diff changeset
   148
	/* 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
   149
	{\
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
   150
          REPEAT_SDO_MAX_SIMULTANEOUS_TRANSFERTS_TIMES(s_transfer_Initializer)\
78
ac05410cc1b8 compilers compatibility
frdupin
parents: 71
diff changeset
   151
	},\
0
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   152
	\
78
ac05410cc1b8 compilers compatibility
frdupin
parents: 71
diff changeset
   153
	/* State machine*/\
ac05410cc1b8 compilers compatibility
frdupin
parents: 71
diff changeset
   154
	Unknown_state,      /* nodeState */\
ac05410cc1b8 compilers compatibility
frdupin
parents: 71
diff changeset
   155
	/* structure s_state_communication */\
ac05410cc1b8 compilers compatibility
frdupin
parents: 71
diff changeset
   156
	{\
ac05410cc1b8 compilers compatibility
frdupin
parents: 71
diff changeset
   157
		0,          /* csBoot_Up */\
ac05410cc1b8 compilers compatibility
frdupin
parents: 71
diff changeset
   158
		0,          /* csSDO */\
ac05410cc1b8 compilers compatibility
frdupin
parents: 71
diff changeset
   159
		0,          /* csEmergency */\
ac05410cc1b8 compilers compatibility
frdupin
parents: 71
diff changeset
   160
		0,          /* csSYNC */\
ac05410cc1b8 compilers compatibility
frdupin
parents: 71
diff changeset
   161
		0,          /* csHeartbeat */\
ac05410cc1b8 compilers compatibility
frdupin
parents: 71
diff changeset
   162
		0           /* csPDO */\
ac05410cc1b8 compilers compatibility
frdupin
parents: 71
diff changeset
   163
	},\
167
b2f8b91d89b5 Removed compilation warnings with some GCC.
etisserant
parents: 161
diff changeset
   164
	_initialisation,     /* initialisation */\
b2f8b91d89b5 Removed compilation warnings with some GCC.
etisserant
parents: 161
diff changeset
   165
	_preOperational,     /* preOperational */\
b2f8b91d89b5 Removed compilation warnings with some GCC.
etisserant
parents: 161
diff changeset
   166
	_operational,        /* operational */\
b2f8b91d89b5 Removed compilation warnings with some GCC.
etisserant
parents: 161
diff changeset
   167
	_stopped,            /* stopped */\
0
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   168
	\
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   169
	/* NMT-heartbeat */\
78
ac05410cc1b8 compilers compatibility
frdupin
parents: 71
diff changeset
   170
	& NODE_PREFIX ## _highestSubIndex_obj1016, /* ConsumerHeartbeatCount */\
ac05410cc1b8 compilers compatibility
frdupin
parents: 71
diff changeset
   171
	NODE_PREFIX ## _obj1016,                   /* ConsumerHeartbeatEntries */\
ac05410cc1b8 compilers compatibility
frdupin
parents: 71
diff changeset
   172
	NODE_PREFIX ## _heartBeatTimers,           /* ConsumerHeartBeatTimers  */\
ac05410cc1b8 compilers compatibility
frdupin
parents: 71
diff changeset
   173
	& NODE_PREFIX ## _obj1017,                 /* ProducerHeartBeatTime */\
ac05410cc1b8 compilers compatibility
frdupin
parents: 71
diff changeset
   174
	TIMER_NONE,                                /* ProducerHeartBeatTimer */\
167
b2f8b91d89b5 Removed compilation warnings with some GCC.
etisserant
parents: 161
diff changeset
   175
	_heartbeatError,           /* heartbeatError */\
78
ac05410cc1b8 compilers compatibility
frdupin
parents: 71
diff changeset
   176
	\
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
   177
	{REPEAT_NMT_MAX_NODE_ID_TIMES(NMTable_Initializer)},\
78
ac05410cc1b8 compilers compatibility
frdupin
parents: 71
diff changeset
   178
                                                   /* is  well initialized at "Unknown_state". Is it ok ? (FD)*/\
0
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   179
	\
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   180
	/* SYNC */\
78
ac05410cc1b8 compilers compatibility
frdupin
parents: 71
diff changeset
   181
	TIMER_NONE,                                /* syncTimer */\
ac05410cc1b8 compilers compatibility
frdupin
parents: 71
diff changeset
   182
	& NODE_PREFIX ## _obj1005,                 /* COB_ID_Sync */\
ac05410cc1b8 compilers compatibility
frdupin
parents: 71
diff changeset
   183
	& NODE_PREFIX ## _obj1006,                 /* Sync_Cycle_Period */\
ac05410cc1b8 compilers compatibility
frdupin
parents: 71
diff changeset
   184
	/*& NODE_PREFIX ## _obj1007, */            /* Sync_window_length */\
167
b2f8b91d89b5 Removed compilation warnings with some GCC.
etisserant
parents: 161
diff changeset
   185
	_post_sync,                 /* post_sync */\
b2f8b91d89b5 Removed compilation warnings with some GCC.
etisserant
parents: 161
diff changeset
   186
	_post_TPDO,                 /* post_TPDO */\
0
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   187
	\
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   188
	/* General */\
78
ac05410cc1b8 compilers compatibility
frdupin
parents: 71
diff changeset
   189
	0,                                         /* toggle */\
167
b2f8b91d89b5 Removed compilation warnings with some GCC.
etisserant
parents: 161
diff changeset
   190
	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
   191
	NODE_PREFIX ## _scanIndexOD,                /* scanIndexOD */\
178
01d81faa3350 Add concise DCF support
greg
parents: 172
diff changeset
   192
	_storeODSubIndex,                /* storeODSubIndex */\
01d81faa3350 Add concise DCF support
greg
parents: 172
diff changeset
   193
	NULL,		/*dcf_cursor*/\
284
24bf3d692993 Implemented EMCY objects.
luis
parents: 251
diff changeset
   194
	1,		/*dcf_count_targets*/\
24bf3d692993 Implemented EMCY objects.
luis
parents: 251
diff changeset
   195
	\
24bf3d692993 Implemented EMCY objects.
luis
parents: 251
diff changeset
   196
	/* EMCY */\
24bf3d692993 Implemented EMCY objects.
luis
parents: 251
diff changeset
   197
	Error_free,                      /* error_state */\
24bf3d692993 Implemented EMCY objects.
luis
parents: 251
diff changeset
   198
	sizeof(NODE_PREFIX ## _obj1003) / sizeof(NODE_PREFIX ## _obj1003[0]),      /* error_history_size */\
24bf3d692993 Implemented EMCY objects.
luis
parents: 251
diff changeset
   199
	& NODE_PREFIX ## _highestSubIndex_obj1003,    /* error_number */\
24bf3d692993 Implemented EMCY objects.
luis
parents: 251
diff changeset
   200
	& NODE_PREFIX ## _obj1003[0],    /* error_first_element */\
24bf3d692993 Implemented EMCY objects.
luis
parents: 251
diff changeset
   201
	& NODE_PREFIX ## _obj1001,       /* error_register */\
24bf3d692993 Implemented EMCY objects.
luis
parents: 251
diff changeset
   202
	/* error_data: structure s_errors */\
24bf3d692993 Implemented EMCY objects.
luis
parents: 251
diff changeset
   203
	{\
24bf3d692993 Implemented EMCY objects.
luis
parents: 251
diff changeset
   204
	REPEAT_EMCY_MAX_ERRORS_TIMES(ERROR_DATA_INITIALIZER)\
24bf3d692993 Implemented EMCY objects.
luis
parents: 251
diff changeset
   205
	},\
24bf3d692993 Implemented EMCY objects.
luis
parents: 251
diff changeset
   206
	_post_emcy              /* post_emcy */\
0
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   207
}
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   208
251
cab66ef3e68e Some fixes for C++
etisserant
parents: 235
diff changeset
   209
#ifdef __cplusplus
cab66ef3e68e Some fixes for C++
etisserant
parents: 235
diff changeset
   210
};
cab66ef3e68e Some fixes for C++
etisserant
parents: 235
diff changeset
   211
#endif
cab66ef3e68e Some fixes for C++
etisserant
parents: 235
diff changeset
   212
71
95cd3376cc9f compilator compatitibility
frdupin
parents: 32
diff changeset
   213
#endif /* __data_h__ */
0
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   214
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   215