author | Christian Taedcke <hacking@taedcke.com> |
Thu, 27 Jan 2011 17:45:48 +0100 | |
changeset 654 | fc9af616633d |
parent 649 | 3beb784bacee |
child 660 | cff8e50333e8 |
permissions | -rw-r--r-- |
0 | 1 |
/* |
208 | 2 |
This file is part of CanFestival, a library implementing CanOpen |
3 |
Stack. |
|
4 |
||
5 |
Copyright (C): Edouard TISSERANT and Francis DUPIN |
|
6 |
||
7 |
See COPYING file for copyrights details. |
|
8 |
||
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. |
|
13 |
||
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. |
|
18 |
||
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 |
*/ |
24 |
#include "pdo.h" |
|
25 |
#include "objacces.h" |
|
149 | 26 |
#include "canfestival.h" |
370
6fecf36df407
Fixed some endianization problems caused by switch to UNS16 for cob_id member in CAN messages. To be continued.
etisserant
parents:
365
diff
changeset
|
27 |
#include "sysdep.h" |
0 | 28 |
|
208 | 29 |
/*! |
30 |
** @file pdo.c |
|
31 |
** @author Edouard TISSERANT and Francis DUPIN |
|
32 |
** @date Tue Jun 5 09:32:32 2007 |
|
33 |
** |
|
34 |
** @brief |
|
35 |
** |
|
36 |
** |
|
37 |
*/ |
|
235
f812bf6b7237
Preliminary implementation of Event Timer and Inhibit Timer driven TPDO
etisserant
parents:
217
diff
changeset
|
38 |
|
f812bf6b7237
Preliminary implementation of Event Timer and Inhibit Timer driven TPDO
etisserant
parents:
217
diff
changeset
|
39 |
/*! |
f812bf6b7237
Preliminary implementation of Event Timer and Inhibit Timer driven TPDO
etisserant
parents:
217
diff
changeset
|
40 |
** |
208 | 41 |
** |
42 |
** @param d |
|
235
f812bf6b7237
Preliminary implementation of Event Timer and Inhibit Timer driven TPDO
etisserant
parents:
217
diff
changeset
|
43 |
** @param TPDO_com TPDO communication parameters OD entry |
f812bf6b7237
Preliminary implementation of Event Timer and Inhibit Timer driven TPDO
etisserant
parents:
217
diff
changeset
|
44 |
** @param TPDO_map TPDO mapping parameters OD entry |
208 | 45 |
** |
46 |
** @return |
|
47 |
**/ |
|
235
f812bf6b7237
Preliminary implementation of Event Timer and Inhibit Timer driven TPDO
etisserant
parents:
217
diff
changeset
|
48 |
|
524 | 49 |
UNS8 buildPDO (CO_Data * d, UNS8 numPdo, Message * pdo) |
425 | 50 |
{ |
51 |
const indextable *TPDO_com = d->objdict + d->firstIndex->PDO_TRS + numPdo; |
|
524 | 52 |
const indextable *TPDO_map = d->objdict + d->firstIndex->PDO_TRS_MAP + numPdo; |
425 | 53 |
|
54 |
UNS8 prp_j = 0x00; |
|
587 | 55 |
UNS32 offset = 0x00000000; |
425 | 56 |
const UNS8 *pMappingCount = (UNS8 *) TPDO_map->pSubindex[0].pObject; |
57 |
||
649
3beb784bacee
CHANGED: - function sendOnePDOevent (CO_Data* d, UNS32 pdoNum) into sendOnePDOevent (CO_Data* d, UNS8 pdoNum)
Christian Taedcke
parents:
630
diff
changeset
|
58 |
pdo->cob_id = (UNS16) UNS16_LE(*(UNS32*)TPDO_com->pSubindex[1].pObject & 0x7FF); |
425 | 59 |
pdo->rtr = NOT_A_REQUEST; |
60 |
||
61 |
MSG_WAR (0x3009, " PDO CobId is : ", |
|
62 |
*(UNS32 *) TPDO_com->pSubindex[1].pObject); |
|
63 |
MSG_WAR (0x300D, " Number of objects mapped : ", *pMappingCount); |
|
64 |
||
65 |
do |
|
66 |
{ |
|
67 |
UNS8 dataType; /* Unused */ |
|
68 |
UNS8 tmp[] = { 0, 0, 0, 0, 0, 0, 0, 0 }; /* temporary space to hold bits */ |
|
69 |
||
70 |
/* pointer fo the var which holds the mapping parameter of an mapping entry */ |
|
71 |
UNS32 *pMappingParameter = |
|
72 |
(UNS32 *) TPDO_map->pSubindex[prp_j + 1].pObject; |
|
73 |
UNS16 index = (UNS16) ((*pMappingParameter) >> 16); |
|
539
187058b4a4b8
Changed OD size from UNS8 to UNS32, and repercuted change to PDO and SDO. Thanks to Jari Kuusisto for patch.
etisserant
parents:
524
diff
changeset
|
74 |
UNS32 Size = (UNS32) (*pMappingParameter & (UNS32) 0x000000FF); /* Size in bits */ |
425 | 75 |
|
76 |
/* get variable only if Size != 0 and Size is lower than remaining bits in the PDO */ |
|
77 |
if (Size && ((offset + Size) <= 64)) |
|
78 |
{ |
|
539
187058b4a4b8
Changed OD size from UNS8 to UNS32, and repercuted change to PDO and SDO. Thanks to Jari Kuusisto for patch.
etisserant
parents:
524
diff
changeset
|
79 |
UNS32 ByteSize = 1 + ((Size - 1) >> 3); /*1->8 => 1 ; 9->16 => 2, ... */ |
425 | 80 |
UNS8 subIndex = |
81 |
(UNS8) (((*pMappingParameter) >> (UNS8) 8) & (UNS32) 0x000000FF); |
|
82 |
||
83 |
MSG_WAR (0x300F, " got mapping parameter : ", *pMappingParameter); |
|
84 |
MSG_WAR (0x3050, " at index : ", TPDO_map->index); |
|
85 |
MSG_WAR (0x3051, " sub-index : ", prp_j + 1); |
|
86 |
||
87 |
if (getODentry (d, index, subIndex, tmp, &ByteSize, &dataType, 0) != |
|
88 |
OD_SUCCESSFUL) |
|
89 |
{ |
|
90 |
MSG_ERR (0x1013, |
|
91 |
" Couldn't find mapped variable at index-subindex-size : ", |
|
92 |
(UNS16) (*pMappingParameter)); |
|
93 |
return 0xFF; |
|
94 |
} |
|
95 |
/* copy bit per bit in little endian */ |
|
587 | 96 |
CopyBits ((UNS8) Size, ((UNS8 *) tmp), 0, 0, |
97 |
(UNS8 *) & pdo->data[offset >> 3], (UNS8)(offset % 8), 0); |
|
425 | 98 |
|
99 |
offset += Size; |
|
100 |
} |
|
101 |
prp_j++; |
|
102 |
} |
|
103 |
while (prp_j < *pMappingCount); |
|
104 |
||
587 | 105 |
pdo->len = (UNS8)(1 + ((offset - 1) >> 3)); |
425 | 106 |
|
107 |
MSG_WAR (0x3015, " End scan mapped variable", 0); |
|
108 |
||
109 |
return 0; |
|
235
f812bf6b7237
Preliminary implementation of Event Timer and Inhibit Timer driven TPDO
etisserant
parents:
217
diff
changeset
|
110 |
} |
208 | 111 |
|
112 |
/*! |
|
113 |
** |
|
114 |
** |
|
115 |
** @param d |
|
116 |
** @param cobId |
|
117 |
** |
|
118 |
** @return |
|
119 |
**/ |
|
425 | 120 |
UNS8 |
121 |
sendPDOrequest (CO_Data * d, UNS16 RPDOIndex) |
|
122 |
{ |
|
447
c9d01296d6d9
Endianess patch from Edward Karpicz, Lithuania :-)
etisserant
parents:
428
diff
changeset
|
123 |
UNS32 *pwCobId; |
236
905677ed00f3
Full preliminary implementation of TPDO transmit type:
etisserant
parents:
235
diff
changeset
|
124 |
UNS16 offset = d->firstIndex->PDO_RCV; |
905677ed00f3
Full preliminary implementation of TPDO transmit type:
etisserant
parents:
235
diff
changeset
|
125 |
UNS16 lastIndex = d->lastIndex->PDO_RCV; |
905677ed00f3
Full preliminary implementation of TPDO transmit type:
etisserant
parents:
235
diff
changeset
|
126 |
|
611 | 127 |
if (!d->CurrentCommunicationState.csPDO) |
128 |
{ |
|
129 |
return 0; |
|
130 |
} |
|
131 |
||
215 | 132 |
/* Sending the request only if the cobid have been found on the PDO |
208 | 133 |
receive */ |
215 | 134 |
/* part dictionary */ |
425 | 135 |
|
136 |
MSG_WAR (0x3930, "sendPDOrequest RPDO Index : ", RPDOIndex); |
|
137 |
||
138 |
if (offset && RPDOIndex >= 0x1400) |
|
139 |
{ |
|
140 |
offset += RPDOIndex - 0x1400; |
|
141 |
if (offset <= lastIndex) |
|
142 |
{ |
|
143 |
/* get the CobId */ |
|
447
c9d01296d6d9
Endianess patch from Edward Karpicz, Lithuania :-)
etisserant
parents:
428
diff
changeset
|
144 |
pwCobId = d->objdict[offset].pSubindex[1].pObject; |
425 | 145 |
|
146 |
MSG_WAR (0x3930, "sendPDOrequest cobId is : ", *pwCobId); |
|
147 |
{ |
|
148 |
Message pdo; |
|
587 | 149 |
pdo.cob_id = (UNS16)UNS16_LE(*pwCobId); |
425 | 150 |
pdo.rtr = REQUEST; |
151 |
pdo.len = 0; |
|
152 |
return canSend (d->canHandle, &pdo); |
|
153 |
} |
|
154 |
} |
|
208 | 155 |
} |
425 | 156 |
MSG_ERR (0x1931, "sendPDOrequest : RPDO Index not found : ", RPDOIndex); |
0 | 157 |
return 0xFF; |
158 |
} |
|
159 |
||
160 |
||
208 | 161 |
/*! |
162 |
** |
|
163 |
** |
|
164 |
** @param d |
|
165 |
** @param m |
|
166 |
** |
|
167 |
** @return |
|
168 |
**/ |
|
425 | 169 |
UNS8 |
170 |
proceedPDO (CO_Data * d, Message * m) |
|
171 |
{ |
|
172 |
UNS8 numPdo; |
|
173 |
UNS8 numMap; /* Number of the mapped varable */ |
|
174 |
UNS8 *pMappingCount = NULL; /* count of mapped objects... */ |
|
215 | 175 |
/* pointer to the var which is mapped to a pdo... */ |
176 |
/* void * pMappedAppObject = NULL; */ |
|
177 |
/* pointer fo the var which holds the mapping parameter of an |
|
208 | 178 |
mapping entry */ |
425 | 179 |
UNS32 *pMappingParameter = NULL; |
180 |
UNS8 *pTransmissionType = NULL; /* pointer to the transmission |
|
181 |
type */ |
|
447
c9d01296d6d9
Endianess patch from Edward Karpicz, Lithuania :-)
etisserant
parents:
428
diff
changeset
|
182 |
UNS32 *pwCobId = NULL; |
425 | 183 |
UNS8 Size; |
184 |
UNS8 offset; |
|
185 |
UNS8 status; |
|
186 |
UNS32 objDict; |
|
187 |
UNS16 offsetObjdict; |
|
188 |
UNS16 lastIndex; |
|
189 |
||
235
f812bf6b7237
Preliminary implementation of Event Timer and Inhibit Timer driven TPDO
etisserant
parents:
217
diff
changeset
|
190 |
status = state2; |
208 | 191 |
|
447
c9d01296d6d9
Endianess patch from Edward Karpicz, Lithuania :-)
etisserant
parents:
428
diff
changeset
|
192 |
MSG_WAR (0x3935, "proceedPDO, cobID : ", (UNS16_LE(m->cob_id) & 0x7ff)); |
0 | 193 |
offset = 0x00; |
194 |
numPdo = 0; |
|
195 |
numMap = 0; |
|
425 | 196 |
if ((*m).rtr == NOT_A_REQUEST) |
197 |
{ /* The PDO received is not a |
|
198 |
request. */ |
|
199 |
||
200 |
offsetObjdict = d->firstIndex->PDO_RCV; |
|
201 |
lastIndex = d->lastIndex->PDO_RCV; |
|
202 |
||
203 |
/* study of all the PDO stored in the dictionary */ |
|
204 |
if (offsetObjdict) |
|
205 |
while (offsetObjdict <= lastIndex) |
|
206 |
{ |
|
207 |
||
208 |
switch (status) |
|
209 |
{ |
|
210 |
||
211 |
case state2: |
|
212 |
/* get CobId of the dictionary correspondant to the received |
|
213 |
PDO */ |
|
214 |
pwCobId = |
|
447
c9d01296d6d9
Endianess patch from Edward Karpicz, Lithuania :-)
etisserant
parents:
428
diff
changeset
|
215 |
d->objdict[offsetObjdict].pSubindex[1].pObject; |
425 | 216 |
/* check the CobId coherance */ |
217 |
/*pwCobId is the cobId read in the dictionary at the state 3 |
|
218 |
*/ |
|
447
c9d01296d6d9
Endianess patch from Edward Karpicz, Lithuania :-)
etisserant
parents:
428
diff
changeset
|
219 |
if (*pwCobId == UNS16_LE(m->cob_id)) |
425 | 220 |
{ |
221 |
/* The cobId is recognized */ |
|
222 |
status = state4; |
|
223 |
MSG_WAR (0x3936, "cobId found at index ", |
|
224 |
0x1400 + numPdo); |
|
225 |
break; |
|
226 |
} |
|
227 |
else |
|
228 |
{ |
|
229 |
/* cobId received does not match with those write in the |
|
230 |
dictionnary */ |
|
231 |
numPdo++; |
|
232 |
offsetObjdict++; |
|
233 |
status = state2; |
|
234 |
break; |
|
235 |
} |
|
236 |
||
237 |
case state4: /* Get Mapped Objects Number */ |
|
238 |
/* The cobId of the message received has been found in the |
|
239 |
dictionnary. */ |
|
240 |
offsetObjdict = d->firstIndex->PDO_RCV_MAP; |
|
241 |
lastIndex = d->lastIndex->PDO_RCV_MAP; |
|
242 |
pMappingCount = |
|
243 |
(UNS8 *) (d->objdict + offsetObjdict + |
|
244 |
numPdo)->pSubindex[0].pObject; |
|
245 |
numMap = 0; |
|
246 |
while (numMap < *pMappingCount) |
|
247 |
{ |
|
248 |
UNS8 tmp[] = { 0, 0, 0, 0, 0, 0, 0, 0 }; |
|
539
187058b4a4b8
Changed OD size from UNS8 to UNS32, and repercuted change to PDO and SDO. Thanks to Jari Kuusisto for patch.
etisserant
parents:
524
diff
changeset
|
249 |
UNS32 ByteSize; |
425 | 250 |
pMappingParameter = |
251 |
(UNS32 *) (d->objdict + offsetObjdict + |
|
252 |
numPdo)->pSubindex[numMap + 1].pObject; |
|
253 |
if (pMappingParameter == NULL) |
|
254 |
{ |
|
255 |
MSG_ERR (0x1937, "Couldn't get mapping parameter : ", |
|
256 |
numMap + 1); |
|
257 |
return 0xFF; |
|
258 |
} |
|
259 |
/* Get the addresse of the mapped variable. */ |
|
260 |
/* detail of *pMappingParameter : */ |
|
261 |
/* The 16 hight bits contains the index, the medium 8 bits |
|
262 |
contains the subindex, */ |
|
263 |
/* and the lower 8 bits contains the size of the mapped |
|
264 |
variable. */ |
|
265 |
||
266 |
Size = (UNS8) (*pMappingParameter & (UNS32) 0x000000FF); |
|
267 |
||
497 | 268 |
/* set variable only if Size != 0 and |
269 |
* Size is lower than remaining bits in the PDO */ |
|
425 | 270 |
if (Size && ((offset + Size) <= (m->len << 3))) |
271 |
{ |
|
272 |
/* copy bit per bit in little endian */ |
|
273 |
CopyBits (Size, (UNS8 *) & m->data[offset >> 3], |
|
274 |
offset % 8, 0, ((UNS8 *) tmp), 0, 0); |
|
497 | 275 |
/*1->8 => 1 ; 9->16 =>2, ... */ |
539
187058b4a4b8
Changed OD size from UNS8 to UNS32, and repercuted change to PDO and SDO. Thanks to Jari Kuusisto for patch.
etisserant
parents:
524
diff
changeset
|
276 |
ByteSize = (UNS32)(1 + ((Size - 1) >> 3)); |
425 | 277 |
|
278 |
objDict = |
|
279 |
setODentry (d, (UNS16) ((*pMappingParameter) >> 16), |
|
280 |
(UNS8) (((*pMappingParameter) >> 8) & |
|
281 |
0xFF), tmp, &ByteSize, 0); |
|
282 |
||
283 |
if (objDict != OD_SUCCESSFUL) |
|
284 |
{ |
|
285 |
MSG_ERR (0x1938, |
|
286 |
"error accessing to the mapped var : ", |
|
287 |
numMap + 1); |
|
288 |
MSG_WAR (0x2939, " Mapped at index : ", |
|
289 |
(*pMappingParameter) >> 16); |
|
290 |
MSG_WAR (0x2940, " subindex : ", |
|
291 |
((*pMappingParameter) >> 8) & 0xFF); |
|
292 |
return 0xFF; |
|
293 |
} |
|
294 |
||
295 |
MSG_WAR (0x3942, |
|
497 | 296 |
"Variable updated by PDO cobid : ", |
447
c9d01296d6d9
Endianess patch from Edward Karpicz, Lithuania :-)
etisserant
parents:
428
diff
changeset
|
297 |
UNS16_LE(m->cob_id)); |
425 | 298 |
MSG_WAR (0x3943, " Mapped at index : ", |
299 |
(*pMappingParameter) >> 16); |
|
300 |
MSG_WAR (0x3944, " subindex : ", |
|
301 |
((*pMappingParameter) >> 8) & 0xFF); |
|
302 |
offset += Size; |
|
303 |
} |
|
304 |
numMap++; |
|
305 |
} /* end loop while on mapped variables */ |
|
306 |
||
307 |
return 0; |
|
308 |
||
309 |
} /* end switch status */ |
|
310 |
} /* end while */ |
|
311 |
} /* end if Donnees */ |
|
312 |
else if ((*m).rtr == REQUEST) |
|
313 |
{ |
|
447
c9d01296d6d9
Endianess patch from Edward Karpicz, Lithuania :-)
etisserant
parents:
428
diff
changeset
|
314 |
MSG_WAR (0x3946, "Receive a PDO request cobId : ", UNS16_LE(m->cob_id)); |
425 | 315 |
status = state1; |
316 |
offsetObjdict = d->firstIndex->PDO_TRS; |
|
317 |
lastIndex = d->lastIndex->PDO_TRS; |
|
318 |
if (offsetObjdict) |
|
319 |
while (offsetObjdict <= lastIndex) |
|
320 |
{ |
|
321 |
/* study of all PDO stored in the objects dictionary */ |
|
322 |
||
323 |
switch (status) |
|
324 |
{ |
|
325 |
||
326 |
case state1: /* check the CobId */ |
|
327 |
/* get CobId of the dictionary which match to the received PDO |
|
328 |
*/ |
|
329 |
pwCobId = |
|
447
c9d01296d6d9
Endianess patch from Edward Karpicz, Lithuania :-)
etisserant
parents:
428
diff
changeset
|
330 |
(d->objdict + |
425 | 331 |
offsetObjdict)->pSubindex[1].pObject; |
447
c9d01296d6d9
Endianess patch from Edward Karpicz, Lithuania :-)
etisserant
parents:
428
diff
changeset
|
332 |
if (*pwCobId == UNS16_LE(m->cob_id)) |
425 | 333 |
{ |
334 |
status = state4; |
|
335 |
break; |
|
336 |
} |
|
337 |
else |
|
338 |
{ |
|
339 |
numPdo++; |
|
340 |
offsetObjdict++; |
|
341 |
} |
|
342 |
status = state1; |
|
343 |
break; |
|
344 |
||
345 |
||
346 |
case state4: /* check transmission type */ |
|
347 |
pTransmissionType = |
|
348 |
(UNS8 *) d->objdict[offsetObjdict].pSubindex[2].pObject; |
|
349 |
/* If PDO is to be sampled and send on RTR, do it */ |
|
350 |
if ((*pTransmissionType == TRANS_RTR)) |
|
351 |
{ |
|
352 |
status = state5; |
|
353 |
break; |
|
354 |
} |
|
497 | 355 |
/* RTR_SYNC means data prepared at SYNC, transmitted on RTR */ |
425 | 356 |
else if ((*pTransmissionType == TRANS_RTR_SYNC)) |
357 |
{ |
|
358 |
if (d->PDO_status[numPdo]. |
|
359 |
transmit_type_parameter & PDO_RTR_SYNC_READY) |
|
360 |
{ |
|
361 |
/*Data ready, just send */ |
|
362 |
canSend (d->canHandle, |
|
363 |
&d->PDO_status[numPdo].last_message); |
|
364 |
return 0; |
|
365 |
} |
|
366 |
else |
|
367 |
{ |
|
497 | 368 |
/* if SYNC did never occur, transmit current data */ |
425 | 369 |
/* DS301 do not tell what to do in such a case... */ |
370 |
MSG_ERR (0x1947, |
|
371 |
"Not ready RTR_SYNC TPDO send current data : ", |
|
447
c9d01296d6d9
Endianess patch from Edward Karpicz, Lithuania :-)
etisserant
parents:
428
diff
changeset
|
372 |
UNS16_LE(m->cob_id)); |
425 | 373 |
status = state5; |
374 |
} |
|
375 |
break; |
|
376 |
} |
|
377 |
else if ((*pTransmissionType == TRANS_EVENT_PROFILE) || |
|
378 |
(*pTransmissionType == TRANS_EVENT_SPECIFIC)) |
|
379 |
{ |
|
380 |
/* Zap all timers and inhibit flag */ |
|
381 |
d->PDO_status[numPdo].event_timer = |
|
382 |
DelAlarm (d->PDO_status[numPdo].event_timer); |
|
383 |
d->PDO_status[numPdo].inhibit_timer = |
|
384 |
DelAlarm (d->PDO_status[numPdo].inhibit_timer); |
|
385 |
d->PDO_status[numPdo].transmit_type_parameter &= |
|
386 |
~PDO_INHIBITED; |
|
497 | 387 |
/* Call PDOEventTimerAlarm for this TPDO, |
388 |
* this will trigger emission et reset timers */ |
|
425 | 389 |
PDOEventTimerAlarm (d, numPdo); |
390 |
return 0; |
|
391 |
} |
|
392 |
else |
|
393 |
{ |
|
394 |
/* The requested PDO is not to send on request. So, does |
|
395 |
nothing. */ |
|
396 |
MSG_WAR (0x2947, "PDO is not to send on request : ", |
|
447
c9d01296d6d9
Endianess patch from Edward Karpicz, Lithuania :-)
etisserant
parents:
428
diff
changeset
|
397 |
UNS16_LE(m->cob_id)); |
425 | 398 |
return 0xFF; |
399 |
} |
|
400 |
||
401 |
case state5: /* build and send requested PDO */ |
|
402 |
{ |
|
403 |
Message pdo; |
|
404 |
if (buildPDO (d, numPdo, &pdo)) |
|
405 |
{ |
|
447
c9d01296d6d9
Endianess patch from Edward Karpicz, Lithuania :-)
etisserant
parents:
428
diff
changeset
|
406 |
MSG_ERR (0x1948, " Couldn't build TPDO n�", numPdo); |
425 | 407 |
return 0xFF; |
408 |
} |
|
409 |
canSend (d->canHandle, &pdo); |
|
410 |
return 0; |
|
411 |
} |
|
412 |
} /* end switch status */ |
|
413 |
} /* end while */ |
|
414 |
} /* end if Requete */ |
|
208 | 415 |
|
0 | 416 |
return 0; |
417 |
} |
|
418 |
||
208 | 419 |
/*! |
420 |
** |
|
421 |
** |
|
422 |
** @param NbBits |
|
423 |
** @param SrcByteIndex |
|
424 |
** @param SrcBitIndex |
|
425 |
** @param SrcBigEndian |
|
426 |
** @param DestByteIndex |
|
427 |
** @param DestBitIndex |
|
428 |
** @param DestBigEndian |
|
429 |
**/ |
|
425 | 430 |
void |
431 |
CopyBits (UNS8 NbBits, UNS8 * SrcByteIndex, UNS8 SrcBitIndex, |
|
432 |
UNS8 SrcBigEndian, UNS8 * DestByteIndex, UNS8 DestBitIndex, |
|
433 |
UNS8 DestBigEndian) |
|
434 |
{ |
|
435 |
/* This loop copy as many bits that it can each time, crossing */ |
|
436 |
/* successively bytes */ |
|
208 | 437 |
// boundaries from LSB to MSB. |
425 | 438 |
while (NbBits > 0) |
208 | 439 |
{ |
425 | 440 |
/* Bit missalignement between src and dest */ |
208 | 441 |
INTEGER8 Vect = DestBitIndex - SrcBitIndex; |
442 |
||
425 | 443 |
/* We can now get src and align it to dest */ |
444 |
UNS8 Aligned = |
|
445 |
Vect > 0 ? *SrcByteIndex << Vect : *SrcByteIndex >> -Vect; |
|
446 |
||
447 |
/* Compute the nb of bit we will be able to copy */ |
|
448 |
UNS8 BoudaryLimit = (Vect > 0 ? 8 - DestBitIndex : 8 - SrcBitIndex); |
|
208 | 449 |
UNS8 BitsToCopy = BoudaryLimit > NbBits ? NbBits : BoudaryLimit; |
450 |
||
425 | 451 |
/* Create a mask that will serve in: */ |
452 |
UNS8 Mask = |
|
453 |
((0xff << (DestBitIndex + BitsToCopy)) | |
|
454 |
(0xff >> (8 - DestBitIndex))); |
|
455 |
||
456 |
/* - Filtering src */ |
|
208 | 457 |
UNS8 Filtered = Aligned & ~Mask; |
458 |
||
425 | 459 |
/* - and erase bits where we write, preserve where we don't */ |
208 | 460 |
*DestByteIndex &= Mask; |
461 |
||
425 | 462 |
/* Then write. */ |
463 |
*DestByteIndex |= Filtered; |
|
464 |
||
465 |
/*Compute next time cursors for src */ |
|
466 |
if ((SrcBitIndex += BitsToCopy) > 7) /* cross boundary ? */ |
|
208 | 467 |
{ |
425 | 468 |
SrcBitIndex = 0; /* First bit */ |
469 |
SrcByteIndex += (SrcBigEndian ? -1 : 1); /* Next byte */ |
|
215 | 470 |
} |
471 |
||
472 |
||
425 | 473 |
/*Compute next time cursors for dest */ |
474 |
if ((DestBitIndex += BitsToCopy) > 7) |
|
208 | 475 |
{ |
425 | 476 |
DestBitIndex = 0; /* First bit */ |
477 |
DestByteIndex += (DestBigEndian ? -1 : 1); /* Next byte */ |
|
215 | 478 |
} |
479 |
||
425 | 480 |
/*And decrement counter. */ |
208 | 481 |
NbBits -= BitsToCopy; |
482 |
} |
|
201 | 483 |
|
484 |
} |
|
425 | 485 |
|
611 | 486 |
static void sendPdo(CO_Data * d, UNS32 pdoNum, Message * pdo) |
487 |
{ |
|
488 |
/*store_as_last_message */ |
|
489 |
d->PDO_status[pdoNum].last_message = *pdo; |
|
629 | 490 |
MSG_WAR (0x396D, "sendPDO cobId :", UNS16_LE(pdo.cob_id)); |
491 |
MSG_WAR (0x396E, " Nb octets : ", pdo.len); |
|
611 | 492 |
|
493 |
canSend (d->canHandle, pdo); |
|
494 |
} |
|
495 |
||
496 |
||
208 | 497 |
/*! |
498 |
** |
|
499 |
** |
|
500 |
** @param d |
|
501 |
** |
|
502 |
** @return |
|
503 |
**/ |
|
235
f812bf6b7237
Preliminary implementation of Event Timer and Inhibit Timer driven TPDO
etisserant
parents:
217
diff
changeset
|
504 |
|
425 | 505 |
UNS8 |
506 |
sendPDOevent (CO_Data * d) |
|
235
f812bf6b7237
Preliminary implementation of Event Timer and Inhibit Timer driven TPDO
etisserant
parents:
217
diff
changeset
|
507 |
{ |
f812bf6b7237
Preliminary implementation of Event Timer and Inhibit Timer driven TPDO
etisserant
parents:
217
diff
changeset
|
508 |
/* Calls _sendPDOevent specifying it is not a sync event */ |
425 | 509 |
return _sendPDOevent (d, 0); |
510 |
} |
|
511 |
||
611 | 512 |
UNS8 |
649
3beb784bacee
CHANGED: - function sendOnePDOevent (CO_Data* d, UNS32 pdoNum) into sendOnePDOevent (CO_Data* d, UNS8 pdoNum)
Christian Taedcke
parents:
630
diff
changeset
|
513 |
sendOnePDOevent (CO_Data * d, UNS8 pdoNum) |
611 | 514 |
{ |
629 | 515 |
UNS16 offsetObjdict; |
516 |
Message pdo; |
|
611 | 517 |
if (!d->CurrentCommunicationState.csPDO || |
630
96919642e99c
Moced CosateQ's doc at the right place, and fix PDO INHIBIT bit check error again.
edouard
parents:
629
diff
changeset
|
518 |
(d->PDO_status[pdoNum].transmit_type_parameter & PDO_INHIBITED)) |
611 | 519 |
{ |
520 |
return 0; |
|
521 |
} |
|
522 |
||
649
3beb784bacee
CHANGED: - function sendOnePDOevent (CO_Data* d, UNS32 pdoNum) into sendOnePDOevent (CO_Data* d, UNS8 pdoNum)
Christian Taedcke
parents:
630
diff
changeset
|
523 |
offsetObjdict = (UNS16) (d->firstIndex->PDO_TRS + pdoNum); |
611 | 524 |
MSG_WAR (0x3968, " PDO is on EVENT. Trans type : ", |
525 |
*pTransmissionType); |
|
629 | 526 |
|
611 | 527 |
memset(&pdo, 0, sizeof(pdo)); |
528 |
if (buildPDO (d, pdoNum, &pdo)) |
|
529 |
{ |
|
530 |
MSG_ERR (0x3907, " Couldn't build TPDO number : ", |
|
531 |
pdoNum); |
|
619
96f84395154f
Enhancements for 'None' target : produce pre-linked object, remove some windows CRLF problems, fixed pedantic compiler warnings
edouard
parents:
611
diff
changeset
|
532 |
return 0; |
611 | 533 |
} |
534 |
||
535 |
/*Compare new and old PDO */ |
|
536 |
if (d->PDO_status[pdoNum].last_message.cob_id == pdo.cob_id |
|
537 |
&& d->PDO_status[pdoNum].last_message.len == pdo.len |
|
538 |
&& memcmp(d->PDO_status[pdoNum].last_message.data, |
|
539 |
pdo.data, 8) == 0 |
|
540 |
) |
|
541 |
{ |
|
542 |
/* No changes -> go to next pdo */ |
|
619
96f84395154f
Enhancements for 'None' target : produce pre-linked object, remove some windows CRLF problems, fixed pedantic compiler warnings
edouard
parents:
611
diff
changeset
|
543 |
return 0; |
611 | 544 |
} |
545 |
else |
|
546 |
{ |
|
547 |
||
548 |
TIMEVAL EventTimerDuration; |
|
549 |
TIMEVAL InhibitTimerDuration; |
|
550 |
||
551 |
MSG_WAR (0x306A, "Changes TPDO number : ", pdoNum); |
|
552 |
/* Changes detected -> transmit message */ |
|
553 |
EventTimerDuration = |
|
554 |
*(UNS16 *) d->objdict[offsetObjdict].pSubindex[5]. |
|
555 |
pObject; |
|
556 |
InhibitTimerDuration = |
|
557 |
*(UNS16 *) d->objdict[offsetObjdict].pSubindex[3]. |
|
558 |
pObject; |
|
559 |
||
560 |
/* Start both event_timer and inhibit_timer */ |
|
561 |
if (EventTimerDuration) |
|
562 |
{ |
|
563 |
DelAlarm (d->PDO_status[pdoNum].event_timer); |
|
564 |
d->PDO_status[pdoNum].event_timer = |
|
565 |
SetAlarm (d, pdoNum, &PDOEventTimerAlarm, |
|
566 |
MS_TO_TIMEVAL (EventTimerDuration), 0); |
|
567 |
} |
|
568 |
||
569 |
if (InhibitTimerDuration) |
|
570 |
{ |
|
571 |
DelAlarm (d->PDO_status[pdoNum].inhibit_timer); |
|
572 |
d->PDO_status[pdoNum].inhibit_timer = |
|
573 |
SetAlarm (d, pdoNum, &PDOInhibitTimerAlarm, |
|
574 |
US_TO_TIMEVAL (InhibitTimerDuration * |
|
575 |
100), 0); |
|
576 |
/* and inhibit TPDO */ |
|
577 |
d->PDO_status[pdoNum].transmit_type_parameter |= |
|
578 |
PDO_INHIBITED; |
|
579 |
} |
|
580 |
||
581 |
sendPdo(d, pdoNum, &pdo); |
|
582 |
} |
|
619
96f84395154f
Enhancements for 'None' target : produce pre-linked object, remove some windows CRLF problems, fixed pedantic compiler warnings
edouard
parents:
611
diff
changeset
|
583 |
return 1; |
611 | 584 |
} |
425 | 585 |
|
586 |
void |
|
587 |
PDOEventTimerAlarm (CO_Data * d, UNS32 pdoNum) |
|
588 |
{ |
|
589 |
/* This is needed to avoid deletion of re-attribuated timer */ |
|
590 |
d->PDO_status[pdoNum].event_timer = TIMER_NONE; |
|
591 |
/* force emission of PDO by artificially changing last emitted */ |
|
592 |
d->PDO_status[pdoNum].last_message.cob_id = 0; |
|
649
3beb784bacee
CHANGED: - function sendOnePDOevent (CO_Data* d, UNS32 pdoNum) into sendOnePDOevent (CO_Data* d, UNS8 pdoNum)
Christian Taedcke
parents:
630
diff
changeset
|
593 |
sendOnePDOevent (d, (UNS8) pdoNum); |
425 | 594 |
} |
595 |
||
596 |
void |
|
597 |
PDOInhibitTimerAlarm (CO_Data * d, UNS32 pdoNum) |
|
598 |
{ |
|
599 |
/* This is needed to avoid deletion of re-attribuated timer */ |
|
600 |
d->PDO_status[pdoNum].inhibit_timer = TIMER_NONE; |
|
601 |
/* Remove inhibit flag */ |
|
602 |
d->PDO_status[pdoNum].transmit_type_parameter &= ~PDO_INHIBITED; |
|
649
3beb784bacee
CHANGED: - function sendOnePDOevent (CO_Data* d, UNS32 pdoNum) into sendOnePDOevent (CO_Data* d, UNS8 pdoNum)
Christian Taedcke
parents:
630
diff
changeset
|
603 |
sendOnePDOevent (d, (UNS8) pdoNum); |
235
f812bf6b7237
Preliminary implementation of Event Timer and Inhibit Timer driven TPDO
etisserant
parents:
217
diff
changeset
|
604 |
} |
f812bf6b7237
Preliminary implementation of Event Timer and Inhibit Timer driven TPDO
etisserant
parents:
217
diff
changeset
|
605 |
|
f812bf6b7237
Preliminary implementation of Event Timer and Inhibit Timer driven TPDO
etisserant
parents:
217
diff
changeset
|
606 |
/*! |
f812bf6b7237
Preliminary implementation of Event Timer and Inhibit Timer driven TPDO
etisserant
parents:
217
diff
changeset
|
607 |
** |
f812bf6b7237
Preliminary implementation of Event Timer and Inhibit Timer driven TPDO
etisserant
parents:
217
diff
changeset
|
608 |
** |
f812bf6b7237
Preliminary implementation of Event Timer and Inhibit Timer driven TPDO
etisserant
parents:
217
diff
changeset
|
609 |
** @param d |
f812bf6b7237
Preliminary implementation of Event Timer and Inhibit Timer driven TPDO
etisserant
parents:
217
diff
changeset
|
610 |
** @param isSyncEvent |
f812bf6b7237
Preliminary implementation of Event Timer and Inhibit Timer driven TPDO
etisserant
parents:
217
diff
changeset
|
611 |
** |
f812bf6b7237
Preliminary implementation of Event Timer and Inhibit Timer driven TPDO
etisserant
parents:
217
diff
changeset
|
612 |
** @return |
f812bf6b7237
Preliminary implementation of Event Timer and Inhibit Timer driven TPDO
etisserant
parents:
217
diff
changeset
|
613 |
**/ |
f812bf6b7237
Preliminary implementation of Event Timer and Inhibit Timer driven TPDO
etisserant
parents:
217
diff
changeset
|
614 |
|
425 | 615 |
UNS8 |
616 |
_sendPDOevent (CO_Data * d, UNS8 isSyncEvent) |
|
617 |
{ |
|
618 |
UNS8 pdoNum = 0x00; /* number of the actual processed pdo-nr. */ |
|
619 |
UNS8 *pTransmissionType = NULL; |
|
235
f812bf6b7237
Preliminary implementation of Event Timer and Inhibit Timer driven TPDO
etisserant
parents:
217
diff
changeset
|
620 |
UNS8 status = state3; |
f812bf6b7237
Preliminary implementation of Event Timer and Inhibit Timer driven TPDO
etisserant
parents:
217
diff
changeset
|
621 |
UNS16 offsetObjdict = d->firstIndex->PDO_TRS; |
f812bf6b7237
Preliminary implementation of Event Timer and Inhibit Timer driven TPDO
etisserant
parents:
217
diff
changeset
|
622 |
UNS16 offsetObjdictMap = d->firstIndex->PDO_TRS_MAP; |
425 | 623 |
UNS16 lastIndex = d->lastIndex->PDO_TRS; |
624 |
||
611 | 625 |
if (!d->CurrentCommunicationState.csPDO) |
626 |
{ |
|
627 |
return 0; |
|
628 |
} |
|
629 |
||
630 |
||
425 | 631 |
/* study all PDO stored in the objects dictionary */ |
632 |
if (offsetObjdict) |
|
633 |
{ |
|
497 | 634 |
Message pdo;/* = Message_Initializer;*/ |
635 |
memset(&pdo, 0, sizeof(pdo)); |
|
425 | 636 |
while (offsetObjdict <= lastIndex) |
235
f812bf6b7237
Preliminary implementation of Event Timer and Inhibit Timer driven TPDO
etisserant
parents:
217
diff
changeset
|
637 |
{ |
425 | 638 |
switch (status) |
639 |
{ |
|
640 |
case state3: |
|
497 | 641 |
if ( /* bSubCount always 5 with objdictedit -> check disabled */ |
642 |
/*d->objdict[offsetObjdict].bSubCount < 5 ||*/ |
|
425 | 643 |
/* check if TPDO is not valid */ |
644 |
*(UNS32 *) d->objdict[offsetObjdict].pSubindex[1]. |
|
645 |
pObject & 0x80000000) |
|
646 |
{ |
|
647 |
MSG_WAR (0x3960, "Not a valid PDO ", 0x1800 + pdoNum); |
|
648 |
/*Go next TPDO */ |
|
649 |
status = state11; |
|
650 |
break; |
|
651 |
} |
|
652 |
/* get the PDO transmission type */ |
|
653 |
pTransmissionType = |
|
654 |
(UNS8 *) d->objdict[offsetObjdict].pSubindex[2].pObject; |
|
655 |
MSG_WAR (0x3962, "Reading PDO at index : ", 0x1800 + pdoNum); |
|
656 |
||
657 |
/* check if transmission type is SYNCRONOUS */ |
|
497 | 658 |
/* message transmited every n SYNC with n=TransmissionType */ |
425 | 659 |
if (isSyncEvent && |
660 |
(*pTransmissionType >= TRANS_SYNC_MIN) && |
|
661 |
(*pTransmissionType <= TRANS_SYNC_MAX) && |
|
662 |
(++d->PDO_status[pdoNum].transmit_type_parameter == |
|
663 |
*pTransmissionType)) |
|
664 |
{ |
|
665 |
/*Reset count of SYNC */ |
|
666 |
d->PDO_status[pdoNum].transmit_type_parameter = 0; |
|
667 |
MSG_WAR (0x3964, " PDO is on SYNCHRO. Trans type : ", |
|
668 |
*pTransmissionType); |
|
497 | 669 |
memset(&pdo, 0, sizeof(pdo)); |
670 |
/*{ |
|
425 | 671 |
Message msg_init = Message_Initializer; |
672 |
pdo = msg_init; |
|
497 | 673 |
}*/ |
425 | 674 |
if (buildPDO (d, pdoNum, &pdo)) |
675 |
{ |
|
676 |
MSG_ERR (0x1906, " Couldn't build TPDO number : ", |
|
677 |
pdoNum); |
|
678 |
status = state11; |
|
679 |
break; |
|
680 |
} |
|
681 |
status = state5; |
|
682 |
/* If transmission RTR, with data sampled on SYNC */ |
|
683 |
} |
|
684 |
else if (isSyncEvent && (*pTransmissionType == TRANS_RTR_SYNC)) |
|
685 |
{ |
|
686 |
if (buildPDO |
|
687 |
(d, pdoNum, &d->PDO_status[pdoNum].last_message)) |
|
688 |
{ |
|
689 |
MSG_ERR (0x1966, " Couldn't build TPDO number : ", |
|
690 |
pdoNum); |
|
691 |
d->PDO_status[pdoNum].transmit_type_parameter &= |
|
692 |
~PDO_RTR_SYNC_READY; |
|
693 |
} |
|
694 |
else |
|
695 |
{ |
|
696 |
d->PDO_status[pdoNum].transmit_type_parameter |= |
|
697 |
PDO_RTR_SYNC_READY; |
|
698 |
} |
|
699 |
status = state11; |
|
700 |
break; |
|
701 |
/* If transmission on Event and not inhibited, check for changes */ |
|
702 |
} |
|
426
8011552b1319
Preliminary support for TRANS_SYNC_ACYCLIC (0) transmit type.
etisserant
parents:
425
diff
changeset
|
703 |
else |
611 | 704 |
if ( (isSyncEvent && (*pTransmissionType == TRANS_SYNC_ACYCLIC)) |
705 |
|| |
|
706 |
(!isSyncEvent && (*pTransmissionType == TRANS_EVENT_PROFILE || *pTransmissionType == TRANS_EVENT_SPECIFIC) |
|
707 |
&& !(d->PDO_status[pdoNum].transmit_type_parameter & PDO_INHIBITED))) |
|
425 | 708 |
{ |
611 | 709 |
sendOnePDOevent(d, pdoNum); |
710 |
status = state11; |
|
425 | 711 |
} |
712 |
else |
|
713 |
{ |
|
714 |
MSG_WAR (0x306C, |
|
715 |
" PDO is not on EVENT or synchro or not at this SYNC. Trans type : ", |
|
716 |
*pTransmissionType); |
|
717 |
status = state11; |
|
718 |
} |
|
719 |
break; |
|
720 |
case state5: /*Send the pdo */ |
|
611 | 721 |
sendPdo(d, pdoNum, &pdo); |
425 | 722 |
status = state11; |
723 |
break; |
|
724 |
case state11: /*Go to next TPDO */ |
|
725 |
pdoNum++; |
|
726 |
offsetObjdict++; |
|
727 |
offsetObjdictMap++; |
|
728 |
MSG_WAR (0x3970, "next pdo index : ", pdoNum); |
|
729 |
status = state3; |
|
730 |
break; |
|
731 |
||
732 |
default: |
|
733 |
MSG_ERR (0x1972, "Unknown state has been reached : %d", status); |
|
734 |
return 0xFF; |
|
735 |
} /* end switch case */ |
|
736 |
||
737 |
} /* end while */ |
|
738 |
} |
|
235
f812bf6b7237
Preliminary implementation of Event Timer and Inhibit Timer driven TPDO
etisserant
parents:
217
diff
changeset
|
739 |
return 0; |
f812bf6b7237
Preliminary implementation of Event Timer and Inhibit Timer driven TPDO
etisserant
parents:
217
diff
changeset
|
740 |
} |
f812bf6b7237
Preliminary implementation of Event Timer and Inhibit Timer driven TPDO
etisserant
parents:
217
diff
changeset
|
741 |
|
236
905677ed00f3
Full preliminary implementation of TPDO transmit type:
etisserant
parents:
235
diff
changeset
|
742 |
/*! |
905677ed00f3
Full preliminary implementation of TPDO transmit type:
etisserant
parents:
235
diff
changeset
|
743 |
** |
905677ed00f3
Full preliminary implementation of TPDO transmit type:
etisserant
parents:
235
diff
changeset
|
744 |
** |
905677ed00f3
Full preliminary implementation of TPDO transmit type:
etisserant
parents:
235
diff
changeset
|
745 |
** @param d |
905677ed00f3
Full preliminary implementation of TPDO transmit type:
etisserant
parents:
235
diff
changeset
|
746 |
** @param OD_entry |
524 | 747 |
** @param bSubindex |
236
905677ed00f3
Full preliminary implementation of TPDO transmit type:
etisserant
parents:
235
diff
changeset
|
748 |
** @return always 0 |
905677ed00f3
Full preliminary implementation of TPDO transmit type:
etisserant
parents:
235
diff
changeset
|
749 |
**/ |
905677ed00f3
Full preliminary implementation of TPDO transmit type:
etisserant
parents:
235
diff
changeset
|
750 |
|
425 | 751 |
UNS32 |
752 |
TPDO_Communication_Parameter_Callback (CO_Data * d, |
|
753 |
const indextable * OD_entry, |
|
754 |
UNS8 bSubindex) |
|
236
905677ed00f3
Full preliminary implementation of TPDO transmit type:
etisserant
parents:
235
diff
changeset
|
755 |
{ |
905677ed00f3
Full preliminary implementation of TPDO transmit type:
etisserant
parents:
235
diff
changeset
|
756 |
/* If PDO are actives */ |
425 | 757 |
if (d->CurrentCommunicationState.csPDO) |
758 |
switch (bSubindex) |
|
759 |
{ |
|
760 |
case 2: /* Changed transmition type */ |
|
761 |
case 3: /* Changed inhibit time */ |
|
762 |
case 5: /* Changed event time */ |
|
763 |
{ |
|
764 |
const indextable *TPDO_com = d->objdict + d->firstIndex->PDO_TRS; |
|
649
3beb784bacee
CHANGED: - function sendOnePDOevent (CO_Data* d, UNS32 pdoNum) into sendOnePDOevent (CO_Data* d, UNS8 pdoNum)
Christian Taedcke
parents:
630
diff
changeset
|
765 |
UNS8 numPdo = (UNS8) (OD_entry - TPDO_com); /* number of the actual processed pdo-nr. */ |
425 | 766 |
|
236
905677ed00f3
Full preliminary implementation of TPDO transmit type:
etisserant
parents:
235
diff
changeset
|
767 |
/* Zap all timers and inhibit flag */ |
425 | 768 |
d->PDO_status[numPdo].event_timer = |
769 |
DelAlarm (d->PDO_status[numPdo].event_timer); |
|
770 |
d->PDO_status[numPdo].inhibit_timer = |
|
771 |
DelAlarm (d->PDO_status[numPdo].inhibit_timer); |
|
236
905677ed00f3
Full preliminary implementation of TPDO transmit type:
etisserant
parents:
235
diff
changeset
|
772 |
d->PDO_status[numPdo].transmit_type_parameter = 0; |
905677ed00f3
Full preliminary implementation of TPDO transmit type:
etisserant
parents:
235
diff
changeset
|
773 |
/* Call PDOEventTimerAlarm for this TPDO, this will trigger emission et reset timers */ |
425 | 774 |
PDOEventTimerAlarm (d, numPdo); |
236
905677ed00f3
Full preliminary implementation of TPDO transmit type:
etisserant
parents:
235
diff
changeset
|
775 |
return 0; |
425 | 776 |
} |
777 |
||
778 |
default: /* other subindex are ignored */ |
|
779 |
break; |
|
780 |
} |
|
236
905677ed00f3
Full preliminary implementation of TPDO transmit type:
etisserant
parents:
235
diff
changeset
|
781 |
return 0; |
905677ed00f3
Full preliminary implementation of TPDO transmit type:
etisserant
parents:
235
diff
changeset
|
782 |
} |
905677ed00f3
Full preliminary implementation of TPDO transmit type:
etisserant
parents:
235
diff
changeset
|
783 |
|
425 | 784 |
void |
785 |
PDOInit (CO_Data * d) |
|
235
f812bf6b7237
Preliminary implementation of Event Timer and Inhibit Timer driven TPDO
etisserant
parents:
217
diff
changeset
|
786 |
{ |
236
905677ed00f3
Full preliminary implementation of TPDO transmit type:
etisserant
parents:
235
diff
changeset
|
787 |
/* For each TPDO mapping parameters */ |
425 | 788 |
UNS16 pdoIndex = 0x1800; /* OD index of TDPO */ |
236
905677ed00f3
Full preliminary implementation of TPDO transmit type:
etisserant
parents:
235
diff
changeset
|
789 |
|
905677ed00f3
Full preliminary implementation of TPDO transmit type:
etisserant
parents:
235
diff
changeset
|
790 |
UNS16 offsetObjdict = d->firstIndex->PDO_TRS; |
905677ed00f3
Full preliminary implementation of TPDO transmit type:
etisserant
parents:
235
diff
changeset
|
791 |
UNS16 lastIndex = d->lastIndex->PDO_TRS; |
425 | 792 |
if (offsetObjdict) |
793 |
while (offsetObjdict <= lastIndex) |
|
794 |
{ |
|
795 |
/* Assign callbacks to sensible TPDO mapping subindexes */ |
|
796 |
UNS32 errorCode; |
|
797 |
ODCallback_t *CallbackList; |
|
798 |
/* Find callback list */ |
|
799 |
scanIndexOD (d, pdoIndex, &errorCode, &CallbackList); |
|
800 |
if (errorCode == OD_SUCCESSFUL && CallbackList) |
|
801 |
{ |
|
802 |
/*Assign callbacks to corresponding subindex */ |
|
803 |
/* Transmission type */ |
|
804 |
CallbackList[2] = &TPDO_Communication_Parameter_Callback; |
|
805 |
/* Inhibit time */ |
|
806 |
CallbackList[3] = &TPDO_Communication_Parameter_Callback; |
|
807 |
/* Event timer */ |
|
808 |
CallbackList[5] = &TPDO_Communication_Parameter_Callback; |
|
809 |
} |
|
810 |
pdoIndex++; |
|
811 |
offsetObjdict++; |
|
812 |
} |
|
236
905677ed00f3
Full preliminary implementation of TPDO transmit type:
etisserant
parents:
235
diff
changeset
|
813 |
|
905677ed00f3
Full preliminary implementation of TPDO transmit type:
etisserant
parents:
235
diff
changeset
|
814 |
/* Trigger a non-sync event */ |
425 | 815 |
_sendPDOevent (d, 0); |
816 |
} |
|
817 |
||
818 |
void |
|
819 |
PDOStop (CO_Data * d) |
|
235
f812bf6b7237
Preliminary implementation of Event Timer and Inhibit Timer driven TPDO
etisserant
parents:
217
diff
changeset
|
820 |
{ |
236
905677ed00f3
Full preliminary implementation of TPDO transmit type:
etisserant
parents:
235
diff
changeset
|
821 |
/* For each TPDO mapping parameters */ |
425 | 822 |
UNS8 pdoNum = 0x00; /* number of the actual processed pdo-nr. */ |
235
f812bf6b7237
Preliminary implementation of Event Timer and Inhibit Timer driven TPDO
etisserant
parents:
217
diff
changeset
|
823 |
UNS16 offsetObjdict = d->firstIndex->PDO_TRS; |
f812bf6b7237
Preliminary implementation of Event Timer and Inhibit Timer driven TPDO
etisserant
parents:
217
diff
changeset
|
824 |
UNS16 lastIndex = d->lastIndex->PDO_TRS; |
425 | 825 |
if (offsetObjdict) |
826 |
while (offsetObjdict <= lastIndex) |
|
827 |
{ |
|
828 |
/* Delete TPDO timers */ |
|
829 |
d->PDO_status[pdoNum].event_timer = |
|
830 |
DelAlarm (d->PDO_status[pdoNum].event_timer); |
|
831 |
d->PDO_status[pdoNum].inhibit_timer = |
|
832 |
DelAlarm (d->PDO_status[pdoNum].inhibit_timer); |
|
833 |
/* Reset transmit type parameter */ |
|
834 |
d->PDO_status[pdoNum].transmit_type_parameter = 0; |
|
835 |
d->PDO_status[pdoNum].last_message.cob_id = 0; |
|
836 |
pdoNum++; |
|
837 |
offsetObjdict++; |
|
838 |
} |
|
839 |
} |