0
|
1 |
/*
|
208
|
2 |
This file is part of CanFestival, a library implementing CanOpen
|
|
3 |
Stack.
|
0
|
4 |
|
208
|
5 |
Copyright (C): Edouard TISSERANT and Francis DUPIN
|
0
|
6 |
|
208
|
7 |
See COPYING file for copyrights details.
|
0
|
8 |
|
208
|
9 |
This library is free software; you can redistribute it and/or
|
|
10 |
modify it under the terms of the GNU Lesser General Public
|
|
11 |
License as published by the Free Software Foundation; either
|
|
12 |
version 2.1 of the License, or (at your option) any later version.
|
0
|
13 |
|
208
|
14 |
This library is distributed in the hope that it will be useful,
|
|
15 |
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
16 |
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
17 |
Lesser General Public License for more details.
|
0
|
18 |
|
208
|
19 |
You should have received a copy of the GNU Lesser General Public
|
|
20 |
License along with this library; if not, write to the Free Software
|
|
21 |
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
|
|
22 |
USA
|
0
|
23 |
*/
|
208
|
24 |
/*!
|
|
25 |
** @file nmtMaster.c
|
|
26 |
** @author Edouard TISSERANT and Francis DUPIN
|
|
27 |
** @date Tue Jun 5 08:47:18 2007
|
|
28 |
**
|
|
29 |
** @brief
|
|
30 |
**
|
|
31 |
**
|
|
32 |
*/
|
0
|
33 |
#include "nmtMaster.h"
|
149
|
34 |
#include "canfestival.h"
|
0
|
35 |
|
208
|
36 |
/*!
|
|
37 |
**
|
|
38 |
**
|
|
39 |
** @param d
|
|
40 |
** @param Node_ID
|
|
41 |
** @param cs
|
|
42 |
**
|
|
43 |
** @return
|
|
44 |
**/
|
0
|
45 |
UNS8 masterSendNMTstateChange(CO_Data* d, UNS8 Node_ID, UNS8 cs)
|
|
46 |
{
|
|
47 |
Message m;
|
|
48 |
|
|
49 |
MSG_WAR(0x3501, "Send_NMT cs : ", cs);
|
|
50 |
MSG_WAR(0x3502, " to node : ", Node_ID);
|
215
|
51 |
/* message configuration */
|
0
|
52 |
m.cob_id.w = 0x0000; /*(NMT) << 7*/
|
|
53 |
m.rtr = NOT_A_REQUEST;
|
|
54 |
m.len = 2;
|
|
55 |
m.data[0] = cs;
|
|
56 |
m.data[1] = Node_ID;
|
208
|
57 |
|
149
|
58 |
return canSend(d->canHandle,&m);
|
0
|
59 |
}
|
|
60 |
|
|
61 |
|
208
|
62 |
/*!
|
|
63 |
**
|
|
64 |
**
|
|
65 |
** @param d
|
|
66 |
** @param nodeId
|
|
67 |
**
|
|
68 |
** @return
|
|
69 |
**/
|
0
|
70 |
UNS8 masterSendNMTnodeguard(CO_Data* d, UNS8 nodeId)
|
|
71 |
{
|
|
72 |
Message m;
|
208
|
73 |
|
0
|
74 |
MSG_WAR(0x3503, "Send_NODE_GUARD to node : ", nodeId);
|
208
|
75 |
|
0
|
76 |
/* message configuration */
|
|
77 |
m.cob_id.w = nodeId | (NODE_GUARD << 7);
|
|
78 |
m.rtr = REQUEST;
|
|
79 |
m.len = 1;
|
208
|
80 |
|
149
|
81 |
return canSend(d->canHandle,&m);
|
0
|
82 |
}
|
|
83 |
|
208
|
84 |
/*!
|
|
85 |
**
|
|
86 |
**
|
|
87 |
** @param d
|
|
88 |
** @param nodeId
|
|
89 |
**/
|
0
|
90 |
void masterRequestNodeState(CO_Data* d, UNS8 nodeId)
|
|
91 |
{
|
215
|
92 |
/* FIXME: should warn for bad toggle bit. */
|
0
|
93 |
|
215
|
94 |
/* NMTable configuration to indicate that the master is waiting
|
208
|
95 |
for a Node_Guard frame from the slave whose node_id is ID
|
|
96 |
*/
|
215
|
97 |
d->NMTable[nodeId] = Unknown_state; /* A state that does not exist
|
208
|
98 |
*/
|
0
|
99 |
|
215
|
100 |
if (nodeId == 0) { /* NMT broadcast */
|
0
|
101 |
UNS8 i = 0;
|
|
102 |
for (i = 0 ; i < NMT_MAX_NODE_ID ; i++) {
|
|
103 |
d->NMTable[i] = Unknown_state;
|
|
104 |
}
|
|
105 |
}
|
|
106 |
masterSendNMTnodeguard(d,nodeId);
|
|
107 |
}
|
|
108 |
|