author | etisserant |
Sun, 09 Dec 2007 15:43:39 +0100 | |
changeset 331 | da55aa2f9e64 |
parent 296 | 03f2b8b8cb0b |
child 343 | 118c1cabd0b0 |
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 "Slave.h" |
|
24 |
#include "Master.h" |
|
25 |
#include "TestMasterSlave.h" |
|
26 |
||
27 |
/*****************************************************************************/ |
|
28 |
void TestSlave_heartbeatError(UNS8 heartbeatID) |
|
29 |
{ |
|
30 |
eprintf("TestSlave_heartbeatError %d\n", heartbeatID); |
|
31 |
} |
|
32 |
||
33 |
void TestSlave_initialisation() |
|
34 |
{ |
|
35 |
eprintf("TestSlave_initialisation\n"); |
|
36 |
} |
|
37 |
||
38 |
void TestSlave_preOperational() |
|
39 |
{ |
|
40 |
eprintf("TestSlave_preOperational\n"); |
|
41 |
} |
|
42 |
||
43 |
void TestSlave_operational() |
|
44 |
{ |
|
45 |
eprintf("TestSlave_operational\n"); |
|
46 |
} |
|
47 |
||
48 |
void TestSlave_stopped() |
|
49 |
{ |
|
50 |
eprintf("TestSlave_stopped\n"); |
|
51 |
} |
|
52 |
||
53 |
void TestSlave_post_sync() |
|
54 |
{ |
|
55 |
eprintf("TestSlave_post_sync\n"); |
|
201 | 56 |
|
57 |
SlaveMap1=1; |
|
58 |
SlaveMap2=1; |
|
59 |
SlaveMap3=0; |
|
60 |
SlaveMap4=0; |
|
61 |
SlaveMap5=1; |
|
62 |
SlaveMap6=0; |
|
63 |
SlaveMap7=1; |
|
64 |
SlaveMap8=0; |
|
65 |
SlaveMap9=16; |
|
66 |
SlaveMap10 = 0xff00ff00; |
|
67 |
SlaveMap11 = 0xabcd; |
|
236
905677ed00f3
Full preliminary implementation of TPDO transmit type:
etisserant
parents:
201
diff
changeset
|
68 |
SlaveMap12 += SlaveMap12 > 0x80 ? 0 : 1; |
905677ed00f3
Full preliminary implementation of TPDO transmit type:
etisserant
parents:
201
diff
changeset
|
69 |
eprintf("Slave: %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
|
70 |
SlaveMap1, |
905677ed00f3
Full preliminary implementation of TPDO transmit type:
etisserant
parents:
201
diff
changeset
|
71 |
SlaveMap2, |
905677ed00f3
Full preliminary implementation of TPDO transmit type:
etisserant
parents:
201
diff
changeset
|
72 |
SlaveMap3, |
905677ed00f3
Full preliminary implementation of TPDO transmit type:
etisserant
parents:
201
diff
changeset
|
73 |
SlaveMap4, |
905677ed00f3
Full preliminary implementation of TPDO transmit type:
etisserant
parents:
201
diff
changeset
|
74 |
SlaveMap5, |
905677ed00f3
Full preliminary implementation of TPDO transmit type:
etisserant
parents:
201
diff
changeset
|
75 |
SlaveMap6, |
905677ed00f3
Full preliminary implementation of TPDO transmit type:
etisserant
parents:
201
diff
changeset
|
76 |
SlaveMap7, |
905677ed00f3
Full preliminary implementation of TPDO transmit type:
etisserant
parents:
201
diff
changeset
|
77 |
SlaveMap8, |
905677ed00f3
Full preliminary implementation of TPDO transmit type:
etisserant
parents:
201
diff
changeset
|
78 |
SlaveMap9, |
905677ed00f3
Full preliminary implementation of TPDO transmit type:
etisserant
parents:
201
diff
changeset
|
79 |
SlaveMap10, |
905677ed00f3
Full preliminary implementation of TPDO transmit type:
etisserant
parents:
201
diff
changeset
|
80 |
SlaveMap11, |
905677ed00f3
Full preliminary implementation of TPDO transmit type:
etisserant
parents:
201
diff
changeset
|
81 |
SlaveMap12, |
905677ed00f3
Full preliminary implementation of TPDO transmit type:
etisserant
parents:
201
diff
changeset
|
82 |
SlaveMap13); |
0 | 83 |
} |
84 |
||
85 |
void TestSlave_post_TPDO() |
|
86 |
{ |
|
236
905677ed00f3
Full preliminary implementation of TPDO transmit type:
etisserant
parents:
201
diff
changeset
|
87 |
SlaveMap13 += 1; |
0 | 88 |
eprintf("TestSlave_post_TPDO\n"); |
284 | 89 |
|
90 |
/* send an error and recover inmediately every 12 cycles */ |
|
91 |
if(SlaveMap13 % 12 == 0) |
|
92 |
{ |
|
296
03f2b8b8cb0b
Solved a small bug in emcy.c (errRegMask was always '1' in EMCY_setError.
luis
parents:
284
diff
changeset
|
93 |
EMCY_setError(&TestSlave_Data, 0x4200, 0x08, 0x0000); |
284 | 94 |
EMCY_errorRecovered(&TestSlave_Data, 0x4200); |
95 |
} |
|
0 | 96 |
} |
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
|
97 |
|
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
|
98 |
void TestSlave_storeODSubIndex(UNS16 wIndex, UNS8 bSubindex) |
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
|
99 |
{ |
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
|
100 |
/*TODO : |
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
|
101 |
* - call getODEntry for index and subindex, |
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
|
102 |
* - save content to file, database, flash, nvram, ... |
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
|
103 |
* |
c4908cc776a9
SetODEntry now call CO_data->storeODSubEntry(Index,SubIndex) for variables to be Stored (when column Save==True in GUI)
etisserant
parents:
149
diff
changeset
|
104 |
* To ease flash organisation, index of variable to store |
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
|
105 |
* can be established by scanning d->objdict[d->ObjdictSize] |
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
|
106 |
* for variables to store. |
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
|
107 |
* |
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
|
108 |
* */ |
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
|
109 |
eprintf("TestSlave_storeODSubIndex : %4.4x %2.2x\n", wIndex, bSubindex); |
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
|
110 |
} |
284 | 111 |
|
112 |
void TestSlave_post_emcy(UNS8 nodeID, UNS16 errCode, UNS8 errReg) |
|
113 |
{ |
|
114 |
eprintf("Slave received EMCY message. Node: %2.2x ErrorCode: %4.4x ErrorRegister: %2.2x\n", nodeID, errCode, errReg); |
|
115 |
} |