author | etisserant |
Tue, 05 Feb 2008 10:17:36 +0100 | |
changeset 382 | 860e858685d3 |
parent 381 | 854c43cdc24a |
child 454 | bc000083297a |
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 |
#include "Master.h" |
|
24 |
#include "Slave.h" |
|
25 |
#include "TestMasterSlave.h" |
|
26 |
||
381 | 27 |
extern s_BOARD MasterBoard; |
0 | 28 |
/*****************************************************************************/ |
378
d2abf6c8c27b
As requested long ago, added CoData* parameter to all this applications callback, let application designer use identical callback for multiple nodes, and reduce source code length.
etisserant
parents:
362
diff
changeset
|
29 |
void TestMaster_heartbeatError(CO_Data* d, UNS8 heartbeatID) |
0 | 30 |
{ |
31 |
eprintf("TestMaster_heartbeatError %d\n", heartbeatID); |
|
32 |
} |
|
33 |
||
154
1b3165f2d17d
Implemented writeNetworkDictCallBack test in TestMasterSlave example. Fixed callback assignement race condition in sdo.c.
etisserant
parents:
149
diff
changeset
|
34 |
/******************************************************** |
1b3165f2d17d
Implemented writeNetworkDictCallBack test in TestMasterSlave example. Fixed callback assignement race condition in sdo.c.
etisserant
parents:
149
diff
changeset
|
35 |
* ConfigureSlaveNode is responsible to |
1b3165f2d17d
Implemented writeNetworkDictCallBack test in TestMasterSlave example. Fixed callback assignement race condition in sdo.c.
etisserant
parents:
149
diff
changeset
|
36 |
* - setup master RPDO 1 to receive TPDO 1 from id 2 |
1b3165f2d17d
Implemented writeNetworkDictCallBack test in TestMasterSlave example. Fixed callback assignement race condition in sdo.c.
etisserant
parents:
149
diff
changeset
|
37 |
* - setup master RPDO 2 to receive TPDO 2 from id 2 |
1b3165f2d17d
Implemented writeNetworkDictCallBack test in TestMasterSlave example. Fixed callback assignement race condition in sdo.c.
etisserant
parents:
149
diff
changeset
|
38 |
********************************************************/ |
378
d2abf6c8c27b
As requested long ago, added CoData* parameter to all this applications callback, let application designer use identical callback for multiple nodes, and reduce source code length.
etisserant
parents:
362
diff
changeset
|
39 |
void TestMaster_initialisation(CO_Data* d) |
0 | 40 |
{ |
154
1b3165f2d17d
Implemented writeNetworkDictCallBack test in TestMasterSlave example. Fixed callback assignement race condition in sdo.c.
etisserant
parents:
149
diff
changeset
|
41 |
UNS32 PDO1_COBID = 0x0182; |
1b3165f2d17d
Implemented writeNetworkDictCallBack test in TestMasterSlave example. Fixed callback assignement race condition in sdo.c.
etisserant
parents:
149
diff
changeset
|
42 |
UNS32 PDO2_COBID = 0x0282; |
1b3165f2d17d
Implemented writeNetworkDictCallBack test in TestMasterSlave example. Fixed callback assignement race condition in sdo.c.
etisserant
parents:
149
diff
changeset
|
43 |
UNS8 size = sizeof(UNS32); |
362 | 44 |
UNS32 SINC_cicle=0; |
45 |
UNS8 data_type = 0; |
|
179
763b6d32c1a6
Master configure slave's heartbeat producer time by concise DCF.
greg
parents:
175
diff
changeset
|
46 |
|
0 | 47 |
eprintf("TestMaster_initialisation\n"); |
154
1b3165f2d17d
Implemented writeNetworkDictCallBack test in TestMasterSlave example. Fixed callback assignement race condition in sdo.c.
etisserant
parents:
149
diff
changeset
|
48 |
|
1b3165f2d17d
Implemented writeNetworkDictCallBack test in TestMasterSlave example. Fixed callback assignement race condition in sdo.c.
etisserant
parents:
149
diff
changeset
|
49 |
/***************************************** |
1b3165f2d17d
Implemented writeNetworkDictCallBack test in TestMasterSlave example. Fixed callback assignement race condition in sdo.c.
etisserant
parents:
149
diff
changeset
|
50 |
* Define RPDOs to match slave ID=2 TPDOs* |
1b3165f2d17d
Implemented writeNetworkDictCallBack test in TestMasterSlave example. Fixed callback assignement race condition in sdo.c.
etisserant
parents:
149
diff
changeset
|
51 |
*****************************************/ |
175
e255529b6f7d
Added writeLocalDict and readLocalDict, that have to be called from application instead of getODEntry and setODEntry. Fix potential endianization problem.
etisserant
parents:
172
diff
changeset
|
52 |
writeLocalDict( &TestMaster_Data, /*CO_Data* d*/ |
154
1b3165f2d17d
Implemented writeNetworkDictCallBack test in TestMasterSlave example. Fixed callback assignement race condition in sdo.c.
etisserant
parents:
149
diff
changeset
|
53 |
0x1400, /*UNS16 index*/ |
1b3165f2d17d
Implemented writeNetworkDictCallBack test in TestMasterSlave example. Fixed callback assignement race condition in sdo.c.
etisserant
parents:
149
diff
changeset
|
54 |
0x01, /*UNS8 subind*/ |
1b3165f2d17d
Implemented writeNetworkDictCallBack test in TestMasterSlave example. Fixed callback assignement race condition in sdo.c.
etisserant
parents:
149
diff
changeset
|
55 |
&PDO1_COBID, /*void * pSourceData,*/ |
1b3165f2d17d
Implemented writeNetworkDictCallBack test in TestMasterSlave example. Fixed callback assignement race condition in sdo.c.
etisserant
parents:
149
diff
changeset
|
56 |
&size, /* UNS8 * pExpectedSize*/ |
1b3165f2d17d
Implemented writeNetworkDictCallBack test in TestMasterSlave example. Fixed callback assignement race condition in sdo.c.
etisserant
parents:
149
diff
changeset
|
57 |
RW); /* UNS8 checkAccess */ |
1b3165f2d17d
Implemented writeNetworkDictCallBack test in TestMasterSlave example. Fixed callback assignement race condition in sdo.c.
etisserant
parents:
149
diff
changeset
|
58 |
|
175
e255529b6f7d
Added writeLocalDict and readLocalDict, that have to be called from application instead of getODEntry and setODEntry. Fix potential endianization problem.
etisserant
parents:
172
diff
changeset
|
59 |
writeLocalDict( &TestMaster_Data, /*CO_Data* d*/ |
154
1b3165f2d17d
Implemented writeNetworkDictCallBack test in TestMasterSlave example. Fixed callback assignement race condition in sdo.c.
etisserant
parents:
149
diff
changeset
|
60 |
0x1401, /*UNS16 index*/ |
1b3165f2d17d
Implemented writeNetworkDictCallBack test in TestMasterSlave example. Fixed callback assignement race condition in sdo.c.
etisserant
parents:
149
diff
changeset
|
61 |
0x01, /*UNS8 subind*/ |
1b3165f2d17d
Implemented writeNetworkDictCallBack test in TestMasterSlave example. Fixed callback assignement race condition in sdo.c.
etisserant
parents:
149
diff
changeset
|
62 |
&PDO2_COBID, /*void * pSourceData,*/ |
1b3165f2d17d
Implemented writeNetworkDictCallBack test in TestMasterSlave example. Fixed callback assignement race condition in sdo.c.
etisserant
parents:
149
diff
changeset
|
63 |
&size, /* UNS8 * pExpectedSize*/ |
1b3165f2d17d
Implemented writeNetworkDictCallBack test in TestMasterSlave example. Fixed callback assignement race condition in sdo.c.
etisserant
parents:
149
diff
changeset
|
64 |
RW); /* UNS8 checkAccess */ |
381 | 65 |
|
154
1b3165f2d17d
Implemented writeNetworkDictCallBack test in TestMasterSlave example. Fixed callback assignement race condition in sdo.c.
etisserant
parents:
149
diff
changeset
|
66 |
} |
1b3165f2d17d
Implemented writeNetworkDictCallBack test in TestMasterSlave example. Fixed callback assignement race condition in sdo.c.
etisserant
parents:
149
diff
changeset
|
67 |
|
179
763b6d32c1a6
Master configure slave's heartbeat producer time by concise DCF.
greg
parents:
175
diff
changeset
|
68 |
// Step counts number of times ConfigureSlaveNode is called |
763b6d32c1a6
Master configure slave's heartbeat producer time by concise DCF.
greg
parents:
175
diff
changeset
|
69 |
static init_step = 0; |
763b6d32c1a6
Master configure slave's heartbeat producer time by concise DCF.
greg
parents:
175
diff
changeset
|
70 |
|
763b6d32c1a6
Master configure slave's heartbeat producer time by concise DCF.
greg
parents:
175
diff
changeset
|
71 |
/*Froward declaration*/ |
763b6d32c1a6
Master configure slave's heartbeat producer time by concise DCF.
greg
parents:
175
diff
changeset
|
72 |
static void ConfigureSlaveNode(CO_Data* d, UNS8 nodeId); |
763b6d32c1a6
Master configure slave's heartbeat producer time by concise DCF.
greg
parents:
175
diff
changeset
|
73 |
|
763b6d32c1a6
Master configure slave's heartbeat producer time by concise DCF.
greg
parents:
175
diff
changeset
|
74 |
/**/ |
763b6d32c1a6
Master configure slave's heartbeat producer time by concise DCF.
greg
parents:
175
diff
changeset
|
75 |
static void CheckSDOAndContinue(CO_Data* d, UNS8 nodeId) |
763b6d32c1a6
Master configure slave's heartbeat producer time by concise DCF.
greg
parents:
175
diff
changeset
|
76 |
{ |
763b6d32c1a6
Master configure slave's heartbeat producer time by concise DCF.
greg
parents:
175
diff
changeset
|
77 |
UNS32 abortCode; |
763b6d32c1a6
Master configure slave's heartbeat producer time by concise DCF.
greg
parents:
175
diff
changeset
|
78 |
if(getWriteResultNetworkDict (d, nodeId, &abortCode) != SDO_FINISHED) |
763b6d32c1a6
Master configure slave's heartbeat producer time by concise DCF.
greg
parents:
175
diff
changeset
|
79 |
eprintf("Master : Failed in initializing slave %2.2x, step %d, AbortCode :%4.4x \n", nodeId, init_step, abortCode); |
763b6d32c1a6
Master configure slave's heartbeat producer time by concise DCF.
greg
parents:
175
diff
changeset
|
80 |
|
763b6d32c1a6
Master configure slave's heartbeat producer time by concise DCF.
greg
parents:
175
diff
changeset
|
81 |
/* Finalise last SDO transfer with this node */ |
763b6d32c1a6
Master configure slave's heartbeat producer time by concise DCF.
greg
parents:
175
diff
changeset
|
82 |
closeSDOtransfer(&TestMaster_Data, nodeId, SDO_CLIENT); |
763b6d32c1a6
Master configure slave's heartbeat producer time by concise DCF.
greg
parents:
175
diff
changeset
|
83 |
|
763b6d32c1a6
Master configure slave's heartbeat producer time by concise DCF.
greg
parents:
175
diff
changeset
|
84 |
ConfigureSlaveNode(d, nodeId); |
763b6d32c1a6
Master configure slave's heartbeat producer time by concise DCF.
greg
parents:
175
diff
changeset
|
85 |
} |
763b6d32c1a6
Master configure slave's heartbeat producer time by concise DCF.
greg
parents:
175
diff
changeset
|
86 |
|
154
1b3165f2d17d
Implemented writeNetworkDictCallBack test in TestMasterSlave example. Fixed callback assignement race condition in sdo.c.
etisserant
parents:
149
diff
changeset
|
87 |
/******************************************************** |
1b3165f2d17d
Implemented writeNetworkDictCallBack test in TestMasterSlave example. Fixed callback assignement race condition in sdo.c.
etisserant
parents:
149
diff
changeset
|
88 |
* ConfigureSlaveNode is responsible to |
381 | 89 |
* - setup slave TPDO 1 transmit type |
90 |
* - setup slave TPDO 2 transmit type |
|
154
1b3165f2d17d
Implemented writeNetworkDictCallBack test in TestMasterSlave example. Fixed callback assignement race condition in sdo.c.
etisserant
parents:
149
diff
changeset
|
91 |
* - switch to operational mode |
1b3165f2d17d
Implemented writeNetworkDictCallBack test in TestMasterSlave example. Fixed callback assignement race condition in sdo.c.
etisserant
parents:
149
diff
changeset
|
92 |
* - send NMT to slave |
1b3165f2d17d
Implemented writeNetworkDictCallBack test in TestMasterSlave example. Fixed callback assignement race condition in sdo.c.
etisserant
parents:
149
diff
changeset
|
93 |
******************************************************** |
1b3165f2d17d
Implemented writeNetworkDictCallBack test in TestMasterSlave example. Fixed callback assignement race condition in sdo.c.
etisserant
parents:
149
diff
changeset
|
94 |
* This an example of : |
1b3165f2d17d
Implemented writeNetworkDictCallBack test in TestMasterSlave example. Fixed callback assignement race condition in sdo.c.
etisserant
parents:
149
diff
changeset
|
95 |
* Network Dictionary Access (SDO) with Callback |
1b3165f2d17d
Implemented writeNetworkDictCallBack test in TestMasterSlave example. Fixed callback assignement race condition in sdo.c.
etisserant
parents:
149
diff
changeset
|
96 |
* Slave node state change request (NMT) |
1b3165f2d17d
Implemented writeNetworkDictCallBack test in TestMasterSlave example. Fixed callback assignement race condition in sdo.c.
etisserant
parents:
149
diff
changeset
|
97 |
******************************************************** |
381 | 98 |
* This is called first by TestMaster_post_SlaveBootup |
154
1b3165f2d17d
Implemented writeNetworkDictCallBack test in TestMasterSlave example. Fixed callback assignement race condition in sdo.c.
etisserant
parents:
149
diff
changeset
|
99 |
* then it called again each time a SDO exchange is |
1b3165f2d17d
Implemented writeNetworkDictCallBack test in TestMasterSlave example. Fixed callback assignement race condition in sdo.c.
etisserant
parents:
149
diff
changeset
|
100 |
* finished. |
1b3165f2d17d
Implemented writeNetworkDictCallBack test in TestMasterSlave example. Fixed callback assignement race condition in sdo.c.
etisserant
parents:
149
diff
changeset
|
101 |
********************************************************/ |
179
763b6d32c1a6
Master configure slave's heartbeat producer time by concise DCF.
greg
parents:
175
diff
changeset
|
102 |
|
154
1b3165f2d17d
Implemented writeNetworkDictCallBack test in TestMasterSlave example. Fixed callback assignement race condition in sdo.c.
etisserant
parents:
149
diff
changeset
|
103 |
static void ConfigureSlaveNode(CO_Data* d, UNS8 nodeId) |
1b3165f2d17d
Implemented writeNetworkDictCallBack test in TestMasterSlave example. Fixed callback assignement race condition in sdo.c.
etisserant
parents:
149
diff
changeset
|
104 |
{ |
179
763b6d32c1a6
Master configure slave's heartbeat producer time by concise DCF.
greg
parents:
175
diff
changeset
|
105 |
/* Master configure heartbeat producer time at 1000 ms |
763b6d32c1a6
Master configure slave's heartbeat producer time by concise DCF.
greg
parents:
175
diff
changeset
|
106 |
* for slave node-id 0x02 by DCF concise */ |
763b6d32c1a6
Master configure slave's heartbeat producer time by concise DCF.
greg
parents:
175
diff
changeset
|
107 |
|
763b6d32c1a6
Master configure slave's heartbeat producer time by concise DCF.
greg
parents:
175
diff
changeset
|
108 |
UNS8 Transmission_Type = 0x01; |
154
1b3165f2d17d
Implemented writeNetworkDictCallBack test in TestMasterSlave example. Fixed callback assignement race condition in sdo.c.
etisserant
parents:
149
diff
changeset
|
109 |
UNS32 abortCode; |
1b3165f2d17d
Implemented writeNetworkDictCallBack test in TestMasterSlave example. Fixed callback assignement race condition in sdo.c.
etisserant
parents:
149
diff
changeset
|
110 |
UNS8 res; |
1b3165f2d17d
Implemented writeNetworkDictCallBack test in TestMasterSlave example. Fixed callback assignement race condition in sdo.c.
etisserant
parents:
149
diff
changeset
|
111 |
eprintf("Master : ConfigureSlaveNode %2.2x\n", nodeId); |
1b3165f2d17d
Implemented writeNetworkDictCallBack test in TestMasterSlave example. Fixed callback assignement race condition in sdo.c.
etisserant
parents:
149
diff
changeset
|
112 |
|
179
763b6d32c1a6
Master configure slave's heartbeat producer time by concise DCF.
greg
parents:
175
diff
changeset
|
113 |
switch(++init_step){ |
154
1b3165f2d17d
Implemented writeNetworkDictCallBack test in TestMasterSlave example. Fixed callback assignement race condition in sdo.c.
etisserant
parents:
149
diff
changeset
|
114 |
case 1: /*First step : setup Slave's TPDO 1 to be transmitted on SYNC*/ |
1b3165f2d17d
Implemented writeNetworkDictCallBack test in TestMasterSlave example. Fixed callback assignement race condition in sdo.c.
etisserant
parents:
149
diff
changeset
|
115 |
eprintf("Master : set slave %2.2x TPDO 1 transmit type\n", nodeId); |
1b3165f2d17d
Implemented writeNetworkDictCallBack test in TestMasterSlave example. Fixed callback assignement race condition in sdo.c.
etisserant
parents:
149
diff
changeset
|
116 |
res = writeNetworkDictCallBack (d, /*CO_Data* d*/ |
179
763b6d32c1a6
Master configure slave's heartbeat producer time by concise DCF.
greg
parents:
175
diff
changeset
|
117 |
nodeId, /*UNS8 nodeId*/ |
154
1b3165f2d17d
Implemented writeNetworkDictCallBack test in TestMasterSlave example. Fixed callback assignement race condition in sdo.c.
etisserant
parents:
149
diff
changeset
|
118 |
0x1800, /*UNS16 index*/ |
1b3165f2d17d
Implemented writeNetworkDictCallBack test in TestMasterSlave example. Fixed callback assignement race condition in sdo.c.
etisserant
parents:
149
diff
changeset
|
119 |
0x02, /*UNS8 subindex*/ |
1b3165f2d17d
Implemented writeNetworkDictCallBack test in TestMasterSlave example. Fixed callback assignement race condition in sdo.c.
etisserant
parents:
149
diff
changeset
|
120 |
1, /*UNS8 count*/ |
1b3165f2d17d
Implemented writeNetworkDictCallBack test in TestMasterSlave example. Fixed callback assignement race condition in sdo.c.
etisserant
parents:
149
diff
changeset
|
121 |
0, /*UNS8 dataType*/ |
1b3165f2d17d
Implemented writeNetworkDictCallBack test in TestMasterSlave example. Fixed callback assignement race condition in sdo.c.
etisserant
parents:
149
diff
changeset
|
122 |
&Transmission_Type,/*void *data*/ |
179
763b6d32c1a6
Master configure slave's heartbeat producer time by concise DCF.
greg
parents:
175
diff
changeset
|
123 |
CheckSDOAndContinue); /*SDOCallback_t Callback*/ |
763b6d32c1a6
Master configure slave's heartbeat producer time by concise DCF.
greg
parents:
175
diff
changeset
|
124 |
break; |
763b6d32c1a6
Master configure slave's heartbeat producer time by concise DCF.
greg
parents:
175
diff
changeset
|
125 |
|
154
1b3165f2d17d
Implemented writeNetworkDictCallBack test in TestMasterSlave example. Fixed callback assignement race condition in sdo.c.
etisserant
parents:
149
diff
changeset
|
126 |
case 2: /*Second step*/ |
1b3165f2d17d
Implemented writeNetworkDictCallBack test in TestMasterSlave example. Fixed callback assignement race condition in sdo.c.
etisserant
parents:
149
diff
changeset
|
127 |
eprintf("Master : set slave %2.2x TPDO 2 transmit type\n", nodeId); |
1b3165f2d17d
Implemented writeNetworkDictCallBack test in TestMasterSlave example. Fixed callback assignement race condition in sdo.c.
etisserant
parents:
149
diff
changeset
|
128 |
writeNetworkDictCallBack (d, /*CO_Data* d*/ |
179
763b6d32c1a6
Master configure slave's heartbeat producer time by concise DCF.
greg
parents:
175
diff
changeset
|
129 |
nodeId, /*UNS8 nodeId*/ |
154
1b3165f2d17d
Implemented writeNetworkDictCallBack test in TestMasterSlave example. Fixed callback assignement race condition in sdo.c.
etisserant
parents:
149
diff
changeset
|
130 |
0x1801, /*UNS16 index*/ |
1b3165f2d17d
Implemented writeNetworkDictCallBack test in TestMasterSlave example. Fixed callback assignement race condition in sdo.c.
etisserant
parents:
149
diff
changeset
|
131 |
0x02, /*UNS16 index*/ |
1b3165f2d17d
Implemented writeNetworkDictCallBack test in TestMasterSlave example. Fixed callback assignement race condition in sdo.c.
etisserant
parents:
149
diff
changeset
|
132 |
1, /*UNS8 count*/ |
1b3165f2d17d
Implemented writeNetworkDictCallBack test in TestMasterSlave example. Fixed callback assignement race condition in sdo.c.
etisserant
parents:
149
diff
changeset
|
133 |
0, /*UNS8 dataType*/ |
1b3165f2d17d
Implemented writeNetworkDictCallBack test in TestMasterSlave example. Fixed callback assignement race condition in sdo.c.
etisserant
parents:
149
diff
changeset
|
134 |
&Transmission_Type,/*void *data*/ |
179
763b6d32c1a6
Master configure slave's heartbeat producer time by concise DCF.
greg
parents:
175
diff
changeset
|
135 |
CheckSDOAndContinue); /*SDOCallback_t Callback*/ |
763b6d32c1a6
Master configure slave's heartbeat producer time by concise DCF.
greg
parents:
175
diff
changeset
|
136 |
break; |
763b6d32c1a6
Master configure slave's heartbeat producer time by concise DCF.
greg
parents:
175
diff
changeset
|
137 |
case 3: |
763b6d32c1a6
Master configure slave's heartbeat producer time by concise DCF.
greg
parents:
175
diff
changeset
|
138 |
|
763b6d32c1a6
Master configure slave's heartbeat producer time by concise DCF.
greg
parents:
175
diff
changeset
|
139 |
/****************************** START *******************************/ |
763b6d32c1a6
Master configure slave's heartbeat producer time by concise DCF.
greg
parents:
175
diff
changeset
|
140 |
|
154
1b3165f2d17d
Implemented writeNetworkDictCallBack test in TestMasterSlave example. Fixed callback assignement race condition in sdo.c.
etisserant
parents:
149
diff
changeset
|
141 |
/* Put the master in operational mode */ |
1b3165f2d17d
Implemented writeNetworkDictCallBack test in TestMasterSlave example. Fixed callback assignement race condition in sdo.c.
etisserant
parents:
149
diff
changeset
|
142 |
setState(d, Operational); |
179
763b6d32c1a6
Master configure slave's heartbeat producer time by concise DCF.
greg
parents:
175
diff
changeset
|
143 |
|
154
1b3165f2d17d
Implemented writeNetworkDictCallBack test in TestMasterSlave example. Fixed callback assignement race condition in sdo.c.
etisserant
parents:
149
diff
changeset
|
144 |
/* Ask slave node to go in operational mode */ |
1b3165f2d17d
Implemented writeNetworkDictCallBack test in TestMasterSlave example. Fixed callback assignement race condition in sdo.c.
etisserant
parents:
149
diff
changeset
|
145 |
masterSendNMTstateChange (d, nodeId, NMT_Start_Node); |
179
763b6d32c1a6
Master configure slave's heartbeat producer time by concise DCF.
greg
parents:
175
diff
changeset
|
146 |
|
154
1b3165f2d17d
Implemented writeNetworkDictCallBack test in TestMasterSlave example. Fixed callback assignement race condition in sdo.c.
etisserant
parents:
149
diff
changeset
|
147 |
} |
0 | 148 |
} |
149 |
||
343 | 150 |
|
378
d2abf6c8c27b
As requested long ago, added CoData* parameter to all this applications callback, let application designer use identical callback for multiple nodes, and reduce source code length.
etisserant
parents:
362
diff
changeset
|
151 |
void TestMaster_preOperational(CO_Data* d) |
0 | 152 |
{ |
153 |
eprintf("TestMaster_preOperational\n"); |
|
154 |
} |
|
155 |
||
378
d2abf6c8c27b
As requested long ago, added CoData* parameter to all this applications callback, let application designer use identical callback for multiple nodes, and reduce source code length.
etisserant
parents:
362
diff
changeset
|
156 |
void TestMaster_operational(CO_Data* d) |
0 | 157 |
{ |
158 |
eprintf("TestMaster_operational\n"); |
|
159 |
} |
|
160 |
||
378
d2abf6c8c27b
As requested long ago, added CoData* parameter to all this applications callback, let application designer use identical callback for multiple nodes, and reduce source code length.
etisserant
parents:
362
diff
changeset
|
161 |
void TestMaster_stopped(CO_Data* d) |
0 | 162 |
{ |
163 |
eprintf("TestMaster_stopped\n"); |
|
164 |
} |
|
165 |
||
378
d2abf6c8c27b
As requested long ago, added CoData* parameter to all this applications callback, let application designer use identical callback for multiple nodes, and reduce source code length.
etisserant
parents:
362
diff
changeset
|
166 |
void TestMaster_post_sync(CO_Data* d) |
0 | 167 |
{ |
168 |
eprintf("TestMaster_post_sync\n"); |
|
236
905677ed00f3
Full preliminary implementation of TPDO transmit type:
etisserant
parents:
201
diff
changeset
|
169 |
eprintf("Master: %d %d %d %d %d %d %d %d %d %x %x %d %d\n", |
905677ed00f3
Full preliminary implementation of TPDO transmit type:
etisserant
parents:
201
diff
changeset
|
170 |
MasterMap1, |
905677ed00f3
Full preliminary implementation of TPDO transmit type:
etisserant
parents:
201
diff
changeset
|
171 |
MasterMap2, |
905677ed00f3
Full preliminary implementation of TPDO transmit type:
etisserant
parents:
201
diff
changeset
|
172 |
MasterMap3, |
905677ed00f3
Full preliminary implementation of TPDO transmit type:
etisserant
parents:
201
diff
changeset
|
173 |
MasterMap4, |
905677ed00f3
Full preliminary implementation of TPDO transmit type:
etisserant
parents:
201
diff
changeset
|
174 |
MasterMap5, |
905677ed00f3
Full preliminary implementation of TPDO transmit type:
etisserant
parents:
201
diff
changeset
|
175 |
MasterMap6, |
905677ed00f3
Full preliminary implementation of TPDO transmit type:
etisserant
parents:
201
diff
changeset
|
176 |
MasterMap7, |
905677ed00f3
Full preliminary implementation of TPDO transmit type:
etisserant
parents:
201
diff
changeset
|
177 |
MasterMap8, |
905677ed00f3
Full preliminary implementation of TPDO transmit type:
etisserant
parents:
201
diff
changeset
|
178 |
MasterMap9, |
905677ed00f3
Full preliminary implementation of TPDO transmit type:
etisserant
parents:
201
diff
changeset
|
179 |
MasterMap10, |
905677ed00f3
Full preliminary implementation of TPDO transmit type:
etisserant
parents:
201
diff
changeset
|
180 |
MasterMap11, |
905677ed00f3
Full preliminary implementation of TPDO transmit type:
etisserant
parents:
201
diff
changeset
|
181 |
MasterMap12, |
905677ed00f3
Full preliminary implementation of TPDO transmit type:
etisserant
parents:
201
diff
changeset
|
182 |
MasterMap13); |
0 | 183 |
} |
184 |
||
378
d2abf6c8c27b
As requested long ago, added CoData* parameter to all this applications callback, let application designer use identical callback for multiple nodes, and reduce source code length.
etisserant
parents:
362
diff
changeset
|
185 |
void TestMaster_post_emcy(CO_Data* d, UNS8 nodeID, UNS16 errCode, UNS8 errReg) |
284 | 186 |
{ |
187 |
eprintf("Master received EMCY message. Node: %2.2x ErrorCode: %4.4x ErrorRegister: %2.2x\n", nodeID, errCode, errReg); |
|
188 |
} |
|
189 |
||
0 | 190 |
char query_result = 0; |
191 |
char waiting_answer = 0; |
|
192 |
||
236
905677ed00f3
Full preliminary implementation of TPDO transmit type:
etisserant
parents:
201
diff
changeset
|
193 |
static void CheckSDO(CO_Data* d, UNS8 nodeId) |
905677ed00f3
Full preliminary implementation of TPDO transmit type:
etisserant
parents:
201
diff
changeset
|
194 |
{ |
905677ed00f3
Full preliminary implementation of TPDO transmit type:
etisserant
parents:
201
diff
changeset
|
195 |
UNS32 abortCode; |
905677ed00f3
Full preliminary implementation of TPDO transmit type:
etisserant
parents:
201
diff
changeset
|
196 |
if(getWriteResultNetworkDict (d, nodeId, &abortCode) != SDO_FINISHED) |
905677ed00f3
Full preliminary implementation of TPDO transmit type:
etisserant
parents:
201
diff
changeset
|
197 |
eprintf("Master : Failed in changing Slave's transmit type AbortCode :%4.4x \n", abortCode); |
905677ed00f3
Full preliminary implementation of TPDO transmit type:
etisserant
parents:
201
diff
changeset
|
198 |
|
905677ed00f3
Full preliminary implementation of TPDO transmit type:
etisserant
parents:
201
diff
changeset
|
199 |
/* Finalise last SDO transfer with this node */ |
905677ed00f3
Full preliminary implementation of TPDO transmit type:
etisserant
parents:
201
diff
changeset
|
200 |
closeSDOtransfer(&TestMaster_Data, nodeId, SDO_CLIENT); |
905677ed00f3
Full preliminary implementation of TPDO transmit type:
etisserant
parents:
201
diff
changeset
|
201 |
} |
905677ed00f3
Full preliminary implementation of TPDO transmit type:
etisserant
parents:
201
diff
changeset
|
202 |
|
905677ed00f3
Full preliminary implementation of TPDO transmit type:
etisserant
parents:
201
diff
changeset
|
203 |
|
905677ed00f3
Full preliminary implementation of TPDO transmit type:
etisserant
parents:
201
diff
changeset
|
204 |
static int MasterSyncCount = 0; |
378
d2abf6c8c27b
As requested long ago, added CoData* parameter to all this applications callback, let application designer use identical callback for multiple nodes, and reduce source code length.
etisserant
parents:
362
diff
changeset
|
205 |
void TestMaster_post_TPDO(CO_Data* d) |
0 | 206 |
{ |
236
905677ed00f3
Full preliminary implementation of TPDO transmit type:
etisserant
parents:
201
diff
changeset
|
207 |
eprintf("TestMaster_post_TPDO MasterSyncCount = %d \n", MasterSyncCount); |
179
763b6d32c1a6
Master configure slave's heartbeat producer time by concise DCF.
greg
parents:
175
diff
changeset
|
208 |
// |
0 | 209 |
// { |
210 |
// char zero = 0; |
|
211 |
// if(MasterMap4 > 0x80){ |
|
212 |
// writeNetworkDict ( |
|
213 |
// &TestMaster_Data, |
|
214 |
// TestSlave_Data->bDeviceNodeId, |
|
215 |
// 0x2002, |
|
216 |
// 0x00, |
|
217 |
// 1, |
|
218 |
// 0, |
|
219 |
// &zero); |
|
220 |
// } |
|
221 |
// } |
|
222 |
||
236
905677ed00f3
Full preliminary implementation of TPDO transmit type:
etisserant
parents:
201
diff
changeset
|
223 |
#if 0 |
0 | 224 |
if(waiting_answer){ |
225 |
UNS32 abortCode; |
|
226 |
UNS8 size; |
|
227 |
switch(getReadResultNetworkDict ( |
|
228 |
&TestMaster_Data, |
|
201 | 229 |
0x02, |
0 | 230 |
&query_result, |
231 |
&size, |
|
232 |
&abortCode)) |
|
233 |
{ |
|
234 |
case SDO_FINISHED: |
|
235 |
/* Do something with result here !!*/ |
|
236 |
eprintf("Got SDO answer (0x2002, 0x00), %d %d\n",query_result,size); |
|
237 |
case SDO_ABORTED_RCV: |
|
238 |
case SDO_ABORTED_INTERNAL: |
|
239 |
case SDO_RESET: |
|
240 |
waiting_answer = 0; |
|
241 |
closeSDOtransfer( |
|
242 |
&TestMaster_Data, |
|
201 | 243 |
0x02, |
0 | 244 |
SDO_CLIENT); |
245 |
break; |
|
246 |
case SDO_DOWNLOAD_IN_PROGRESS: |
|
247 |
case SDO_UPLOAD_IN_PROGRESS: |
|
248 |
break; |
|
249 |
} |
|
236
905677ed00f3
Full preliminary implementation of TPDO transmit type:
etisserant
parents:
201
diff
changeset
|
250 |
}else if(MasterSyncCount % 10 == 0){ |
0 | 251 |
readNetworkDict ( |
252 |
&TestMaster_Data, |
|
201 | 253 |
0x02, |
0 | 254 |
0x2002, |
255 |
0x00, |
|
256 |
0); |
|
257 |
waiting_answer = 1; |
|
258 |
} |
|
236
905677ed00f3
Full preliminary implementation of TPDO transmit type:
etisserant
parents:
201
diff
changeset
|
259 |
#endif |
905677ed00f3
Full preliminary implementation of TPDO transmit type:
etisserant
parents:
201
diff
changeset
|
260 |
if(MasterSyncCount % 17 == 0){ |
905677ed00f3
Full preliminary implementation of TPDO transmit type:
etisserant
parents:
201
diff
changeset
|
261 |
eprintf("Master : Ask RTR PDO (0x1402)\n"); |
905677ed00f3
Full preliminary implementation of TPDO transmit type:
etisserant
parents:
201
diff
changeset
|
262 |
sendPDOrequest(&TestMaster_Data, 0x1402 ); |
905677ed00f3
Full preliminary implementation of TPDO transmit type:
etisserant
parents:
201
diff
changeset
|
263 |
sendPDOrequest(&TestMaster_Data, 0x1403 ); |
905677ed00f3
Full preliminary implementation of TPDO transmit type:
etisserant
parents:
201
diff
changeset
|
264 |
} |
905677ed00f3
Full preliminary implementation of TPDO transmit type:
etisserant
parents:
201
diff
changeset
|
265 |
if(MasterSyncCount % 50 == 0){ |
905677ed00f3
Full preliminary implementation of TPDO transmit type:
etisserant
parents:
201
diff
changeset
|
266 |
eprintf("Master : Change slave's transmit type to 0xFF\n"); |
905677ed00f3
Full preliminary implementation of TPDO transmit type:
etisserant
parents:
201
diff
changeset
|
267 |
UNS8 transmitiontype = 0xFF; |
905677ed00f3
Full preliminary implementation of TPDO transmit type:
etisserant
parents:
201
diff
changeset
|
268 |
writeNetworkDictCallBack (&TestMaster_Data, /*CO_Data* d*/ |
905677ed00f3
Full preliminary implementation of TPDO transmit type:
etisserant
parents:
201
diff
changeset
|
269 |
2, /*UNS8 nodeId*/ |
905677ed00f3
Full preliminary implementation of TPDO transmit type:
etisserant
parents:
201
diff
changeset
|
270 |
0x1802, /*UNS16 index*/ |
905677ed00f3
Full preliminary implementation of TPDO transmit type:
etisserant
parents:
201
diff
changeset
|
271 |
0x02, /*UNS16 index*/ |
905677ed00f3
Full preliminary implementation of TPDO transmit type:
etisserant
parents:
201
diff
changeset
|
272 |
1, /*UNS8 count*/ |
905677ed00f3
Full preliminary implementation of TPDO transmit type:
etisserant
parents:
201
diff
changeset
|
273 |
0, /*UNS8 dataType*/ |
905677ed00f3
Full preliminary implementation of TPDO transmit type:
etisserant
parents:
201
diff
changeset
|
274 |
&transmitiontype,/*void *data*/ |
905677ed00f3
Full preliminary implementation of TPDO transmit type:
etisserant
parents:
201
diff
changeset
|
275 |
CheckSDO); /*SDOCallback_t Callback*/ |
905677ed00f3
Full preliminary implementation of TPDO transmit type:
etisserant
parents:
201
diff
changeset
|
276 |
} |
905677ed00f3
Full preliminary implementation of TPDO transmit type:
etisserant
parents:
201
diff
changeset
|
277 |
if(MasterSyncCount % 50 == 25){ |
905677ed00f3
Full preliminary implementation of TPDO transmit type:
etisserant
parents:
201
diff
changeset
|
278 |
eprintf("Master : Change slave's transmit type to 0x00\n"); |
905677ed00f3
Full preliminary implementation of TPDO transmit type:
etisserant
parents:
201
diff
changeset
|
279 |
UNS8 transmitiontype = 0x00; |
905677ed00f3
Full preliminary implementation of TPDO transmit type:
etisserant
parents:
201
diff
changeset
|
280 |
writeNetworkDictCallBack (&TestMaster_Data, /*CO_Data* d*/ |
905677ed00f3
Full preliminary implementation of TPDO transmit type:
etisserant
parents:
201
diff
changeset
|
281 |
2, /*UNS8 nodeId*/ |
905677ed00f3
Full preliminary implementation of TPDO transmit type:
etisserant
parents:
201
diff
changeset
|
282 |
0x1802, /*UNS16 index*/ |
905677ed00f3
Full preliminary implementation of TPDO transmit type:
etisserant
parents:
201
diff
changeset
|
283 |
0x02, /*UNS16 index*/ |
905677ed00f3
Full preliminary implementation of TPDO transmit type:
etisserant
parents:
201
diff
changeset
|
284 |
1, /*UNS8 count*/ |
905677ed00f3
Full preliminary implementation of TPDO transmit type:
etisserant
parents:
201
diff
changeset
|
285 |
0, /*UNS8 dataType*/ |
905677ed00f3
Full preliminary implementation of TPDO transmit type:
etisserant
parents:
201
diff
changeset
|
286 |
&transmitiontype,/*void *data*/ |
905677ed00f3
Full preliminary implementation of TPDO transmit type:
etisserant
parents:
201
diff
changeset
|
287 |
CheckSDO); /*SDOCallback_t Callback*/ |
905677ed00f3
Full preliminary implementation of TPDO transmit type:
etisserant
parents:
201
diff
changeset
|
288 |
} |
905677ed00f3
Full preliminary implementation of TPDO transmit type:
etisserant
parents:
201
diff
changeset
|
289 |
MasterSyncCount++; |
905677ed00f3
Full preliminary implementation of TPDO transmit type:
etisserant
parents:
201
diff
changeset
|
290 |
} |
343 | 291 |
|
378
d2abf6c8c27b
As requested long ago, added CoData* parameter to all this applications callback, let application designer use identical callback for multiple nodes, and reduce source code length.
etisserant
parents:
362
diff
changeset
|
292 |
void TestMaster_post_SlaveBootup(CO_Data* d, UNS8 nodeid) |
343 | 293 |
{ |
294 |
eprintf("TestMaster_post_SlaveBootup %x\n", nodeid); |
|
362 | 295 |
|
381 | 296 |
ConfigureSlaveNode(d, nodeid); |
297 |
} |