author | Christian Taedcke <hacking@taedcke.com> |
Thu, 27 Jan 2011 17:45:48 +0100 | |
changeset 654 | fc9af616633d |
parent 635 | 30a0e926bb2e |
child 750 | bfb63ff7106e |
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 |
||
529
c171e11707c5
Second time, Re-write doxygen tags in headers files to generate User API documentation
greg
parents:
528
diff
changeset
|
23 |
/** @defgroup heartbeato Heartbeat Object |
c171e11707c5
Second time, Re-write doxygen tags in headers files to generate User API documentation
greg
parents:
528
diff
changeset
|
24 |
* The heartbeat mechanism for a device is established through cyclically transmitting a message by a |
c171e11707c5
Second time, Re-write doxygen tags in headers files to generate User API documentation
greg
parents:
528
diff
changeset
|
25 |
* heartbeat producer. One or more devices in the network are aware of this heartbeat message. If the |
c171e11707c5
Second time, Re-write doxygen tags in headers files to generate User API documentation
greg
parents:
528
diff
changeset
|
26 |
* heartbeat cycle fails for the heartbeat producer the local application on the heartbeat consumer will be |
c171e11707c5
Second time, Re-write doxygen tags in headers files to generate User API documentation
greg
parents:
528
diff
changeset
|
27 |
* informed about that event. |
c171e11707c5
Second time, Re-write doxygen tags in headers files to generate User API documentation
greg
parents:
528
diff
changeset
|
28 |
* @ingroup comobj |
c171e11707c5
Second time, Re-write doxygen tags in headers files to generate User API documentation
greg
parents:
528
diff
changeset
|
29 |
*/ |
c171e11707c5
Second time, Re-write doxygen tags in headers files to generate User API documentation
greg
parents:
528
diff
changeset
|
30 |
|
0 | 31 |
#ifndef __lifegrd_h__ |
32 |
#define __lifegrd_h__ |
|
33 |
||
34 |
||
35 |
#include <applicfg.h> |
|
36 |
||
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:
343
diff
changeset
|
37 |
typedef void (*heartbeatError_t)(CO_Data*, UNS8); |
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:
343
diff
changeset
|
38 |
void _heartbeatError(CO_Data* d, UNS8 heartbeatID); |
0 | 39 |
|
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:
343
diff
changeset
|
40 |
typedef void (*post_SlaveBootup_t)(CO_Data*, UNS8); |
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:
343
diff
changeset
|
41 |
void _post_SlaveBootup(CO_Data* d, UNS8 SlaveID); |
343 | 42 |
|
635
30a0e926bb2e
ADDED: - new callback post_SlaveStateChange so that a master can monitor the state of its slave nodes using a heartbeat.
Christian Taedcke
parents:
529
diff
changeset
|
43 |
typedef void (*post_SlaveStateChange_t)(CO_Data*, UNS8, e_nodeState); |
30a0e926bb2e
ADDED: - new callback post_SlaveStateChange so that a master can monitor the state of its slave nodes using a heartbeat.
Christian Taedcke
parents:
529
diff
changeset
|
44 |
void _post_SlaveStateChange(CO_Data* d, UNS8 nodeId, e_nodeState newNodeState); |
30a0e926bb2e
ADDED: - new callback post_SlaveStateChange so that a master can monitor the state of its slave nodes using a heartbeat.
Christian Taedcke
parents:
529
diff
changeset
|
45 |
|
0 | 46 |
#include "data.h" |
47 |
||
71 | 48 |
/************************************************************************* |
49 |
* Functions |
|
74 | 50 |
*************************************************************************/ |
0 | 51 |
|
528
0a30e161d63c
Re-write doxygen tags in headers files to generate User API documentation
greg
parents:
378
diff
changeset
|
52 |
/** |
529
c171e11707c5
Second time, Re-write doxygen tags in headers files to generate User API documentation
greg
parents:
528
diff
changeset
|
53 |
* @ingroup statemachine |
528
0a30e161d63c
Re-write doxygen tags in headers files to generate User API documentation
greg
parents:
378
diff
changeset
|
54 |
* @brief To read the state of a node |
0a30e161d63c
Re-write doxygen tags in headers files to generate User API documentation
greg
parents:
378
diff
changeset
|
55 |
* This can be used by the master after having sent a life guard request, |
0a30e161d63c
Re-write doxygen tags in headers files to generate User API documentation
greg
parents:
378
diff
changeset
|
56 |
* of by any node if it is waiting for heartbeat. |
0a30e161d63c
Re-write doxygen tags in headers files to generate User API documentation
greg
parents:
378
diff
changeset
|
57 |
* @param *d Pointer on a CAN object data structure |
0a30e161d63c
Re-write doxygen tags in headers files to generate User API documentation
greg
parents:
378
diff
changeset
|
58 |
* @param nodeId Id of a node |
0a30e161d63c
Re-write doxygen tags in headers files to generate User API documentation
greg
parents:
378
diff
changeset
|
59 |
* @return e_nodeState State of the node corresponding to the nodeId |
0 | 60 |
*/ |
61 |
e_nodeState getNodeState (CO_Data* d, UNS8 nodeId); |
|
62 |
||
528
0a30e161d63c
Re-write doxygen tags in headers files to generate User API documentation
greg
parents:
378
diff
changeset
|
63 |
/** |
0a30e161d63c
Re-write doxygen tags in headers files to generate User API documentation
greg
parents:
378
diff
changeset
|
64 |
* @brief Start heartbeat consumer and producer |
0a30e161d63c
Re-write doxygen tags in headers files to generate User API documentation
greg
parents:
378
diff
changeset
|
65 |
* with respect to 0x1016 and 0x1017 |
0a30e161d63c
Re-write doxygen tags in headers files to generate User API documentation
greg
parents:
378
diff
changeset
|
66 |
* object dictionary entries |
0a30e161d63c
Re-write doxygen tags in headers files to generate User API documentation
greg
parents:
378
diff
changeset
|
67 |
* @param *d Pointer on a CAN object data structure |
0 | 68 |
*/ |
69 |
void heartbeatInit(CO_Data* d); |
|
70 |
||
528
0a30e161d63c
Re-write doxygen tags in headers files to generate User API documentation
greg
parents:
378
diff
changeset
|
71 |
/** |
0a30e161d63c
Re-write doxygen tags in headers files to generate User API documentation
greg
parents:
378
diff
changeset
|
72 |
* @brief Stop heartbeat consumer and producer |
0a30e161d63c
Re-write doxygen tags in headers files to generate User API documentation
greg
parents:
378
diff
changeset
|
73 |
* @param *d Pointer on a CAN object data structure |
0 | 74 |
*/ |
75 |
void heartbeatStop(CO_Data* d); |
|
76 |
||
528
0a30e161d63c
Re-write doxygen tags in headers files to generate User API documentation
greg
parents:
378
diff
changeset
|
77 |
/** |
0a30e161d63c
Re-write doxygen tags in headers files to generate User API documentation
greg
parents:
378
diff
changeset
|
78 |
* @brief This function is responsible to process a canopen-message which seams to be an NMT Error Control |
0a30e161d63c
Re-write doxygen tags in headers files to generate User API documentation
greg
parents:
378
diff
changeset
|
79 |
* Messages. At them moment we assume that every NMT error control message |
0a30e161d63c
Re-write doxygen tags in headers files to generate User API documentation
greg
parents:
378
diff
changeset
|
80 |
* is a heartbeat message. |
0a30e161d63c
Re-write doxygen tags in headers files to generate User API documentation
greg
parents:
378
diff
changeset
|
81 |
* If a BootUp message is detected, it will return the nodeId of the Slave who booted up |
0a30e161d63c
Re-write doxygen tags in headers files to generate User API documentation
greg
parents:
378
diff
changeset
|
82 |
* @param *d Pointer on a CAN object data structure |
0a30e161d63c
Re-write doxygen tags in headers files to generate User API documentation
greg
parents:
378
diff
changeset
|
83 |
* @param *m Pointer on the CAN-message which has to be analysed. |
0 | 84 |
*/ |
85 |
void proceedNODE_GUARD (CO_Data* d, Message* m); |
|
86 |
||
71 | 87 |
#endif /*__lifegrd_h__ */ |