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 |
/*****************************************************************************/
|
|
34 |
void TestSlave_SDOtimeoutError (UNS8 line)
|
|
35 |
{
|
|
36 |
eprintf("TestSlave_SDOtimeoutError %d\n", line);
|
|
37 |
}
|
|
38 |
|
|
39 |
/*****************************************************************************/
|
|
40 |
UNS8 TestSlave_canSend(Message *m)
|
|
41 |
{
|
|
42 |
eprintf("S->M ");
|
|
43 |
print_message(m);
|
|
44 |
canSend(SlaveCanHandle, m);
|
|
45 |
return 0;
|
|
46 |
}
|
|
47 |
|
|
48 |
void TestSlave_initialisation()
|
|
49 |
{
|
|
50 |
eprintf("TestSlave_initialisation\n");
|
|
51 |
}
|
|
52 |
|
|
53 |
void TestSlave_preOperational()
|
|
54 |
{
|
|
55 |
eprintf("TestSlave_preOperational\n");
|
|
56 |
}
|
|
57 |
|
|
58 |
void TestSlave_operational()
|
|
59 |
{
|
|
60 |
eprintf("TestSlave_operational\n");
|
|
61 |
}
|
|
62 |
|
|
63 |
void TestSlave_stopped()
|
|
64 |
{
|
|
65 |
eprintf("TestSlave_stopped\n");
|
|
66 |
}
|
|
67 |
|
|
68 |
void TestSlave_post_sync()
|
|
69 |
{
|
|
70 |
eprintf("TestSlave_post_sync\n");
|
|
71 |
SlaveMap1+=1;
|
|
72 |
SlaveMap2+=2;
|
|
73 |
SlaveMap3+=3;
|
|
74 |
SlaveMap4+=4;
|
|
75 |
eprintf("Slave: %d %d %d %d\n",SlaveMap1, SlaveMap2, SlaveMap3, SlaveMap4);
|
|
76 |
}
|
|
77 |
|
|
78 |
void TestSlave_post_TPDO()
|
|
79 |
{
|
|
80 |
eprintf("TestSlave_post_TPDO\n");
|
|
81 |
}
|