author | greg |
Wed, 30 Jan 2008 17:23:32 +0100 | |
changeset 374 | b74f7ec412fc |
parent 362 | 1134fc19aa74 |
child 378 | d2abf6c8c27b |
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 |
||
27 |
/*****************************************************************************/ |
|
28 |
void TestMaster_heartbeatError(UNS8 heartbeatID) |
|
29 |
{ |
|
30 |
eprintf("TestMaster_heartbeatError %d\n", heartbeatID); |
|
31 |
} |
|
32 |
||
154
1b3165f2d17d
Implemented writeNetworkDictCallBack test in TestMasterSlave example. Fixed callback assignement race condition in sdo.c.
etisserant
parents:
149
diff
changeset
|
33 |
/******************************************************** |
1b3165f2d17d
Implemented writeNetworkDictCallBack test in TestMasterSlave example. Fixed callback assignement race condition in sdo.c.
etisserant
parents:
149
diff
changeset
|
34 |
* ConfigureSlaveNode is responsible to |
1b3165f2d17d
Implemented writeNetworkDictCallBack test in TestMasterSlave example. Fixed callback assignement race condition in sdo.c.
etisserant
parents:
149
diff
changeset
|
35 |
* - 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
|
36 |
* - 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
|
37 |
********************************************************/ |
0 | 38 |
void TestMaster_initialisation() |
39 |
{ |
|
154
1b3165f2d17d
Implemented writeNetworkDictCallBack test in TestMasterSlave example. Fixed callback assignement race condition in sdo.c.
etisserant
parents:
149
diff
changeset
|
40 |
UNS32 PDO1_COBID = 0x0182; |
1b3165f2d17d
Implemented writeNetworkDictCallBack test in TestMasterSlave example. Fixed callback assignement race condition in sdo.c.
etisserant
parents:
149
diff
changeset
|
41 |
UNS32 PDO2_COBID = 0x0282; |
1b3165f2d17d
Implemented writeNetworkDictCallBack test in TestMasterSlave example. Fixed callback assignement race condition in sdo.c.
etisserant
parents:
149
diff
changeset
|
42 |
UNS8 size = sizeof(UNS32); |
362 | 43 |
UNS32 SINC_cicle=0; |
44 |
UNS8 data_type = 0; |
|
179
763b6d32c1a6
Master configure slave's heartbeat producer time by concise DCF.
greg
parents:
175
diff
changeset
|
45 |
|
0 | 46 |
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
|
47 |
|
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 |
* 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
|
50 |
*****************************************/ |
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
|
51 |
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
|
52 |
0x1400, /*UNS16 index*/ |
1b3165f2d17d
Implemented writeNetworkDictCallBack test in TestMasterSlave example. Fixed callback assignement race condition in sdo.c.
etisserant
parents:
149
diff
changeset
|
53 |
0x01, /*UNS8 subind*/ |
1b3165f2d17d
Implemented writeNetworkDictCallBack test in TestMasterSlave example. Fixed callback assignement race condition in sdo.c.
etisserant
parents:
149
diff
changeset
|
54 |
&PDO1_COBID, /*void * pSourceData,*/ |
1b3165f2d17d
Implemented writeNetworkDictCallBack test in TestMasterSlave example. Fixed callback assignement race condition in sdo.c.
etisserant
parents:
149
diff
changeset
|
55 |
&size, /* UNS8 * pExpectedSize*/ |
1b3165f2d17d
Implemented writeNetworkDictCallBack test in TestMasterSlave example. Fixed callback assignement race condition in sdo.c.
etisserant
parents:
149
diff
changeset
|
56 |
RW); /* UNS8 checkAccess */ |
1b3165f2d17d
Implemented writeNetworkDictCallBack test in TestMasterSlave example. Fixed callback assignement race condition in sdo.c.
etisserant
parents:
149
diff
changeset
|
57 |
|
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
|
58 |
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
|
59 |
0x1401, /*UNS16 index*/ |
1b3165f2d17d
Implemented writeNetworkDictCallBack test in TestMasterSlave example. Fixed callback assignement race condition in sdo.c.
etisserant
parents:
149
diff
changeset
|
60 |
0x01, /*UNS8 subind*/ |
1b3165f2d17d
Implemented writeNetworkDictCallBack test in TestMasterSlave example. Fixed callback assignement race condition in sdo.c.
etisserant
parents:
149
diff
changeset
|
61 |
&PDO2_COBID, /*void * pSourceData,*/ |
1b3165f2d17d
Implemented writeNetworkDictCallBack test in TestMasterSlave example. Fixed callback assignement race condition in sdo.c.
etisserant
parents:
149
diff
changeset
|
62 |
&size, /* UNS8 * pExpectedSize*/ |
1b3165f2d17d
Implemented writeNetworkDictCallBack test in TestMasterSlave example. Fixed callback assignement race condition in sdo.c.
etisserant
parents:
149
diff
changeset
|
63 |
RW); /* UNS8 checkAccess */ |
362 | 64 |
|
154
1b3165f2d17d
Implemented writeNetworkDictCallBack test in TestMasterSlave example. Fixed callback assignement race condition in sdo.c.
etisserant
parents:
149
diff
changeset
|
65 |
} |
1b3165f2d17d
Implemented writeNetworkDictCallBack test in TestMasterSlave example. Fixed callback assignement race condition in sdo.c.
etisserant
parents:
149
diff
changeset
|
66 |
|
179
763b6d32c1a6
Master configure slave's heartbeat producer time by concise DCF.
greg
parents:
175
diff
changeset
|
67 |
// Step counts number of times ConfigureSlaveNode is called |
763b6d32c1a6
Master configure slave's heartbeat producer time by concise DCF.
greg
parents:
175
diff
changeset
|
68 |
static init_step = 0; |
763b6d32c1a6
Master configure slave's heartbeat producer time by concise DCF.
greg
parents:
175
diff
changeset
|
69 |
|
763b6d32c1a6
Master configure slave's heartbeat producer time by concise DCF.
greg
parents:
175
diff
changeset
|
70 |
/*Froward declaration*/ |
763b6d32c1a6
Master configure slave's heartbeat producer time by concise DCF.
greg
parents:
175
diff
changeset
|
71 |
static void ConfigureSlaveNode(CO_Data* d, UNS8 nodeId); |
763b6d32c1a6
Master configure slave's heartbeat producer time by concise DCF.
greg
parents:
175
diff
changeset
|
72 |
|
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 |
static void CheckSDOAndContinue(CO_Data* d, UNS8 nodeId) |
763b6d32c1a6
Master configure slave's heartbeat producer time by concise DCF.
greg
parents:
175
diff
changeset
|
75 |
{ |
763b6d32c1a6
Master configure slave's heartbeat producer time by concise DCF.
greg
parents:
175
diff
changeset
|
76 |
UNS32 abortCode; |
763b6d32c1a6
Master configure slave's heartbeat producer time by concise DCF.
greg
parents:
175
diff
changeset
|
77 |
if(getWriteResultNetworkDict (d, nodeId, &abortCode) != SDO_FINISHED) |
763b6d32c1a6
Master configure slave's heartbeat producer time by concise DCF.
greg
parents:
175
diff
changeset
|
78 |
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
|
79 |
|
763b6d32c1a6
Master configure slave's heartbeat producer time by concise DCF.
greg
parents:
175
diff
changeset
|
80 |
/* Finalise last SDO transfer with this node */ |
763b6d32c1a6
Master configure slave's heartbeat producer time by concise DCF.
greg
parents:
175
diff
changeset
|
81 |
closeSDOtransfer(&TestMaster_Data, nodeId, SDO_CLIENT); |
763b6d32c1a6
Master configure slave's heartbeat producer time by concise DCF.
greg
parents:
175
diff
changeset
|
82 |
|
763b6d32c1a6
Master configure slave's heartbeat producer time by concise DCF.
greg
parents:
175
diff
changeset
|
83 |
ConfigureSlaveNode(d, nodeId); |
763b6d32c1a6
Master configure slave's heartbeat producer time by concise DCF.
greg
parents:
175
diff
changeset
|
84 |
} |
763b6d32c1a6
Master configure slave's heartbeat producer time by concise DCF.
greg
parents:
175
diff
changeset
|
85 |
|
154
1b3165f2d17d
Implemented writeNetworkDictCallBack test in TestMasterSlave example. Fixed callback assignement race condition in sdo.c.
etisserant
parents:
149
diff
changeset
|
86 |
/******************************************************** |
1b3165f2d17d
Implemented writeNetworkDictCallBack test in TestMasterSlave example. Fixed callback assignement race condition in sdo.c.
etisserant
parents:
149
diff
changeset
|
87 |
* ConfigureSlaveNode is responsible to |
1b3165f2d17d
Implemented writeNetworkDictCallBack test in TestMasterSlave example. Fixed callback assignement race condition in sdo.c.
etisserant
parents:
149
diff
changeset
|
88 |
* - setup slave TPDO 1 transmit time |
1b3165f2d17d
Implemented writeNetworkDictCallBack test in TestMasterSlave example. Fixed callback assignement race condition in sdo.c.
etisserant
parents:
149
diff
changeset
|
89 |
* - setup slave TPDO 2 transmit time |
1b3165f2d17d
Implemented writeNetworkDictCallBack test in TestMasterSlave example. Fixed callback assignement race condition in sdo.c.
etisserant
parents:
149
diff
changeset
|
90 |
* - switch to operational mode |
1b3165f2d17d
Implemented writeNetworkDictCallBack test in TestMasterSlave example. Fixed callback assignement race condition in sdo.c.
etisserant
parents:
149
diff
changeset
|
91 |
* - send NMT to slave |
1b3165f2d17d
Implemented writeNetworkDictCallBack test in TestMasterSlave example. Fixed callback assignement race condition in sdo.c.
etisserant
parents:
149
diff
changeset
|
92 |
******************************************************** |
1b3165f2d17d
Implemented writeNetworkDictCallBack test in TestMasterSlave example. Fixed callback assignement race condition in sdo.c.
etisserant
parents:
149
diff
changeset
|
93 |
* This an example of : |
1b3165f2d17d
Implemented writeNetworkDictCallBack test in TestMasterSlave example. Fixed callback assignement race condition in sdo.c.
etisserant
parents:
149
diff
changeset
|
94 |
* 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
|
95 |
* 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
|
96 |
******************************************************** |
1b3165f2d17d
Implemented writeNetworkDictCallBack test in TestMasterSlave example. Fixed callback assignement race condition in sdo.c.
etisserant
parents:
149
diff
changeset
|
97 |
* This is called first by TestMaster_preOperational |
1b3165f2d17d
Implemented writeNetworkDictCallBack test in TestMasterSlave example. Fixed callback assignement race condition in sdo.c.
etisserant
parents:
149
diff
changeset
|
98 |
* 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
|
99 |
* finished. |
1b3165f2d17d
Implemented writeNetworkDictCallBack test in TestMasterSlave example. Fixed callback assignement race condition in sdo.c.
etisserant
parents:
149
diff
changeset
|
100 |
********************************************************/ |
179
763b6d32c1a6
Master configure slave's heartbeat producer time by concise DCF.
greg
parents:
175
diff
changeset
|
101 |
|
154
1b3165f2d17d
Implemented writeNetworkDictCallBack test in TestMasterSlave example. Fixed callback assignement race condition in sdo.c.
etisserant
parents:
149
diff
changeset
|
102 |
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
|
103 |
{ |
179
763b6d32c1a6
Master configure slave's heartbeat producer time by concise DCF.
greg
parents:
175
diff
changeset
|
104 |
/* Master configure heartbeat producer time at 1000 ms |
763b6d32c1a6
Master configure slave's heartbeat producer time by concise DCF.
greg
parents:
175
diff
changeset
|
105 |
* for slave node-id 0x02 by DCF concise */ |
763b6d32c1a6
Master configure slave's heartbeat producer time by concise DCF.
greg
parents:
175
diff
changeset
|
106 |
|
763b6d32c1a6
Master configure slave's heartbeat producer time by concise DCF.
greg
parents:
175
diff
changeset
|
107 |
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
|
108 |
UNS32 abortCode; |
1b3165f2d17d
Implemented writeNetworkDictCallBack test in TestMasterSlave example. Fixed callback assignement race condition in sdo.c.
etisserant
parents:
149
diff
changeset
|
109 |
UNS8 res; |
1b3165f2d17d
Implemented writeNetworkDictCallBack test in TestMasterSlave example. Fixed callback assignement race condition in sdo.c.
etisserant
parents:
149
diff
changeset
|
110 |
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
|
111 |
|
179
763b6d32c1a6
Master configure slave's heartbeat producer time by concise DCF.
greg
parents:
175
diff
changeset
|
112 |
switch(++init_step){ |
154
1b3165f2d17d
Implemented writeNetworkDictCallBack test in TestMasterSlave example. Fixed callback assignement race condition in sdo.c.
etisserant
parents:
149
diff
changeset
|
113 |
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
|
114 |
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
|
115 |
res = writeNetworkDictCallBack (d, /*CO_Data* d*/ |
179
763b6d32c1a6
Master configure slave's heartbeat producer time by concise DCF.
greg
parents:
175
diff
changeset
|
116 |
nodeId, /*UNS8 nodeId*/ |
154
1b3165f2d17d
Implemented writeNetworkDictCallBack test in TestMasterSlave example. Fixed callback assignement race condition in sdo.c.
etisserant
parents:
149
diff
changeset
|
117 |
0x1800, /*UNS16 index*/ |
1b3165f2d17d
Implemented writeNetworkDictCallBack test in TestMasterSlave example. Fixed callback assignement race condition in sdo.c.
etisserant
parents:
149
diff
changeset
|
118 |
0x02, /*UNS8 subindex*/ |
1b3165f2d17d
Implemented writeNetworkDictCallBack test in TestMasterSlave example. Fixed callback assignement race condition in sdo.c.
etisserant
parents:
149
diff
changeset
|
119 |
1, /*UNS8 count*/ |
1b3165f2d17d
Implemented writeNetworkDictCallBack test in TestMasterSlave example. Fixed callback assignement race condition in sdo.c.
etisserant
parents:
149
diff
changeset
|
120 |
0, /*UNS8 dataType*/ |
1b3165f2d17d
Implemented writeNetworkDictCallBack test in TestMasterSlave example. Fixed callback assignement race condition in sdo.c.
etisserant
parents:
149
diff
changeset
|
121 |
&Transmission_Type,/*void *data*/ |
179
763b6d32c1a6
Master configure slave's heartbeat producer time by concise DCF.
greg
parents:
175
diff
changeset
|
122 |
CheckSDOAndContinue); /*SDOCallback_t Callback*/ |
763b6d32c1a6
Master configure slave's heartbeat producer time by concise DCF.
greg
parents:
175
diff
changeset
|
123 |
break; |
763b6d32c1a6
Master configure slave's heartbeat producer time by concise DCF.
greg
parents:
175
diff
changeset
|
124 |
|
154
1b3165f2d17d
Implemented writeNetworkDictCallBack test in TestMasterSlave example. Fixed callback assignement race condition in sdo.c.
etisserant
parents:
149
diff
changeset
|
125 |
case 2: /*Second step*/ |
1b3165f2d17d
Implemented writeNetworkDictCallBack test in TestMasterSlave example. Fixed callback assignement race condition in sdo.c.
etisserant
parents:
149
diff
changeset
|
126 |
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
|
127 |
writeNetworkDictCallBack (d, /*CO_Data* d*/ |
179
763b6d32c1a6
Master configure slave's heartbeat producer time by concise DCF.
greg
parents:
175
diff
changeset
|
128 |
nodeId, /*UNS8 nodeId*/ |
154
1b3165f2d17d
Implemented writeNetworkDictCallBack test in TestMasterSlave example. Fixed callback assignement race condition in sdo.c.
etisserant
parents:
149
diff
changeset
|
129 |
0x1801, /*UNS16 index*/ |
1b3165f2d17d
Implemented writeNetworkDictCallBack test in TestMasterSlave example. Fixed callback assignement race condition in sdo.c.
etisserant
parents:
149
diff
changeset
|
130 |
0x02, /*UNS16 index*/ |
1b3165f2d17d
Implemented writeNetworkDictCallBack test in TestMasterSlave example. Fixed callback assignement race condition in sdo.c.
etisserant
parents:
149
diff
changeset
|
131 |
1, /*UNS8 count*/ |
1b3165f2d17d
Implemented writeNetworkDictCallBack test in TestMasterSlave example. Fixed callback assignement race condition in sdo.c.
etisserant
parents:
149
diff
changeset
|
132 |
0, /*UNS8 dataType*/ |
1b3165f2d17d
Implemented writeNetworkDictCallBack test in TestMasterSlave example. Fixed callback assignement race condition in sdo.c.
etisserant
parents:
149
diff
changeset
|
133 |
&Transmission_Type,/*void *data*/ |
179
763b6d32c1a6
Master configure slave's heartbeat producer time by concise DCF.
greg
parents:
175
diff
changeset
|
134 |
CheckSDOAndContinue); /*SDOCallback_t Callback*/ |
763b6d32c1a6
Master configure slave's heartbeat producer time by concise DCF.
greg
parents:
175
diff
changeset
|
135 |
break; |
763b6d32c1a6
Master configure slave's heartbeat producer time by concise DCF.
greg
parents:
175
diff
changeset
|
136 |
case 3: |
763b6d32c1a6
Master configure slave's heartbeat producer time by concise DCF.
greg
parents:
175
diff
changeset
|
137 |
|
763b6d32c1a6
Master configure slave's heartbeat producer time by concise DCF.
greg
parents:
175
diff
changeset
|
138 |
/****************************** START *******************************/ |
763b6d32c1a6
Master configure slave's heartbeat producer time by concise DCF.
greg
parents:
175
diff
changeset
|
139 |
|
154
1b3165f2d17d
Implemented writeNetworkDictCallBack test in TestMasterSlave example. Fixed callback assignement race condition in sdo.c.
etisserant
parents:
149
diff
changeset
|
140 |
/* 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
|
141 |
setState(d, Operational); |
179
763b6d32c1a6
Master configure slave's heartbeat producer time by concise DCF.
greg
parents:
175
diff
changeset
|
142 |
|
154
1b3165f2d17d
Implemented writeNetworkDictCallBack test in TestMasterSlave example. Fixed callback assignement race condition in sdo.c.
etisserant
parents:
149
diff
changeset
|
143 |
/* 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
|
144 |
masterSendNMTstateChange (d, nodeId, NMT_Start_Node); |
179
763b6d32c1a6
Master configure slave's heartbeat producer time by concise DCF.
greg
parents:
175
diff
changeset
|
145 |
|
154
1b3165f2d17d
Implemented writeNetworkDictCallBack test in TestMasterSlave example. Fixed callback assignement race condition in sdo.c.
etisserant
parents:
149
diff
changeset
|
146 |
} |
0 | 147 |
} |
148 |
||
343 | 149 |
#ifdef CO_ENABLE_LSS |
150 |
static void ConfigureLSSNode(CO_Data* d); |
|
362 | 151 |
// Step counts number of times ConfigureLSSNode is called |
343 | 152 |
UNS8 init_step_LSS=1; |
153 |
||
154 |
static void CheckLSSAndContinue(CO_Data* d, UNS8 command) |
|
155 |
{ |
|
156 |
UNS32 dat1; |
|
157 |
UNS8 dat2; |
|
158 |
printf("CheckLSS->"); |
|
159 |
if(getConfigResultNetworkNode (d, command, &dat1, &dat2) != LSS_FINISHED){ |
|
362 | 160 |
if(command==LSS_IDENT_REMOTE_NON_CONF){ |
343 | 161 |
eprintf("Master : There are not no-configured slaves in the net\n", command); |
162 |
return; |
|
163 |
} |
|
164 |
else{ |
|
165 |
eprintf("Master : Failed in LSS comand %d. Trying again\n", command); |
|
166 |
} |
|
167 |
} |
|
168 |
else |
|
169 |
{ |
|
170 |
init_step_LSS++; |
|
171 |
||
172 |
switch(command){ |
|
173 |
case LSS_CONF_NODE_ID: |
|
174 |
switch(dat1){ |
|
175 |
case 0: printf("Node ID change succesful\n");break; |
|
176 |
case 1: printf("Node ID change error:out of range\n");break; |
|
177 |
case 0xFF:printf("Node ID change error:specific error\n");break; |
|
178 |
default:break; |
|
179 |
} |
|
180 |
break; |
|
181 |
case LSS_CONF_BIT_TIMING: |
|
182 |
switch(dat1){ |
|
183 |
case 0: printf("Baud rate change succesful\n");break; |
|
184 |
case 1: printf("Baud rate change error: change baud rate not supported\n");break; |
|
185 |
case 0xFF:printf("Baud rate change error:specific error\n");break; |
|
186 |
default:break; |
|
187 |
} |
|
188 |
break; |
|
189 |
case LSS_CONF_STORE: |
|
190 |
switch(dat1){ |
|
191 |
case 0: printf("Store configuration succesful\n");break; |
|
192 |
case 1: printf("Store configuration error:not supported\n");break; |
|
193 |
case 0xFF:printf("Store configuration error:specific error\n");break; |
|
194 |
default:break; |
|
195 |
} |
|
196 |
break; |
|
362 | 197 |
case LSS_SM_SELECTIVE_SERIAL: |
343 | 198 |
printf("Slave in CONFIGURATION mode\n"); |
199 |
break; |
|
362 | 200 |
case LSS_IDENT_REMOTE_SERIAL_HIGH: |
343 | 201 |
printf("node identified\n"); |
202 |
break; |
|
362 | 203 |
case LSS_IDENT_REMOTE_NON_CONF: |
343 | 204 |
printf("non-configured remote slave in the net\n"); |
205 |
break; |
|
206 |
case LSS_INQ_VENDOR_ID: |
|
207 |
printf("Slave VendorID %x\n", dat1); |
|
208 |
break; |
|
209 |
case LSS_INQ_PRODUCT_CODE: |
|
210 |
printf("Slave Product Code %x\n", dat1); |
|
211 |
break; |
|
212 |
case LSS_INQ_REV_NUMBER: |
|
213 |
printf("Slave Revision Number %x\n", dat1); |
|
214 |
break; |
|
215 |
case LSS_INQ_SERIAL_NUMBER: |
|
216 |
printf("Slave Serial Number %x\n", dat1); |
|
217 |
break; |
|
218 |
case LSS_INQ_NODE_ID: |
|
219 |
printf("Slave nodeid %x\n", dat1); |
|
220 |
break; |
|
362 | 221 |
#ifdef CO_ENABLE_LSS_FS |
222 |
case LSS_IDENT_FASTSCAN: |
|
223 |
if(dat1==0) |
|
224 |
printf("Slave node identified with FastScan\n"); |
|
225 |
else |
|
226 |
{ |
|
227 |
printf("There is not unconfigured node in the net\n"); |
|
228 |
return; |
|
229 |
} |
|
230 |
init_step_LSS++; |
|
231 |
break; |
|
232 |
#endif |
|
343 | 233 |
} |
234 |
} |
|
235 |
||
236 |
printf("\n"); |
|
237 |
ConfigureLSSNode(d); |
|
238 |
} |
|
239 |
||
240 |
||
362 | 241 |
/* First ask if there is a node with an invalid nodeID. |
242 |
* If FastScan is activated it is used to put the node in the state “configuration”. |
|
243 |
* If FastScan is not activated, identification services are used to identify the node. |
|
244 |
* Then switch mode service is used to put it in configuration state. |
|
245 |
* Next all the inquire and configuration services are used. |
|
246 |
* Finally, the node LSS state is restored to “waiting” and all the process is repeated |
|
247 |
* again until there isn't any node with a invalid nodeID. |
|
248 |
* */ |
|
343 | 249 |
static void ConfigureLSSNode(CO_Data* d) |
250 |
{ |
|
251 |
UNS32 Vendor_ID=0x12345678; |
|
252 |
UNS32 Product_Code=0x90123456; |
|
253 |
UNS32 Revision_Number=0x78901234; |
|
254 |
UNS32 Serial_Number=0x56789012; |
|
255 |
UNS32 Revision_Number_high=0x78901240; |
|
256 |
UNS32 Revision_Number_low=0x78901230; |
|
257 |
UNS32 Serial_Number_high=0x56789020; |
|
258 |
UNS32 Serial_Number_low=0x56789010; |
|
259 |
UNS8 NodeID=0x02; |
|
260 |
UNS8 Baud_Table=0; |
|
261 |
UNS8 Baud_BitTiming=3; |
|
262 |
UNS16 Switch_delay=1; |
|
263 |
UNS8 LSS_mode=LSS_WAITING_MODE; |
|
264 |
UNS8 res; |
|
362 | 265 |
eprintf("ConfigureLSSNode -> ",0); |
343 | 266 |
|
267 |
switch(init_step_LSS){ |
|
268 |
case 1: /* LSS=>identify non-configured remote slave */ |
|
269 |
eprintf("LSS=>identify non-configured remote slave\n"); |
|
270 |
res=configNetworkNodeCallBack(&TestMaster_Data,LSS_IDENT_REMOTE_NON_CONF,0,0,CheckLSSAndContinue); |
|
271 |
break; |
|
362 | 272 |
#ifdef CO_ENABLE_LSS_FS |
273 |
case 2: /* LSS=>FastScan */ |
|
274 |
eprintf("LSS=>FastScan\n"); |
|
275 |
res=configNetworkNodeCallBack(&TestMaster_Data,LSS_IDENT_FASTSCAN,0,0,CheckLSSAndContinue); |
|
276 |
break; |
|
277 |
#else |
|
343 | 278 |
case 2: /* LSS=>identify node */ |
279 |
eprintf("LSS=>identify node\n"); |
|
280 |
res=configNetworkNode(&TestMaster_Data,LSS_IDENT_REMOTE_VENDOR,&Vendor_ID,0); |
|
281 |
res=configNetworkNode(&TestMaster_Data,LSS_IDENT_REMOTE_PRODUCT,&Product_Code,0); |
|
282 |
res=configNetworkNode(&TestMaster_Data,LSS_IDENT_REMOTE_REV_LOW,&Revision_Number_low,0); |
|
283 |
res=configNetworkNode(&TestMaster_Data,LSS_IDENT_REMOTE_REV_HIGH,&Revision_Number_high,0); |
|
284 |
res=configNetworkNode(&TestMaster_Data,LSS_IDENT_REMOTE_SERIAL_LOW,&Serial_Number_low,0); |
|
285 |
res=configNetworkNodeCallBack(&TestMaster_Data,LSS_IDENT_REMOTE_SERIAL_HIGH,&Serial_Number_high,0,CheckLSSAndContinue); |
|
286 |
break; |
|
362 | 287 |
case 3: /*LSS=>put in configuration mode*/ |
343 | 288 |
eprintf("LSS=>put in configuration mode\n"); |
289 |
res=configNetworkNode(&TestMaster_Data,LSS_SM_SELECTIVE_VENDOR,&Vendor_ID,0); |
|
290 |
res=configNetworkNode(&TestMaster_Data,LSS_SM_SELECTIVE_PRODUCT,&Product_Code,0); |
|
291 |
res=configNetworkNode(&TestMaster_Data,LSS_SM_SELECTIVE_REVISION,&Revision_Number,0); |
|
292 |
res=configNetworkNodeCallBack(&TestMaster_Data,LSS_SM_SELECTIVE_SERIAL,&Serial_Number,0,CheckLSSAndContinue); |
|
293 |
break; |
|
362 | 294 |
#endif |
343 | 295 |
case 4: /* LSS=>inquire nodeID */ |
296 |
eprintf("LSS=>inquire nodeID\n"); |
|
297 |
res=configNetworkNodeCallBack(&TestMaster_Data,LSS_INQ_NODE_ID,0,0,CheckLSSAndContinue); |
|
298 |
break; |
|
299 |
case 5: /* LSS=>inquire VendorID */ |
|
300 |
eprintf("LSS=>inquire VendorID\n"); |
|
301 |
res=configNetworkNodeCallBack(&TestMaster_Data,LSS_INQ_VENDOR_ID,0,0,CheckLSSAndContinue); |
|
302 |
break; |
|
303 |
case 6: /* LSS=>inquire Product code */ |
|
304 |
eprintf("LSS=>inquire Product code\n"); |
|
305 |
res=configNetworkNodeCallBack(&TestMaster_Data,LSS_INQ_PRODUCT_CODE,0,0,CheckLSSAndContinue); |
|
306 |
break; |
|
307 |
case 7: /* LSS=>inquire Revision Number */ |
|
308 |
eprintf("LSS=>inquire Revision Number\n"); |
|
309 |
res=configNetworkNodeCallBack(&TestMaster_Data,LSS_INQ_REV_NUMBER,0,0,CheckLSSAndContinue); |
|
310 |
break; |
|
311 |
case 8: /* LSS=>inquire Serial Number */ |
|
312 |
eprintf("LSS=>inquire Serial Number\n"); |
|
313 |
res=configNetworkNodeCallBack(&TestMaster_Data,LSS_INQ_SERIAL_NUMBER,0,0,CheckLSSAndContinue); |
|
314 |
break; |
|
315 |
case 9: /* LSS=>change the nodeID */ |
|
316 |
eprintf("LSS=>change the nodeId\n"); |
|
317 |
res=configNetworkNodeCallBack(&TestMaster_Data,LSS_CONF_NODE_ID,&NodeID,0,CheckLSSAndContinue); |
|
318 |
break; |
|
319 |
case 10: /* LSS=>change the Baud rate */ |
|
320 |
eprintf("LSS=>change the Baud rate\n"); |
|
321 |
res=configNetworkNodeCallBack(&TestMaster_Data,LSS_CONF_BIT_TIMING,&Baud_Table,&Baud_BitTiming,CheckLSSAndContinue); |
|
322 |
break; |
|
323 |
case 11: |
|
324 |
eprintf("LSS=>Activate Bit Timing\n"); |
|
325 |
res=configNetworkNode(&TestMaster_Data,LSS_CONF_ACT_BIT_TIMING,&Switch_delay,0); |
|
326 |
/*no break;*/ |
|
327 |
init_step_LSS++; |
|
328 |
case 12: |
|
329 |
/*LSS=>store configuration*/ |
|
330 |
/* It will fail the first time (time out) due to the switch delay */ |
|
331 |
/* It will fail the second time because it is not implemented in the slave */ |
|
332 |
eprintf("LSS=>store configuration\n"); |
|
333 |
res=configNetworkNodeCallBack(&TestMaster_Data,LSS_CONF_STORE,0,0,CheckLSSAndContinue); |
|
334 |
break; |
|
335 |
case 13: /* LSS=>put in operation mod */ |
|
336 |
eprintf("LSS=>put in operation mode\n"); |
|
337 |
res=configNetworkNode(&TestMaster_Data,LSS_SM_GLOBAL,&LSS_mode,0); |
|
362 | 338 |
/* Search again for not-configured slaves*/ |
339 |
eprintf("LSS=>identify not-configured remote slave\n"); |
|
340 |
res=configNetworkNodeCallBack(&TestMaster_Data,LSS_IDENT_REMOTE_NON_CONF,0,0,CheckLSSAndContinue); |
|
341 |
init_step_LSS=1; |
|
343 | 342 |
break; |
343 |
} |
|
344 |
} |
|
345 |
#endif |
|
346 |
||
0 | 347 |
void TestMaster_preOperational() |
348 |
{ |
|
349 |
eprintf("TestMaster_preOperational\n"); |
|
343 | 350 |
#ifdef CO_ENABLE_LSS |
351 |
/* Ask slave node to go in stop mode */ |
|
352 |
masterSendNMTstateChange (&TestMaster_Data, 0, NMT_Stop_Node); |
|
353 |
ConfigureLSSNode(&TestMaster_Data); |
|
354 |
#endif |
|
0 | 355 |
} |
356 |
||
357 |
void TestMaster_operational() |
|
358 |
{ |
|
359 |
eprintf("TestMaster_operational\n"); |
|
360 |
} |
|
361 |
||
362 |
void TestMaster_stopped() |
|
363 |
{ |
|
364 |
eprintf("TestMaster_stopped\n"); |
|
365 |
} |
|
366 |
||
367 |
void TestMaster_post_sync() |
|
368 |
{ |
|
369 |
eprintf("TestMaster_post_sync\n"); |
|
236
905677ed00f3
Full preliminary implementation of TPDO transmit type:
etisserant
parents:
201
diff
changeset
|
370 |
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
|
371 |
MasterMap1, |
905677ed00f3
Full preliminary implementation of TPDO transmit type:
etisserant
parents:
201
diff
changeset
|
372 |
MasterMap2, |
905677ed00f3
Full preliminary implementation of TPDO transmit type:
etisserant
parents:
201
diff
changeset
|
373 |
MasterMap3, |
905677ed00f3
Full preliminary implementation of TPDO transmit type:
etisserant
parents:
201
diff
changeset
|
374 |
MasterMap4, |
905677ed00f3
Full preliminary implementation of TPDO transmit type:
etisserant
parents:
201
diff
changeset
|
375 |
MasterMap5, |
905677ed00f3
Full preliminary implementation of TPDO transmit type:
etisserant
parents:
201
diff
changeset
|
376 |
MasterMap6, |
905677ed00f3
Full preliminary implementation of TPDO transmit type:
etisserant
parents:
201
diff
changeset
|
377 |
MasterMap7, |
905677ed00f3
Full preliminary implementation of TPDO transmit type:
etisserant
parents:
201
diff
changeset
|
378 |
MasterMap8, |
905677ed00f3
Full preliminary implementation of TPDO transmit type:
etisserant
parents:
201
diff
changeset
|
379 |
MasterMap9, |
905677ed00f3
Full preliminary implementation of TPDO transmit type:
etisserant
parents:
201
diff
changeset
|
380 |
MasterMap10, |
905677ed00f3
Full preliminary implementation of TPDO transmit type:
etisserant
parents:
201
diff
changeset
|
381 |
MasterMap11, |
905677ed00f3
Full preliminary implementation of TPDO transmit type:
etisserant
parents:
201
diff
changeset
|
382 |
MasterMap12, |
905677ed00f3
Full preliminary implementation of TPDO transmit type:
etisserant
parents:
201
diff
changeset
|
383 |
MasterMap13); |
0 | 384 |
} |
385 |
||
284 | 386 |
void TestMaster_post_emcy(UNS8 nodeID, UNS16 errCode, UNS8 errReg) |
387 |
{ |
|
388 |
eprintf("Master received EMCY message. Node: %2.2x ErrorCode: %4.4x ErrorRegister: %2.2x\n", nodeID, errCode, errReg); |
|
389 |
} |
|
390 |
||
0 | 391 |
char query_result = 0; |
392 |
char waiting_answer = 0; |
|
393 |
||
236
905677ed00f3
Full preliminary implementation of TPDO transmit type:
etisserant
parents:
201
diff
changeset
|
394 |
static void CheckSDO(CO_Data* d, UNS8 nodeId) |
905677ed00f3
Full preliminary implementation of TPDO transmit type:
etisserant
parents:
201
diff
changeset
|
395 |
{ |
905677ed00f3
Full preliminary implementation of TPDO transmit type:
etisserant
parents:
201
diff
changeset
|
396 |
UNS32 abortCode; |
905677ed00f3
Full preliminary implementation of TPDO transmit type:
etisserant
parents:
201
diff
changeset
|
397 |
if(getWriteResultNetworkDict (d, nodeId, &abortCode) != SDO_FINISHED) |
905677ed00f3
Full preliminary implementation of TPDO transmit type:
etisserant
parents:
201
diff
changeset
|
398 |
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
|
399 |
|
905677ed00f3
Full preliminary implementation of TPDO transmit type:
etisserant
parents:
201
diff
changeset
|
400 |
/* Finalise last SDO transfer with this node */ |
905677ed00f3
Full preliminary implementation of TPDO transmit type:
etisserant
parents:
201
diff
changeset
|
401 |
closeSDOtransfer(&TestMaster_Data, nodeId, SDO_CLIENT); |
905677ed00f3
Full preliminary implementation of TPDO transmit type:
etisserant
parents:
201
diff
changeset
|
402 |
} |
905677ed00f3
Full preliminary implementation of TPDO transmit type:
etisserant
parents:
201
diff
changeset
|
403 |
|
905677ed00f3
Full preliminary implementation of TPDO transmit type:
etisserant
parents:
201
diff
changeset
|
404 |
|
905677ed00f3
Full preliminary implementation of TPDO transmit type:
etisserant
parents:
201
diff
changeset
|
405 |
static int MasterSyncCount = 0; |
0 | 406 |
void TestMaster_post_TPDO() |
407 |
{ |
|
236
905677ed00f3
Full preliminary implementation of TPDO transmit type:
etisserant
parents:
201
diff
changeset
|
408 |
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
|
409 |
// |
0 | 410 |
// { |
411 |
// char zero = 0; |
|
412 |
// if(MasterMap4 > 0x80){ |
|
413 |
// writeNetworkDict ( |
|
414 |
// &TestMaster_Data, |
|
415 |
// TestSlave_Data->bDeviceNodeId, |
|
416 |
// 0x2002, |
|
417 |
// 0x00, |
|
418 |
// 1, |
|
419 |
// 0, |
|
420 |
// &zero); |
|
421 |
// } |
|
422 |
// } |
|
423 |
||
236
905677ed00f3
Full preliminary implementation of TPDO transmit type:
etisserant
parents:
201
diff
changeset
|
424 |
#if 0 |
0 | 425 |
if(waiting_answer){ |
426 |
UNS32 abortCode; |
|
427 |
UNS8 size; |
|
428 |
switch(getReadResultNetworkDict ( |
|
429 |
&TestMaster_Data, |
|
201 | 430 |
0x02, |
0 | 431 |
&query_result, |
432 |
&size, |
|
433 |
&abortCode)) |
|
434 |
{ |
|
435 |
case SDO_FINISHED: |
|
436 |
/* Do something with result here !!*/ |
|
437 |
eprintf("Got SDO answer (0x2002, 0x00), %d %d\n",query_result,size); |
|
438 |
case SDO_ABORTED_RCV: |
|
439 |
case SDO_ABORTED_INTERNAL: |
|
440 |
case SDO_RESET: |
|
441 |
waiting_answer = 0; |
|
442 |
closeSDOtransfer( |
|
443 |
&TestMaster_Data, |
|
201 | 444 |
0x02, |
0 | 445 |
SDO_CLIENT); |
446 |
break; |
|
447 |
case SDO_DOWNLOAD_IN_PROGRESS: |
|
448 |
case SDO_UPLOAD_IN_PROGRESS: |
|
449 |
break; |
|
450 |
} |
|
236
905677ed00f3
Full preliminary implementation of TPDO transmit type:
etisserant
parents:
201
diff
changeset
|
451 |
}else if(MasterSyncCount % 10 == 0){ |
0 | 452 |
readNetworkDict ( |
453 |
&TestMaster_Data, |
|
201 | 454 |
0x02, |
0 | 455 |
0x2002, |
456 |
0x00, |
|
457 |
0); |
|
458 |
waiting_answer = 1; |
|
459 |
} |
|
236
905677ed00f3
Full preliminary implementation of TPDO transmit type:
etisserant
parents:
201
diff
changeset
|
460 |
#endif |
905677ed00f3
Full preliminary implementation of TPDO transmit type:
etisserant
parents:
201
diff
changeset
|
461 |
if(MasterSyncCount % 17 == 0){ |
905677ed00f3
Full preliminary implementation of TPDO transmit type:
etisserant
parents:
201
diff
changeset
|
462 |
eprintf("Master : Ask RTR PDO (0x1402)\n"); |
905677ed00f3
Full preliminary implementation of TPDO transmit type:
etisserant
parents:
201
diff
changeset
|
463 |
sendPDOrequest(&TestMaster_Data, 0x1402 ); |
905677ed00f3
Full preliminary implementation of TPDO transmit type:
etisserant
parents:
201
diff
changeset
|
464 |
sendPDOrequest(&TestMaster_Data, 0x1403 ); |
905677ed00f3
Full preliminary implementation of TPDO transmit type:
etisserant
parents:
201
diff
changeset
|
465 |
} |
905677ed00f3
Full preliminary implementation of TPDO transmit type:
etisserant
parents:
201
diff
changeset
|
466 |
if(MasterSyncCount % 50 == 0){ |
905677ed00f3
Full preliminary implementation of TPDO transmit type:
etisserant
parents:
201
diff
changeset
|
467 |
eprintf("Master : Change slave's transmit type to 0xFF\n"); |
905677ed00f3
Full preliminary implementation of TPDO transmit type:
etisserant
parents:
201
diff
changeset
|
468 |
UNS8 transmitiontype = 0xFF; |
905677ed00f3
Full preliminary implementation of TPDO transmit type:
etisserant
parents:
201
diff
changeset
|
469 |
writeNetworkDictCallBack (&TestMaster_Data, /*CO_Data* d*/ |
905677ed00f3
Full preliminary implementation of TPDO transmit type:
etisserant
parents:
201
diff
changeset
|
470 |
2, /*UNS8 nodeId*/ |
905677ed00f3
Full preliminary implementation of TPDO transmit type:
etisserant
parents:
201
diff
changeset
|
471 |
0x1802, /*UNS16 index*/ |
905677ed00f3
Full preliminary implementation of TPDO transmit type:
etisserant
parents:
201
diff
changeset
|
472 |
0x02, /*UNS16 index*/ |
905677ed00f3
Full preliminary implementation of TPDO transmit type:
etisserant
parents:
201
diff
changeset
|
473 |
1, /*UNS8 count*/ |
905677ed00f3
Full preliminary implementation of TPDO transmit type:
etisserant
parents:
201
diff
changeset
|
474 |
0, /*UNS8 dataType*/ |
905677ed00f3
Full preliminary implementation of TPDO transmit type:
etisserant
parents:
201
diff
changeset
|
475 |
&transmitiontype,/*void *data*/ |
905677ed00f3
Full preliminary implementation of TPDO transmit type:
etisserant
parents:
201
diff
changeset
|
476 |
CheckSDO); /*SDOCallback_t Callback*/ |
905677ed00f3
Full preliminary implementation of TPDO transmit type:
etisserant
parents:
201
diff
changeset
|
477 |
} |
905677ed00f3
Full preliminary implementation of TPDO transmit type:
etisserant
parents:
201
diff
changeset
|
478 |
if(MasterSyncCount % 50 == 25){ |
905677ed00f3
Full preliminary implementation of TPDO transmit type:
etisserant
parents:
201
diff
changeset
|
479 |
eprintf("Master : Change slave's transmit type to 0x00\n"); |
905677ed00f3
Full preliminary implementation of TPDO transmit type:
etisserant
parents:
201
diff
changeset
|
480 |
UNS8 transmitiontype = 0x00; |
905677ed00f3
Full preliminary implementation of TPDO transmit type:
etisserant
parents:
201
diff
changeset
|
481 |
writeNetworkDictCallBack (&TestMaster_Data, /*CO_Data* d*/ |
905677ed00f3
Full preliminary implementation of TPDO transmit type:
etisserant
parents:
201
diff
changeset
|
482 |
2, /*UNS8 nodeId*/ |
905677ed00f3
Full preliminary implementation of TPDO transmit type:
etisserant
parents:
201
diff
changeset
|
483 |
0x1802, /*UNS16 index*/ |
905677ed00f3
Full preliminary implementation of TPDO transmit type:
etisserant
parents:
201
diff
changeset
|
484 |
0x02, /*UNS16 index*/ |
905677ed00f3
Full preliminary implementation of TPDO transmit type:
etisserant
parents:
201
diff
changeset
|
485 |
1, /*UNS8 count*/ |
905677ed00f3
Full preliminary implementation of TPDO transmit type:
etisserant
parents:
201
diff
changeset
|
486 |
0, /*UNS8 dataType*/ |
905677ed00f3
Full preliminary implementation of TPDO transmit type:
etisserant
parents:
201
diff
changeset
|
487 |
&transmitiontype,/*void *data*/ |
905677ed00f3
Full preliminary implementation of TPDO transmit type:
etisserant
parents:
201
diff
changeset
|
488 |
CheckSDO); /*SDOCallback_t Callback*/ |
905677ed00f3
Full preliminary implementation of TPDO transmit type:
etisserant
parents:
201
diff
changeset
|
489 |
} |
905677ed00f3
Full preliminary implementation of TPDO transmit type:
etisserant
parents:
201
diff
changeset
|
490 |
MasterSyncCount++; |
905677ed00f3
Full preliminary implementation of TPDO transmit type:
etisserant
parents:
201
diff
changeset
|
491 |
} |
343 | 492 |
|
493 |
void TestMaster_post_SlaveBootup(UNS8 nodeid) |
|
494 |
{ |
|
495 |
eprintf("TestMaster_post_SlaveBootup %x\n", nodeid); |
|
362 | 496 |
|
343 | 497 |
ConfigureSlaveNode(&TestMaster_Data, nodeid); |
362 | 498 |
} |
499 |