author | etisserant |
Wed, 18 Jun 2008 10:57:30 +0200 | |
changeset 480 | d0d76932ad74 |
parent 469 | f2b07ea215b5 |
child 539 | 187058b4a4b8 |
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 |
*/ |
208 | 24 |
/*! |
25 |
** @file objacces.c |
|
26 |
** @author Edouard TISSERANT and Francis DUPIN |
|
27 |
** @date Tue Jun 5 08:55:23 2007 |
|
28 |
** |
|
29 |
** @brief |
|
30 |
** |
|
31 |
** |
|
32 |
*/ |
|
33 |
||
34 |
||
35 |
||
0 | 36 |
|
71 | 37 |
/* #define DEBUG_WAR_CONSOLE_ON */ |
38 |
/* #define DEBUG_ERR_CONSOLE_ON */ |
|
11 | 39 |
|
1
b3dc740b4b04
Commit some Fix from Francis on sdo.c and abjacces.c. Fix endianisation problems while accessing OD. Also fix SDO abord handling bug.
etisserant
parents:
0
diff
changeset
|
40 |
|
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:
215
diff
changeset
|
41 |
#include "data.h" |
0 | 42 |
|
8 | 43 |
|
208 | 44 |
/*! |
45 |
** |
|
46 |
** |
|
47 |
** @param index |
|
48 |
** @param subIndex |
|
49 |
** @param sizeDataDict |
|
50 |
** @param sizeDataGiven |
|
51 |
** @param code |
|
52 |
** |
|
53 |
** @return |
|
54 |
**/ |
|
469
f2b07ea215b5
Applied edward's patch for OD acces macros (optimization) and boudaries check (safety).
etisserant
parents:
450
diff
changeset
|
55 |
#ifdef DEBUG_WAR_CONSOLE_ON |
208 | 56 |
UNS8 accessDictionaryError(UNS16 index, UNS8 subIndex, |
57 |
UNS8 sizeDataDict, UNS8 sizeDataGiven, UNS32 code) |
|
0 | 58 |
{ |
59 |
MSG_WAR(0x2B09,"Dictionary index : ", index); |
|
60 |
MSG_WAR(0X2B10," subindex : ", subIndex); |
|
61 |
switch (code) { |
|
208 | 62 |
case OD_NO_SUCH_OBJECT: |
63 |
MSG_WAR(0x2B11,"Index not found ", index); |
|
64 |
break; |
|
65 |
case OD_NO_SUCH_SUBINDEX : |
|
66 |
MSG_WAR(0x2B12,"SubIndex not found ", subIndex); |
|
67 |
break; |
|
68 |
case OD_WRITE_NOT_ALLOWED : |
|
69 |
MSG_WAR(0x2B13,"Write not allowed, data is read only ", index); |
|
70 |
break; |
|
71 |
case OD_LENGTH_DATA_INVALID : |
|
72 |
MSG_WAR(0x2B14,"Conflict size data. Should be (bytes) : ", sizeDataDict); |
|
73 |
MSG_WAR(0x2B15,"But you have given the size : ", sizeDataGiven); |
|
74 |
break; |
|
75 |
case OD_NOT_MAPPABLE : |
|
76 |
MSG_WAR(0x2B16,"Not mappable data in a PDO at index : ", index); |
|
77 |
break; |
|
78 |
case OD_VALUE_TOO_LOW : |
|
79 |
MSG_WAR(0x2B17,"Value range error : value too low. SDOabort : ", code); |
|
80 |
break; |
|
81 |
case OD_VALUE_TOO_HIGH : |
|
82 |
MSG_WAR(0x2B18,"Value range error : value too high. SDOabort : ", code); |
|
83 |
break; |
|
0 | 84 |
default : |
85 |
MSG_WAR(0x2B20, "Unknown error code : ", code); |
|
86 |
} |
|
469
f2b07ea215b5
Applied edward's patch for OD acces macros (optimization) and boudaries check (safety).
etisserant
parents:
450
diff
changeset
|
87 |
return 0; |
f2b07ea215b5
Applied edward's patch for OD acces macros (optimization) and boudaries check (safety).
etisserant
parents:
450
diff
changeset
|
88 |
} |
f2b07ea215b5
Applied edward's patch for OD acces macros (optimization) and boudaries check (safety).
etisserant
parents:
450
diff
changeset
|
89 |
#else |
f2b07ea215b5
Applied edward's patch for OD acces macros (optimization) and boudaries check (safety).
etisserant
parents:
450
diff
changeset
|
90 |
#define accessDictionaryError(index, subIndex, sizeDataDict, sizeDataGiven, code) |
75
debc68b124b7
compiler compatibility : accessDictionaryError contains nothing out of debogue mode
frdupin
parents:
71
diff
changeset
|
91 |
#endif |
208 | 92 |
|
93 |
/*! |
|
94 |
** |
|
95 |
** |
|
96 |
** @param d |
|
97 |
** @param wIndex |
|
98 |
** @param bSubindex |
|
99 |
** @param pDestData |
|
100 |
** @param pExpectedSize |
|
101 |
** @param pDataType |
|
102 |
** @param checkAccess |
|
103 |
** @param endianize |
|
104 |
** |
|
105 |
** @return |
|
106 |
**/ |
|
107 |
UNS32 _getODentry( CO_Data* d, |
|
108 |
UNS16 wIndex, |
|
109 |
UNS8 bSubindex, |
|
110 |
void * pDestData, |
|
111 |
UNS8 * pExpectedSize, |
|
112 |
UNS8 * pDataType, |
|
113 |
UNS8 checkAccess, |
|
114 |
UNS8 endianize) |
|
215 | 115 |
{ /* DO NOT USE MSG_ERR because the macro may send a PDO -> infinite |
208 | 116 |
loop if it fails. */ |
0 | 117 |
UNS32 errorCode; |
118 |
UNS8 szData; |
|
119 |
const indextable *ptrTable; |
|
120 |
ODCallback_t *Callback; |
|
121 |
||
122 |
ptrTable = (*d->scanIndexOD)(wIndex, &errorCode, &Callback); |
|
123 |
||
124 |
if (errorCode != OD_SUCCESSFUL) |
|
125 |
return errorCode; |
|
126 |
if( ptrTable->bSubCount <= bSubindex ) { |
|
71 | 127 |
/* Subindex not found */ |
0 | 128 |
accessDictionaryError(wIndex, bSubindex, 0, 0, OD_NO_SUCH_SUBINDEX); |
129 |
return OD_NO_SUCH_SUBINDEX; |
|
130 |
} |
|
208 | 131 |
|
402
77f875d45250
Fixed faulty read access checking on OD access. Added read acces s checking in SDO (was disabled)
etisserant
parents:
378
diff
changeset
|
132 |
if (checkAccess && (ptrTable->pSubindex[bSubindex].bAccessType & WO)) { |
208 | 133 |
MSG_WAR(0x2B30, "Access Type : ", ptrTable->pSubindex[bSubindex].bAccessType); |
450 | 134 |
accessDictionaryError(wIndex, bSubindex, 0, 0, OD_READ_NOT_ALLOWED); |
0 | 135 |
return OD_READ_NOT_ALLOWED; |
136 |
} |
|
137 |
||
138 |
*pDataType = ptrTable->pSubindex[bSubindex].bDataType; |
|
208 | 139 |
szData = ptrTable->pSubindex[bSubindex].size; |
140 |
||
141 |
if(*pExpectedSize == 0 || |
|
142 |
*pExpectedSize == szData || |
|
421
6221b4db8c42
Added support for null terminated strings as VISIBLE_STRING.
etisserant
parents:
419
diff
changeset
|
143 |
/* allow to fetch a shorter string than expected */ |
6221b4db8c42
Added support for null terminated strings as VISIBLE_STRING.
etisserant
parents:
419
diff
changeset
|
144 |
(*pDataType >= visible_string && *pExpectedSize < szData)) { |
208 | 145 |
|
12 | 146 |
# ifdef CANOPEN_BIG_ENDIAN |
430 | 147 |
if(endianize && *pDataType > boolean && !( |
148 |
*pDataType >= visible_string && |
|
431 | 149 |
*pDataType <= domain)) { |
215 | 150 |
/* data must be transmited with low byte first */ |
208 | 151 |
UNS8 i, j = 0; |
152 |
MSG_WAR(boolean, "data type ", *pDataType); |
|
153 |
MSG_WAR(visible_string, "data type ", *pDataType); |
|
154 |
for ( i = szData ; i > 0 ; i--) { |
|
155 |
MSG_WAR(i," ", j); |
|
156 |
((UNS8*)pDestData)[j++] = |
|
157 |
((UNS8*)ptrTable->pSubindex[bSubindex].pObject)[i-1]; |
|
158 |
} |
|
431 | 159 |
*pExpectedSize = szData; |
208 | 160 |
} |
419
f63ce68a8239
Added support for null terminated strings as VISIBLE_STRING.
etisserant
parents:
402
diff
changeset
|
161 |
else /* no endianisation change */ |
12 | 162 |
# endif |
421
6221b4db8c42
Added support for null terminated strings as VISIBLE_STRING.
etisserant
parents:
419
diff
changeset
|
163 |
if(*pDataType != visible_string) { |
419
f63ce68a8239
Added support for null terminated strings as VISIBLE_STRING.
etisserant
parents:
402
diff
changeset
|
164 |
memcpy(pDestData, ptrTable->pSubindex[bSubindex].pObject,szData); |
f63ce68a8239
Added support for null terminated strings as VISIBLE_STRING.
etisserant
parents:
402
diff
changeset
|
165 |
*pExpectedSize = szData; |
f63ce68a8239
Added support for null terminated strings as VISIBLE_STRING.
etisserant
parents:
402
diff
changeset
|
166 |
}else{ |
f63ce68a8239
Added support for null terminated strings as VISIBLE_STRING.
etisserant
parents:
402
diff
changeset
|
167 |
/* TODO : CONFORM TO DS-301 : |
f63ce68a8239
Added support for null terminated strings as VISIBLE_STRING.
etisserant
parents:
402
diff
changeset
|
168 |
* - stop using NULL terminated strings |
f63ce68a8239
Added support for null terminated strings as VISIBLE_STRING.
etisserant
parents:
402
diff
changeset
|
169 |
* - store string size in td_subindex |
f63ce68a8239
Added support for null terminated strings as VISIBLE_STRING.
etisserant
parents:
402
diff
changeset
|
170 |
* */ |
f63ce68a8239
Added support for null terminated strings as VISIBLE_STRING.
etisserant
parents:
402
diff
changeset
|
171 |
/* Copy null terminated string to user, and return discovered size */ |
f63ce68a8239
Added support for null terminated strings as VISIBLE_STRING.
etisserant
parents:
402
diff
changeset
|
172 |
UNS8 *ptr = (UNS8*)ptrTable->pSubindex[bSubindex].pObject; |
f63ce68a8239
Added support for null terminated strings as VISIBLE_STRING.
etisserant
parents:
402
diff
changeset
|
173 |
UNS8 *ptr_start = ptr; |
431 | 174 |
/* *pExpectedSize IS < szData . if null, use szData */ |
175 |
UNS8 *ptr_end = ptr + (*pExpectedSize ? *pExpectedSize : szData) ; |
|
429 | 176 |
UNS8 *ptr_dest = (UNS8*)pDestData; |
419
f63ce68a8239
Added support for null terminated strings as VISIBLE_STRING.
etisserant
parents:
402
diff
changeset
|
177 |
while( *ptr && ptr < ptr_end){ |
429 | 178 |
*(ptr_dest++) = *(ptr++); |
419
f63ce68a8239
Added support for null terminated strings as VISIBLE_STRING.
etisserant
parents:
402
diff
changeset
|
179 |
} |
421
6221b4db8c42
Added support for null terminated strings as VISIBLE_STRING.
etisserant
parents:
419
diff
changeset
|
180 |
|
6221b4db8c42
Added support for null terminated strings as VISIBLE_STRING.
etisserant
parents:
419
diff
changeset
|
181 |
*pExpectedSize = ptr - ptr_start; |
6221b4db8c42
Added support for null terminated strings as VISIBLE_STRING.
etisserant
parents:
419
diff
changeset
|
182 |
/* terminate string if not maximum length */ |
6221b4db8c42
Added support for null terminated strings as VISIBLE_STRING.
etisserant
parents:
419
diff
changeset
|
183 |
if (*pExpectedSize < szData) |
6221b4db8c42
Added support for null terminated strings as VISIBLE_STRING.
etisserant
parents:
419
diff
changeset
|
184 |
*(ptr) = 0; |
419
f63ce68a8239
Added support for null terminated strings as VISIBLE_STRING.
etisserant
parents:
402
diff
changeset
|
185 |
} |
402
77f875d45250
Fixed faulty read access checking on OD access. Added read acces s checking in SDO (was disabled)
etisserant
parents:
378
diff
changeset
|
186 |
|
208 | 187 |
return OD_SUCCESSFUL; |
188 |
} |
|
215 | 189 |
else { /* Error ! */ |
208 | 190 |
*pExpectedSize = szData; |
191 |
accessDictionaryError(wIndex, bSubindex, szData, |
|
192 |
*pExpectedSize, OD_LENGTH_DATA_INVALID); |
|
193 |
return OD_LENGTH_DATA_INVALID; |
|
194 |
} |
|
195 |
} |
|
196 |
||
197 |
/*! |
|
198 |
** |
|
199 |
** |
|
200 |
** @param d |
|
201 |
** @param wIndex |
|
202 |
** @param bSubindex |
|
203 |
** @param pSourceData |
|
204 |
** @param pExpectedSize |
|
205 |
** @param checkAccess |
|
206 |
** @param endianize |
|
207 |
** |
|
208 |
** @return |
|
209 |
**/ |
|
210 |
UNS32 _setODentry( CO_Data* d, |
|
211 |
UNS16 wIndex, |
|
212 |
UNS8 bSubindex, |
|
213 |
void * pSourceData, |
|
214 |
UNS8 * pExpectedSize, |
|
215 |
UNS8 checkAccess, |
|
216 |
UNS8 endianize) |
|
0 | 217 |
{ |
218 |
UNS8 szData; |
|
219 |
UNS8 dataType; |
|
220 |
UNS32 errorCode; |
|
221 |
const indextable *ptrTable; |
|
222 |
ODCallback_t *Callback; |
|
223 |
||
224 |
ptrTable =(*d->scanIndexOD)(wIndex, &errorCode, &Callback); |
|
225 |
if (errorCode != OD_SUCCESSFUL) |
|
226 |
return errorCode; |
|
227 |
||
228 |
if( ptrTable->bSubCount <= bSubindex ) { |
|
215 | 229 |
/* Subindex not found */ |
0 | 230 |
accessDictionaryError(wIndex, bSubindex, 0, *pExpectedSize, OD_NO_SUCH_SUBINDEX); |
231 |
return OD_NO_SUCH_SUBINDEX; |
|
232 |
} |
|
1
b3dc740b4b04
Commit some Fix from Francis on sdo.c and abjacces.c. Fix endianisation problems while accessing OD. Also fix SDO abord handling bug.
etisserant
parents:
0
diff
changeset
|
233 |
if (checkAccess && (ptrTable->pSubindex[bSubindex].bAccessType == RO)) { |
208 | 234 |
MSG_WAR(0x2B25, "Access Type : ", ptrTable->pSubindex[bSubindex].bAccessType); |
0 | 235 |
accessDictionaryError(wIndex, bSubindex, 0, *pExpectedSize, OD_WRITE_NOT_ALLOWED); |
236 |
return OD_WRITE_NOT_ALLOWED; |
|
237 |
} |
|
238 |
||
239 |
||
208 | 240 |
dataType = ptrTable->pSubindex[bSubindex].bDataType; |
241 |
szData = ptrTable->pSubindex[bSubindex].size; |
|
0 | 242 |
|
243 |
if( *pExpectedSize == 0 || |
|
208 | 244 |
*pExpectedSize == szData || |
421
6221b4db8c42
Added support for null terminated strings as VISIBLE_STRING.
etisserant
parents:
419
diff
changeset
|
245 |
/* allow to store a shorter string than entry size */ |
6221b4db8c42
Added support for null terminated strings as VISIBLE_STRING.
etisserant
parents:
419
diff
changeset
|
246 |
(dataType == visible_string && *pExpectedSize < szData)) |
208 | 247 |
{ |
248 |
#ifdef CANOPEN_BIG_ENDIAN |
|
421
6221b4db8c42
Added support for null terminated strings as VISIBLE_STRING.
etisserant
parents:
419
diff
changeset
|
249 |
/* re-endianize do not occur for bool, strings time and domains */ |
6221b4db8c42
Added support for null terminated strings as VISIBLE_STRING.
etisserant
parents:
419
diff
changeset
|
250 |
if(endianize && dataType > boolean && !( |
6221b4db8c42
Added support for null terminated strings as VISIBLE_STRING.
etisserant
parents:
419
diff
changeset
|
251 |
dataType >= visible_string && |
431 | 252 |
dataType <= domain)) |
208 | 253 |
{ |
215 | 254 |
/* we invert the data source directly. This let us do range |
208 | 255 |
testing without */ |
215 | 256 |
/* additional temp variable */ |
208 | 257 |
UNS8 i; |
258 |
for ( i = 0 ; i < ( ptrTable->pSubindex[bSubindex].size >> 1) ; i++) |
|
259 |
{ |
|
260 |
UNS8 tmp =((UNS8 *)pSourceData) [(ptrTable->pSubindex[bSubindex].size - 1) - i]; |
|
261 |
((UNS8 *)pSourceData) [(ptrTable->pSubindex[bSubindex].size - 1) - i] = ((UNS8 *)pSourceData)[i]; |
|
262 |
((UNS8 *)pSourceData)[i] = tmp; |
|
263 |
} |
|
264 |
} |
|
265 |
#endif |
|
0 | 266 |
errorCode = (*d->valueRangeTest)(dataType, pSourceData); |
267 |
if (errorCode) { |
|
208 | 268 |
accessDictionaryError(wIndex, bSubindex, szData, *pExpectedSize, errorCode); |
269 |
return errorCode; |
|
0 | 270 |
} |
2
8d4a822f95e4
Fixed Endianisation/ValueRange order in SetODentry
etisserant
parents:
1
diff
changeset
|
271 |
memcpy(ptrTable->pSubindex[bSubindex].pObject,pSourceData, *pExpectedSize); |
421
6221b4db8c42
Added support for null terminated strings as VISIBLE_STRING.
etisserant
parents:
419
diff
changeset
|
272 |
/* TODO : CONFORM TO DS-301 : |
6221b4db8c42
Added support for null terminated strings as VISIBLE_STRING.
etisserant
parents:
419
diff
changeset
|
273 |
* - stop using NULL terminated strings |
6221b4db8c42
Added support for null terminated strings as VISIBLE_STRING.
etisserant
parents:
419
diff
changeset
|
274 |
* - store string size in td_subindex |
6221b4db8c42
Added support for null terminated strings as VISIBLE_STRING.
etisserant
parents:
419
diff
changeset
|
275 |
* */ |
6221b4db8c42
Added support for null terminated strings as VISIBLE_STRING.
etisserant
parents:
419
diff
changeset
|
276 |
/* terminate visible_string with '\0' */ |
6221b4db8c42
Added support for null terminated strings as VISIBLE_STRING.
etisserant
parents:
419
diff
changeset
|
277 |
if(dataType == visible_string && *pExpectedSize < szData) |
6221b4db8c42
Added support for null terminated strings as VISIBLE_STRING.
etisserant
parents:
419
diff
changeset
|
278 |
((UNS8*)ptrTable->pSubindex[bSubindex].pObject)[*pExpectedSize] = 0; |
6221b4db8c42
Added support for null terminated strings as VISIBLE_STRING.
etisserant
parents:
419
diff
changeset
|
279 |
|
0 | 280 |
*pExpectedSize = szData; |
208 | 281 |
|
215 | 282 |
/* Callbacks */ |
0 | 283 |
if(Callback && Callback[bSubindex]){ |
437
129bbe0504e4
Now OD callback return val ahev influance on SDO transmission (if callback fall, SDO abord may be signaled)
etisserant
parents:
431
diff
changeset
|
284 |
errorCode = (Callback[bSubindex])(d, ptrTable, bSubindex); |
129bbe0504e4
Now OD callback return val ahev influance on SDO transmission (if callback fall, SDO abord may be signaled)
etisserant
parents:
431
diff
changeset
|
285 |
if(errorCode != OD_SUCCESSFUL) |
129bbe0504e4
Now OD callback return val ahev influance on SDO transmission (if callback fall, SDO abord may be signaled)
etisserant
parents:
431
diff
changeset
|
286 |
{ |
129bbe0504e4
Now OD callback return val ahev influance on SDO transmission (if callback fall, SDO abord may be signaled)
etisserant
parents:
431
diff
changeset
|
287 |
return errorCode; |
129bbe0504e4
Now OD callback return val ahev influance on SDO transmission (if callback fall, SDO abord may be signaled)
etisserant
parents:
431
diff
changeset
|
288 |
} |
129bbe0504e4
Now OD callback return val ahev influance on SDO transmission (if callback fall, SDO abord may be signaled)
etisserant
parents:
431
diff
changeset
|
289 |
} |
208 | 290 |
|
215 | 291 |
/* TODO : Store dans NVRAM */ |
161
c4908cc776a9
SetODEntry now call CO_data->storeODSubEntry(Index,SubIndex) for variables to be Stored (when column Save==True in GUI)
etisserant
parents:
75
diff
changeset
|
292 |
if (ptrTable->pSubindex[bSubindex].bAccessType & TO_BE_SAVE){ |
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:
215
diff
changeset
|
293 |
(*d->storeODSubIndex)(d, wIndex, bSubindex); |
161
c4908cc776a9
SetODEntry now call CO_data->storeODSubEntry(Index,SubIndex) for variables to be Stored (when column Save==True in GUI)
etisserant
parents:
75
diff
changeset
|
294 |
} |
0 | 295 |
return OD_SUCCESSFUL; |
208 | 296 |
}else{ |
0 | 297 |
*pExpectedSize = szData; |
298 |
accessDictionaryError(wIndex, bSubindex, szData, *pExpectedSize, OD_LENGTH_DATA_INVALID); |
|
299 |
return OD_LENGTH_DATA_INVALID; |
|
208 | 300 |
} |
301 |
} |
|
302 |
||
303 |
/*! |
|
304 |
** |
|
305 |
** |
|
306 |
** @param d |
|
307 |
** @param wIndex |
|
308 |
** @param errorCode |
|
309 |
** @param Callback |
|
310 |
** |
|
311 |
** @return |
|
312 |
**/ |
|
0 | 313 |
const indextable * scanIndexOD (CO_Data* d, UNS16 wIndex, UNS32 *errorCode, ODCallback_t **Callback) |
314 |
{ |
|
315 |
return (*d->scanIndexOD)(wIndex, errorCode, Callback); |
|
316 |
} |
|
317 |
||
208 | 318 |
/*! |
319 |
** |
|
320 |
** |
|
321 |
** @param d |
|
322 |
** @param wIndex |
|
323 |
** @param bSubindex |
|
324 |
** @param Callback |
|
325 |
** |
|
326 |
** @return |
|
327 |
**/ |
|
0 | 328 |
UNS32 RegisterSetODentryCallBack(CO_Data* d, UNS16 wIndex, UNS8 bSubindex, ODCallback_t Callback) |
329 |
{ |
|
469
f2b07ea215b5
Applied edward's patch for OD acces macros (optimization) and boudaries check (safety).
etisserant
parents:
450
diff
changeset
|
330 |
UNS32 errorCode; |
f2b07ea215b5
Applied edward's patch for OD acces macros (optimization) and boudaries check (safety).
etisserant
parents:
450
diff
changeset
|
331 |
ODCallback_t *CallbackList; |
f2b07ea215b5
Applied edward's patch for OD acces macros (optimization) and boudaries check (safety).
etisserant
parents:
450
diff
changeset
|
332 |
const indextable *odentry; |
f2b07ea215b5
Applied edward's patch for OD acces macros (optimization) and boudaries check (safety).
etisserant
parents:
450
diff
changeset
|
333 |
|
f2b07ea215b5
Applied edward's patch for OD acces macros (optimization) and boudaries check (safety).
etisserant
parents:
450
diff
changeset
|
334 |
odentry = scanIndexOD (d, wIndex, &errorCode, &CallbackList); |
f2b07ea215b5
Applied edward's patch for OD acces macros (optimization) and boudaries check (safety).
etisserant
parents:
450
diff
changeset
|
335 |
if(errorCode == OD_SUCCESSFUL && CallbackList && bSubindex < odentry->bSubCount) |
208 | 336 |
CallbackList[bSubindex] = Callback; |
337 |
return errorCode; |
|
338 |
} |
|
339 |
||
340 |
/*! |
|
341 |
** |
|
342 |
** |
|
343 |
** @param wIndex |
|
344 |
** @param bSubindex |
|
345 |
**/ |
|
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:
215
diff
changeset
|
346 |
void _storeODSubIndex (CO_Data* d, UNS16 wIndex, UNS8 bSubindex){} |