author | lbessard |
Thu, 06 Dec 2007 17:55:46 +0100 | |
changeset 323 | 4df7e6d2d1db |
parent 320 | f82e758840bd |
child 349 | 1e6dd4ef46b9 |
permissions | -rw-r--r-- |
178 | 1 |
/* |
207 | 2 |
This file is part of CanFestival, a library implementing CanOpen |
3 |
Stack. |
|
178 | 4 |
|
207 | 5 |
Copyright (C): Edouard TISSERANT and Francis DUPIN |
178 | 6 |
|
207 | 7 |
See COPYING file for copyrights details. |
178 | 8 |
|
207 | 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. |
|
178 | 13 |
|
207 | 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. |
|
178 | 18 |
|
207 | 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 |
|
178 | 23 |
*/ |
24 |
||
210 | 25 |
|
208 | 26 |
/** |
207 | 27 |
** @file dcf.c |
28 |
** @author Edouard TISSERANT and Francis DUPIN |
|
29 |
** @date Mon Jun 4 17:06:12 2007 |
|
30 |
** |
|
208 | 31 |
** @brief EXEMPLE OF SOMMARY |
207 | 32 |
** |
33 |
** |
|
34 |
*/ |
|
215 | 35 |
|
36 |
||
178 | 37 |
#include "objacces.h" |
38 |
#include "sdo.h" |
|
39 |
#include "dcf.h" |
|
200 | 40 |
#include "sysdep.h" |
178 | 41 |
|
207 | 42 |
extern UNS8 _writeNetworkDict (CO_Data* d, UNS8 nodeId, UNS16 index, |
43 |
UNS8 subIndex, UNS8 count, UNS8 dataType, void *data, SDOCallback_t Callback, UNS8 endianize); |
|
204
44ce74232ccb
Some fixes for visual studio C compiler compatiblity.
etisserant
parents:
202
diff
changeset
|
44 |
|
178 | 45 |
|
208 | 46 |
/** |
207 | 47 |
** |
48 |
** |
|
49 |
** @param d |
|
50 |
** @param nodeId |
|
208 | 51 |
*/ |
178 | 52 |
static void CheckSDOAndContinue(CO_Data* d, UNS8 nodeId) |
53 |
{ |
|
207 | 54 |
UNS32 abortCode; |
191 | 55 |
|
207 | 56 |
if(getWriteResultNetworkDict (d, nodeId, &abortCode) != SDO_FINISHED) |
57 |
{ |
|
58 |
MSG_ERR(0x1A01, "SDO error in consise DCF", abortCode); |
|
59 |
MSG_WAR(0x2A02, "server node : ", nodeId); |
|
60 |
} |
|
61 |
||
62 |
closeSDOtransfer(d, nodeId, SDO_CLIENT); |
|
320
f82e758840bd
Some fixes suggested by Luis Jim?nez, plus some minor enhancements in DCF.
etisserant
parents:
251
diff
changeset
|
63 |
send_consise_dcf(d,nodeId); |
178 | 64 |
} |
65 |
||
208 | 66 |
/** |
207 | 67 |
** |
68 |
** |
|
69 |
** @param d |
|
70 |
** @param nodeId |
|
71 |
** |
|
72 |
** @return |
|
208 | 73 |
*/ |
320
f82e758840bd
Some fixes suggested by Luis Jim?nez, plus some minor enhancements in DCF.
etisserant
parents:
251
diff
changeset
|
74 |
void send_consise_dcf(CO_Data* d,UNS8 nodeId) |
178 | 75 |
{ |
320
f82e758840bd
Some fixes suggested by Luis Jim?nez, plus some minor enhancements in DCF.
etisserant
parents:
251
diff
changeset
|
76 |
/* Fetch DCF OD entry, if not already done */ |
f82e758840bd
Some fixes suggested by Luis Jim?nez, plus some minor enhancements in DCF.
etisserant
parents:
251
diff
changeset
|
77 |
if(!d->dcf_odentry) |
f82e758840bd
Some fixes suggested by Luis Jim?nez, plus some minor enhancements in DCF.
etisserant
parents:
251
diff
changeset
|
78 |
{ |
f82e758840bd
Some fixes suggested by Luis Jim?nez, plus some minor enhancements in DCF.
etisserant
parents:
251
diff
changeset
|
79 |
UNS32 errorCode; |
f82e758840bd
Some fixes suggested by Luis Jim?nez, plus some minor enhancements in DCF.
etisserant
parents:
251
diff
changeset
|
80 |
ODCallback_t *Callback; |
f82e758840bd
Some fixes suggested by Luis Jim?nez, plus some minor enhancements in DCF.
etisserant
parents:
251
diff
changeset
|
81 |
d->dcf_odentry = (*d->scanIndexOD)(0x1F22, &errorCode, &Callback); |
f82e758840bd
Some fixes suggested by Luis Jim?nez, plus some minor enhancements in DCF.
etisserant
parents:
251
diff
changeset
|
82 |
/* If DCF entry do not exist... Nothing to do.*/ |
f82e758840bd
Some fixes suggested by Luis Jim?nez, plus some minor enhancements in DCF.
etisserant
parents:
251
diff
changeset
|
83 |
if (errorCode != OD_SUCCESSFUL) goto DCF_finish; |
f82e758840bd
Some fixes suggested by Luis Jim?nez, plus some minor enhancements in DCF.
etisserant
parents:
251
diff
changeset
|
84 |
} |
178 | 85 |
|
320
f82e758840bd
Some fixes suggested by Luis Jim?nez, plus some minor enhancements in DCF.
etisserant
parents:
251
diff
changeset
|
86 |
/* Loop on all DCF subindexes, corresponding to nodes ID */ |
f82e758840bd
Some fixes suggested by Luis Jim?nez, plus some minor enhancements in DCF.
etisserant
parents:
251
diff
changeset
|
87 |
while (nodeId < d->dcf_odentry->bSubCount){ |
f82e758840bd
Some fixes suggested by Luis Jim?nez, plus some minor enhancements in DCF.
etisserant
parents:
251
diff
changeset
|
88 |
UNS32 nb_entries; |
178 | 89 |
|
320
f82e758840bd
Some fixes suggested by Luis Jim?nez, plus some minor enhancements in DCF.
etisserant
parents:
251
diff
changeset
|
90 |
UNS8 szData = d->dcf_odentry->pSubindex[nodeId].size; |
207 | 91 |
UNS8* dcfend; |
92 |
||
93 |
{ |
|
320
f82e758840bd
Some fixes suggested by Luis Jim?nez, plus some minor enhancements in DCF.
etisserant
parents:
251
diff
changeset
|
94 |
UNS8* dcf = *((UNS8**)d->dcf_odentry->pSubindex[nodeId].pObject); |
207 | 95 |
dcfend = dcf + szData; |
96 |
if (!d->dcf_cursor){ |
|
97 |
d->dcf_cursor = (UNS8*)dcf + 4; |
|
320
f82e758840bd
Some fixes suggested by Luis Jim?nez, plus some minor enhancements in DCF.
etisserant
parents:
251
diff
changeset
|
98 |
d->dcf_entries_count = 0; |
207 | 99 |
} |
320
f82e758840bd
Some fixes suggested by Luis Jim?nez, plus some minor enhancements in DCF.
etisserant
parents:
251
diff
changeset
|
100 |
nb_entries = UNS32_LE(*((UNS32*)dcf)); |
207 | 101 |
} |
102 |
||
215 | 103 |
/* condition on consise DCF string for NodeID, if big enough */ |
320
f82e758840bd
Some fixes suggested by Luis Jim?nez, plus some minor enhancements in DCF.
etisserant
parents:
251
diff
changeset
|
104 |
if((UNS8*)d->dcf_cursor + 7 < (UNS8*)dcfend && d->dcf_entries_count < nb_entries) |
207 | 105 |
{ |
320
f82e758840bd
Some fixes suggested by Luis Jim?nez, plus some minor enhancements in DCF.
etisserant
parents:
251
diff
changeset
|
106 |
UNS16 target_Index; |
f82e758840bd
Some fixes suggested by Luis Jim?nez, plus some minor enhancements in DCF.
etisserant
parents:
251
diff
changeset
|
107 |
UNS8 target_Subindex; |
f82e758840bd
Some fixes suggested by Luis Jim?nez, plus some minor enhancements in DCF.
etisserant
parents:
251
diff
changeset
|
108 |
UNS32 target_Size; |
f82e758840bd
Some fixes suggested by Luis Jim?nez, plus some minor enhancements in DCF.
etisserant
parents:
251
diff
changeset
|
109 |
|
215 | 110 |
/* pointer to the DCF string for NodeID */ |
207 | 111 |
target_Index = UNS16_LE(*((UNS16*)(d->dcf_cursor))); d->dcf_cursor += 2; |
251 | 112 |
target_Subindex = *((UNS8*)((UNS8*)d->dcf_cursor++)); |
207 | 113 |
target_Size = UNS32_LE(*((UNS32*)(d->dcf_cursor))); d->dcf_cursor += 4; |
114 |
||
320
f82e758840bd
Some fixes suggested by Luis Jim?nez, plus some minor enhancements in DCF.
etisserant
parents:
251
diff
changeset
|
115 |
_writeNetworkDict(d, /* CO_Data* d*/ |
215 | 116 |
nodeId, /* UNS8 nodeId*/ |
117 |
target_Index, /* UNS16 index*/ |
|
118 |
target_Subindex, /* UNS8 subindex*/ |
|
119 |
target_Size, /* UNS8 count*/ |
|
120 |
0, /* UNS8 dataType*/ |
|
121 |
d->dcf_cursor,/* void *data*/ |
|
122 |
CheckSDOAndContinue,/* SDOCallback_t |
|
207 | 123 |
Callback*/ |
215 | 124 |
0); /* no endianize*/ |
125 |
/* Push d->dcf_cursor to the end of data*/ |
|
207 | 126 |
|
127 |
d->dcf_cursor += target_Size; |
|
320
f82e758840bd
Some fixes suggested by Luis Jim?nez, plus some minor enhancements in DCF.
etisserant
parents:
251
diff
changeset
|
128 |
d->dcf_entries_count++; |
207 | 129 |
|
320
f82e758840bd
Some fixes suggested by Luis Jim?nez, plus some minor enhancements in DCF.
etisserant
parents:
251
diff
changeset
|
130 |
/* send_consise_dcf will be called by CheckSDOAndContinue for next DCF entry*/ |
f82e758840bd
Some fixes suggested by Luis Jim?nez, plus some minor enhancements in DCF.
etisserant
parents:
251
diff
changeset
|
131 |
return; |
207 | 132 |
} |
133 |
nodeId++; |
|
134 |
d->dcf_cursor = NULL; |
|
135 |
} |
|
320
f82e758840bd
Some fixes suggested by Luis Jim?nez, plus some minor enhancements in DCF.
etisserant
parents:
251
diff
changeset
|
136 |
DCF_finish: |
215 | 137 |
/* Switch Master to preOperational state */ |
207 | 138 |
(*d->preOperational)(); |
178 | 139 |
} |