author | Christian Taedcke |
Wed, 10 Nov 2010 13:08:26 +0100 | |
changeset 655 | ea1ddcc77acf |
parent 649 | 3beb784bacee |
child 670 | e37511baf56b |
permissions | -rwxr-xr-x |
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 |
||
528
0a30e161d63c
Re-write doxygen tags in headers files to generate User API documentation
greg
parents:
426
diff
changeset
|
23 |
/** @defgroup pdo Process Data Object (PDO) |
0a30e161d63c
Re-write doxygen tags in headers files to generate User API documentation
greg
parents:
426
diff
changeset
|
24 |
* PDO is a communication object defined by the DPO communication parameter and PDA mapping parameter objects. |
0a30e161d63c
Re-write doxygen tags in headers files to generate User API documentation
greg
parents:
426
diff
changeset
|
25 |
* It is an uncomfirmed communication service without protocol overhead. |
0a30e161d63c
Re-write doxygen tags in headers files to generate User API documentation
greg
parents:
426
diff
changeset
|
26 |
* @ingroup comobj |
0a30e161d63c
Re-write doxygen tags in headers files to generate User API documentation
greg
parents:
426
diff
changeset
|
27 |
*/ |
0a30e161d63c
Re-write doxygen tags in headers files to generate User API documentation
greg
parents:
426
diff
changeset
|
28 |
|
0 | 29 |
#ifndef __pdo_h__ |
30 |
#define __pdo_h__ |
|
31 |
||
32 |
#include <applicfg.h> |
|
33 |
#include <def.h> |
|
34 |
||
235
f812bf6b7237
Preliminary implementation of Event Timer and Inhibit Timer driven TPDO
etisserant
parents:
201
diff
changeset
|
35 |
#include "can.h" |
f812bf6b7237
Preliminary implementation of Event Timer and Inhibit Timer driven TPDO
etisserant
parents:
201
diff
changeset
|
36 |
|
f812bf6b7237
Preliminary implementation of Event Timer and Inhibit Timer driven TPDO
etisserant
parents:
201
diff
changeset
|
37 |
typedef struct struct_s_PDO_status s_PDO_status; |
0 | 38 |
|
39 |
#include "data.h" |
|
40 |
||
235
f812bf6b7237
Preliminary implementation of Event Timer and Inhibit Timer driven TPDO
etisserant
parents:
201
diff
changeset
|
41 |
/* Status of the TPDO : */ |
f812bf6b7237
Preliminary implementation of Event Timer and Inhibit Timer driven TPDO
etisserant
parents:
201
diff
changeset
|
42 |
#define PDO_INHIBITED 0x01 |
236
905677ed00f3
Full preliminary implementation of TPDO transmit type:
etisserant
parents:
235
diff
changeset
|
43 |
#define PDO_RTR_SYNC_READY 0x01 |
235
f812bf6b7237
Preliminary implementation of Event Timer and Inhibit Timer driven TPDO
etisserant
parents:
201
diff
changeset
|
44 |
|
0 | 45 |
/** The PDO structure */ |
235
f812bf6b7237
Preliminary implementation of Event Timer and Inhibit Timer driven TPDO
etisserant
parents:
201
diff
changeset
|
46 |
struct struct_s_PDO_status { |
f812bf6b7237
Preliminary implementation of Event Timer and Inhibit Timer driven TPDO
etisserant
parents:
201
diff
changeset
|
47 |
UNS8 transmit_type_parameter; |
f812bf6b7237
Preliminary implementation of Event Timer and Inhibit Timer driven TPDO
etisserant
parents:
201
diff
changeset
|
48 |
TIMER_HANDLE event_timer; |
f812bf6b7237
Preliminary implementation of Event Timer and Inhibit Timer driven TPDO
etisserant
parents:
201
diff
changeset
|
49 |
TIMER_HANDLE inhibit_timer; |
f812bf6b7237
Preliminary implementation of Event Timer and Inhibit Timer driven TPDO
etisserant
parents:
201
diff
changeset
|
50 |
Message last_message; |
f812bf6b7237
Preliminary implementation of Event Timer and Inhibit Timer driven TPDO
etisserant
parents:
201
diff
changeset
|
51 |
}; |
0 | 52 |
|
366 | 53 |
#define s_PDO_status_Initializer {0, TIMER_NONE, TIMER_NONE, Message_Initializer} |
235
f812bf6b7237
Preliminary implementation of Event Timer and Inhibit Timer driven TPDO
etisserant
parents:
201
diff
changeset
|
54 |
|
f812bf6b7237
Preliminary implementation of Event Timer and Inhibit Timer driven TPDO
etisserant
parents:
201
diff
changeset
|
55 |
/** definitions of the different types of PDOs' transmission |
f812bf6b7237
Preliminary implementation of Event Timer and Inhibit Timer driven TPDO
etisserant
parents:
201
diff
changeset
|
56 |
* |
f812bf6b7237
Preliminary implementation of Event Timer and Inhibit Timer driven TPDO
etisserant
parents:
201
diff
changeset
|
57 |
* SYNCHRO(n) means that the PDO will be transmited every n SYNC signal. |
0 | 58 |
*/ |
235
f812bf6b7237
Preliminary implementation of Event Timer and Inhibit Timer driven TPDO
etisserant
parents:
201
diff
changeset
|
59 |
#define TRANS_EVERY_N_SYNC(n) (n) /*n = 1 to 240 */ |
426
8011552b1319
Preliminary support for TRANS_SYNC_ACYCLIC (0) transmit type.
etisserant
parents:
366
diff
changeset
|
60 |
#define TRANS_SYNC_ACYCLIC 0 /* Trans after reception of n SYNC. n = 1 to 240 */ |
235
f812bf6b7237
Preliminary implementation of Event Timer and Inhibit Timer driven TPDO
etisserant
parents:
201
diff
changeset
|
61 |
#define TRANS_SYNC_MIN 1 /* Trans after reception of n SYNC. n = 1 to 240 */ |
f812bf6b7237
Preliminary implementation of Event Timer and Inhibit Timer driven TPDO
etisserant
parents:
201
diff
changeset
|
62 |
#define TRANS_SYNC_MAX 240 /* Trans after reception of n SYNC. n = 1 to 240 */ |
f812bf6b7237
Preliminary implementation of Event Timer and Inhibit Timer driven TPDO
etisserant
parents:
201
diff
changeset
|
63 |
#define TRANS_RTR_SYNC 252 /* Transmission on request */ |
f812bf6b7237
Preliminary implementation of Event Timer and Inhibit Timer driven TPDO
etisserant
parents:
201
diff
changeset
|
64 |
#define TRANS_RTR 253 /* Transmission on request */ |
f812bf6b7237
Preliminary implementation of Event Timer and Inhibit Timer driven TPDO
etisserant
parents:
201
diff
changeset
|
65 |
#define TRANS_EVENT_SPECIFIC 254 /* Transmission on event */ |
f812bf6b7237
Preliminary implementation of Event Timer and Inhibit Timer driven TPDO
etisserant
parents:
201
diff
changeset
|
66 |
#define TRANS_EVENT_PROFILE 255 /* Transmission on event */ |
0 | 67 |
|
529
c171e11707c5
Second time, Re-write doxygen tags in headers files to generate User API documentation
greg
parents:
528
diff
changeset
|
68 |
/** |
528
0a30e161d63c
Re-write doxygen tags in headers files to generate User API documentation
greg
parents:
426
diff
changeset
|
69 |
* @brief Copy all the data to transmit in process_var |
0a30e161d63c
Re-write doxygen tags in headers files to generate User API documentation
greg
parents:
426
diff
changeset
|
70 |
* Prepare the PDO defined at index to be sent |
0 | 71 |
* *pwCobId : returns the value of the cobid. (subindex 1) |
528
0a30e161d63c
Re-write doxygen tags in headers files to generate User API documentation
greg
parents:
426
diff
changeset
|
72 |
* @param *d Pointer on a CAN object data structure |
0a30e161d63c
Re-write doxygen tags in headers files to generate User API documentation
greg
parents:
426
diff
changeset
|
73 |
* @param numPdo The PDO number |
0a30e161d63c
Re-write doxygen tags in headers files to generate User API documentation
greg
parents:
426
diff
changeset
|
74 |
* @param *pdo Pointer on a CAN message structure |
0a30e161d63c
Re-write doxygen tags in headers files to generate User API documentation
greg
parents:
426
diff
changeset
|
75 |
* @return 0 or 0xFF if error. |
0 | 76 |
*/ |
235
f812bf6b7237
Preliminary implementation of Event Timer and Inhibit Timer driven TPDO
etisserant
parents:
201
diff
changeset
|
77 |
UNS8 buildPDO(CO_Data* d, UNS8 numPdo, Message *pdo); |
0 | 78 |
|
528
0a30e161d63c
Re-write doxygen tags in headers files to generate User API documentation
greg
parents:
426
diff
changeset
|
79 |
/** |
0a30e161d63c
Re-write doxygen tags in headers files to generate User API documentation
greg
parents:
426
diff
changeset
|
80 |
* @ingroup pdo |
561 | 81 |
* @brief Transmit a PDO request frame on the network to the slave. |
528
0a30e161d63c
Re-write doxygen tags in headers files to generate User API documentation
greg
parents:
426
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:
426
diff
changeset
|
83 |
* @param RPDOIndex Index of the receive PDO |
561 | 84 |
* @return |
85 |
* - CanFestival file descriptor is returned upon success. |
|
86 |
* - 0xFF is returned if RPDO Index is not found. |
|
87 |
||
528
0a30e161d63c
Re-write doxygen tags in headers files to generate User API documentation
greg
parents:
426
diff
changeset
|
88 |
* @return 0xFF if error, other in success. |
0 | 89 |
*/ |
236
905677ed00f3
Full preliminary implementation of TPDO transmit type:
etisserant
parents:
235
diff
changeset
|
90 |
UNS8 sendPDOrequest( CO_Data* d, UNS16 RPDOIndex ); |
0 | 91 |
|
528
0a30e161d63c
Re-write doxygen tags in headers files to generate User API documentation
greg
parents:
426
diff
changeset
|
92 |
/** |
0a30e161d63c
Re-write doxygen tags in headers files to generate User API documentation
greg
parents:
426
diff
changeset
|
93 |
* @brief Compute a PDO frame reception |
0 | 94 |
* bus_id is hardware dependant |
528
0a30e161d63c
Re-write doxygen tags in headers files to generate User API documentation
greg
parents:
426
diff
changeset
|
95 |
* @param *d Pointer on a CAN object data structure |
0a30e161d63c
Re-write doxygen tags in headers files to generate User API documentation
greg
parents:
426
diff
changeset
|
96 |
* @param *m Pointer on a CAN message structure |
0a30e161d63c
Re-write doxygen tags in headers files to generate User API documentation
greg
parents:
426
diff
changeset
|
97 |
* @return 0xFF if error, else return 0 |
0 | 98 |
*/ |
99 |
UNS8 proceedPDO (CO_Data* d, Message *m); |
|
100 |
||
529
c171e11707c5
Second time, Re-write doxygen tags in headers files to generate User API documentation
greg
parents:
528
diff
changeset
|
101 |
/** |
528
0a30e161d63c
Re-write doxygen tags in headers files to generate User API documentation
greg
parents:
426
diff
changeset
|
102 |
* @brief Used by the application to signal changes in process data |
235
f812bf6b7237
Preliminary implementation of Event Timer and Inhibit Timer driven TPDO
etisserant
parents:
201
diff
changeset
|
103 |
* that could be mapped to some TPDO. |
f812bf6b7237
Preliminary implementation of Event Timer and Inhibit Timer driven TPDO
etisserant
parents:
201
diff
changeset
|
104 |
* This do not necessarily imply PDO emission. |
f812bf6b7237
Preliminary implementation of Event Timer and Inhibit Timer driven TPDO
etisserant
parents:
201
diff
changeset
|
105 |
* Function iterates on all TPDO and look TPDO transmit |
f812bf6b7237
Preliminary implementation of Event Timer and Inhibit Timer driven TPDO
etisserant
parents:
201
diff
changeset
|
106 |
* type and content change before sending it. |
528
0a30e161d63c
Re-write doxygen tags in headers files to generate User API documentation
greg
parents:
426
diff
changeset
|
107 |
* @param *d Pointer on a CAN object data structure |
0 | 108 |
*/ |
235
f812bf6b7237
Preliminary implementation of Event Timer and Inhibit Timer driven TPDO
etisserant
parents:
201
diff
changeset
|
109 |
UNS8 sendPDOevent (CO_Data* d); |
649
3beb784bacee
CHANGED: - function sendOnePDOevent (CO_Data* d, UNS32 pdoNum) into sendOnePDOevent (CO_Data* d, UNS8 pdoNum)
Christian Taedcke
parents:
611
diff
changeset
|
110 |
UNS8 sendOnePDOevent (CO_Data* d, UNS8 pdoNum); |
235
f812bf6b7237
Preliminary implementation of Event Timer and Inhibit Timer driven TPDO
etisserant
parents:
201
diff
changeset
|
111 |
|
528
0a30e161d63c
Re-write doxygen tags in headers files to generate User API documentation
greg
parents:
426
diff
changeset
|
112 |
/** |
0a30e161d63c
Re-write doxygen tags in headers files to generate User API documentation
greg
parents:
426
diff
changeset
|
113 |
* @ingroup pdo |
0a30e161d63c
Re-write doxygen tags in headers files to generate User API documentation
greg
parents:
426
diff
changeset
|
114 |
* @brief Function iterates on all TPDO and look TPDO transmit |
235
f812bf6b7237
Preliminary implementation of Event Timer and Inhibit Timer driven TPDO
etisserant
parents:
201
diff
changeset
|
115 |
* type and content change before sending it. |
528
0a30e161d63c
Re-write doxygen tags in headers files to generate User API documentation
greg
parents:
426
diff
changeset
|
116 |
* @param *d Pointer on a CAN object data structure |
0a30e161d63c
Re-write doxygen tags in headers files to generate User API documentation
greg
parents:
426
diff
changeset
|
117 |
* @param isSyncEvent |
235
f812bf6b7237
Preliminary implementation of Event Timer and Inhibit Timer driven TPDO
etisserant
parents:
201
diff
changeset
|
118 |
*/ |
f812bf6b7237
Preliminary implementation of Event Timer and Inhibit Timer driven TPDO
etisserant
parents:
201
diff
changeset
|
119 |
UNS8 _sendPDOevent(CO_Data* d, UNS8 isSyncEvent); |
f812bf6b7237
Preliminary implementation of Event Timer and Inhibit Timer driven TPDO
etisserant
parents:
201
diff
changeset
|
120 |
|
528
0a30e161d63c
Re-write doxygen tags in headers files to generate User API documentation
greg
parents:
426
diff
changeset
|
121 |
/** |
0a30e161d63c
Re-write doxygen tags in headers files to generate User API documentation
greg
parents:
426
diff
changeset
|
122 |
* @brief Initialize PDO feature |
0a30e161d63c
Re-write doxygen tags in headers files to generate User API documentation
greg
parents:
426
diff
changeset
|
123 |
* @param *d Pointer on a CAN object data structure |
0a30e161d63c
Re-write doxygen tags in headers files to generate User API documentation
greg
parents:
426
diff
changeset
|
124 |
*/ |
0a30e161d63c
Re-write doxygen tags in headers files to generate User API documentation
greg
parents:
426
diff
changeset
|
125 |
void PDOInit(CO_Data* d); |
235
f812bf6b7237
Preliminary implementation of Event Timer and Inhibit Timer driven TPDO
etisserant
parents:
201
diff
changeset
|
126 |
|
528
0a30e161d63c
Re-write doxygen tags in headers files to generate User API documentation
greg
parents:
426
diff
changeset
|
127 |
/** |
0a30e161d63c
Re-write doxygen tags in headers files to generate User API documentation
greg
parents:
426
diff
changeset
|
128 |
* @brief Stop PDO feature |
0a30e161d63c
Re-write doxygen tags in headers files to generate User API documentation
greg
parents:
426
diff
changeset
|
129 |
* @param *d Pointer on a CAN object data structure |
0a30e161d63c
Re-write doxygen tags in headers files to generate User API documentation
greg
parents:
426
diff
changeset
|
130 |
*/ |
235
f812bf6b7237
Preliminary implementation of Event Timer and Inhibit Timer driven TPDO
etisserant
parents:
201
diff
changeset
|
131 |
void PDOStop(CO_Data* d); |
528
0a30e161d63c
Re-write doxygen tags in headers files to generate User API documentation
greg
parents:
426
diff
changeset
|
132 |
|
0a30e161d63c
Re-write doxygen tags in headers files to generate User API documentation
greg
parents:
426
diff
changeset
|
133 |
/** |
0a30e161d63c
Re-write doxygen tags in headers files to generate User API documentation
greg
parents:
426
diff
changeset
|
134 |
* @ingroup pdo |
0a30e161d63c
Re-write doxygen tags in headers files to generate User API documentation
greg
parents:
426
diff
changeset
|
135 |
* @brief Set timer for PDO event |
0a30e161d63c
Re-write doxygen tags in headers files to generate User API documentation
greg
parents:
426
diff
changeset
|
136 |
* @param *d Pointer on a CAN object data structure |
0a30e161d63c
Re-write doxygen tags in headers files to generate User API documentation
greg
parents:
426
diff
changeset
|
137 |
* @param pdoNum The PDO number |
0a30e161d63c
Re-write doxygen tags in headers files to generate User API documentation
greg
parents:
426
diff
changeset
|
138 |
*/ |
235
f812bf6b7237
Preliminary implementation of Event Timer and Inhibit Timer driven TPDO
etisserant
parents:
201
diff
changeset
|
139 |
void PDOEventTimerAlarm(CO_Data* d, UNS32 pdoNum); |
528
0a30e161d63c
Re-write doxygen tags in headers files to generate User API documentation
greg
parents:
426
diff
changeset
|
140 |
|
0a30e161d63c
Re-write doxygen tags in headers files to generate User API documentation
greg
parents:
426
diff
changeset
|
141 |
/** |
0a30e161d63c
Re-write doxygen tags in headers files to generate User API documentation
greg
parents:
426
diff
changeset
|
142 |
* @ingroup pdo |
0a30e161d63c
Re-write doxygen tags in headers files to generate User API documentation
greg
parents:
426
diff
changeset
|
143 |
* @brief Inhibit timer for PDO event |
0a30e161d63c
Re-write doxygen tags in headers files to generate User API documentation
greg
parents:
426
diff
changeset
|
144 |
* @param *d Pointer on a CAN object data structure |
0a30e161d63c
Re-write doxygen tags in headers files to generate User API documentation
greg
parents:
426
diff
changeset
|
145 |
* @param pdoNum The PDO number |
0a30e161d63c
Re-write doxygen tags in headers files to generate User API documentation
greg
parents:
426
diff
changeset
|
146 |
*/ |
235
f812bf6b7237
Preliminary implementation of Event Timer and Inhibit Timer driven TPDO
etisserant
parents:
201
diff
changeset
|
147 |
void PDOInhibitTimerAlarm(CO_Data* d, UNS32 pdoNum); |
0 | 148 |
|
201 | 149 |
/* copy bit per bit in little endian */ |
150 |
void CopyBits(UNS8 NbBits, UNS8* SrcByteIndex, UNS8 SrcBitIndex, UNS8 SrcBigEndian, UNS8* DestByteIndex, UNS8 DestBitIndex, UNS8 DestBigEndian); |
|
0 | 151 |
#endif |