src/objacces.c
author dejoigny
Wed, 17 May 2006 10:52:20 +0200
changeset 10 0c4d04e5fac0
parent 8 eee2b0c89213
child 11 64ed038bdc74
permissions -rw-r--r--
provisoire
0
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
     1
/*
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
     2
This file is part of CanFestival, a library implementing CanOpen Stack. 
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
     3
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
     4
Copyright (C): Edouard TISSERANT and Francis DUPIN
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
     5
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
     6
See COPYING file for copyrights details.
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
     7
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
     8
This library is free software; you can redistribute it and/or
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
     9
modify it under the terms of the GNU Lesser General Public
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    10
License as published by the Free Software Foundation; either
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    11
version 2.1 of the License, or (at your option) any later version.
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    12
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    13
This library is distributed in the hope that it will be useful,
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    14
but WITHOUT ANY WARRANTY; without even the implied warranty of
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    15
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    16
Lesser General Public License for more details.
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    17
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    18
You should have received a copy of the GNU Lesser General Public
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    19
License along with this library; if not, write to the Free Software
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    20
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    21
*/
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    22
10
0c4d04e5fac0 provisoire
dejoigny
parents: 8
diff changeset
    23
#define DEBUG_WAR_CONSOLE_ON
0c4d04e5fac0 provisoire
dejoigny
parents: 8
diff changeset
    24
#define DEBUG_ERR_CONSOLE_ON
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
    25
0
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    26
#include "objacces.h"
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    27
8
eee2b0c89213 correction bogue pour BIG_ENDIAN
dejoigny
parents: 2
diff changeset
    28
0
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    29
#ifdef DEBUG_WAR_CONSOLE_ON
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    30
UNS8 accessDictionaryError(UNS16 index, UNS8 subIndex, 
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    31
			     UNS8 sizeDataDict, UNS8 sizeDataGiven, UNS32 code)
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    32
{
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    33
  MSG_WAR(0x2B09,"Dictionary index : ", index);
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    34
  MSG_WAR(0X2B10,"           subindex : ", subIndex);
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    35
  switch (code) {
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    36
    case  OD_NO_SUCH_OBJECT: 
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    37
      MSG_WAR(0x2B11,"Index not found ", index);
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    38
      break;
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    39
    case OD_NO_SUCH_SUBINDEX :
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    40
      MSG_WAR(0x2B12,"SubIndex not found ", subIndex);
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    41
      break;   
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    42
    case OD_WRITE_NOT_ALLOWED :
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    43
      MSG_WAR(0x2B13,"Write not allowed, data is read only ", index);
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    44
      break;         
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    45
    case OD_LENGTH_DATA_INVALID :    
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    46
      MSG_WAR(0x2B14,"Conflict size data. Should be (bytes)  : ", sizeDataDict);
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    47
      MSG_WAR(0x2B15,"But you have given the size  : ", sizeDataGiven);
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    48
      break;
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    49
    case OD_NOT_MAPPABLE :
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    50
      MSG_WAR(0x2B16,"Not mappable data in a PDO at index    : ", index);
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    51
      break;
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    52
    case OD_VALUE_TOO_LOW :
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    53
      MSG_WAR(0x2B17,"Value range error : value too low. SDOabort : ", code);
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    54
      break;
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    55
    case OD_VALUE_TOO_HIGH :
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    56
      MSG_WAR(0x2B18,"Value range error : value too high. SDOabort : ", code);
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    57
      break;
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    58
  default :
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    59
    MSG_WAR(0x2B20, "Unknown error code : ", code);
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    60
  }
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    61
  return 0; 
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    62
}	
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    63
#endif
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    64
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    65
UNS32 getODentry( CO_Data* d, 
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    66
                  UNS16 wIndex,
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    67
		  UNS8 bSubindex,
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    68
		  void * pDestData,
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    69
		  UNS8 * pExpectedSize,
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    70
		  UNS8 * pDataType,
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    71
		  UNS8 checkAccess)
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    72
{ // DO NOT USE MSG_ERR because the macro may send a PDO -> infinite loop if it fails.
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    73
  UNS32 errorCode;
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    74
  UNS8 szData;
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    75
  const indextable *ptrTable;
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    76
  ODCallback_t *Callback;
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    77
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    78
  ptrTable = (*d->scanIndexOD)(wIndex, &errorCode, &Callback);
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    79
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    80
  if (errorCode != OD_SUCCESSFUL)
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    81
    return errorCode;
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    82
  if( ptrTable->bSubCount <= bSubindex ) {
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    83
    // Subindex not found
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    84
    accessDictionaryError(wIndex, bSubindex, 0, 0, OD_NO_SUCH_SUBINDEX);
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    85
    return OD_NO_SUCH_SUBINDEX;
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    86
  }
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    87
  
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    88
  if (checkAccess && !(ptrTable->pSubindex[bSubindex].bAccessType & WO)) {
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
    89
  	MSG_WAR(0x2B30, "Access Type : ", ptrTable->pSubindex[bSubindex].bAccessType);
0
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    90
    accessDictionaryError(wIndex, bSubindex, 0, 0, OD_WRITE_NOT_ALLOWED);
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    91
    return OD_READ_NOT_ALLOWED;
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    92
  }
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    93
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    94
  *pDataType = ptrTable->pSubindex[bSubindex].bDataType;
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    95
   szData = ptrTable->pSubindex[bSubindex].size;
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    96
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    97
  if(	*pExpectedSize == 0 ||
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    98
  	*pExpectedSize == szData ||
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    99
  	(*pDataType == visible_string && *pExpectedSize > szData)) // We allow to fetch a shorter string than expected
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   100
  {
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   101
	#ifdef CANOPEN_BIG_ENDIAN
10
0c4d04e5fac0 provisoire
dejoigny
parents: 8
diff changeset
   102
	      if(*pDataType > boolean && *pDataType < visible_string){
0
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   103
		// data must be transmited with low byte first
10
0c4d04e5fac0 provisoire
dejoigny
parents: 8
diff changeset
   104
		MSG_WAR(0x2B30, "Dans ENDIANISATION", 0x00);
0
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   105
		UNS8 i, j = 0;
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
   106
		for ( i = ptrTable->pSubindex[bSubindex].size ; i > 0 ; i--) {
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
   107
			((char*)pDestData)[j++] = ((char*)ptrTable->pSubindex[bSubindex].pObject)[i-1];
0
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   108
		}
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   109
	      }
10
0c4d04e5fac0 provisoire
dejoigny
parents: 8
diff changeset
   110
	      else {
0c4d04e5fac0 provisoire
dejoigny
parents: 8
diff changeset
   111
	      	MSG_WAR(0x2B32, "cas string", 0x00);
0c4d04e5fac0 provisoire
dejoigny
parents: 8
diff changeset
   112
	      }
0
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   113
	#else  	
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   114
  	      memcpy(pDestData, ptrTable->pSubindex[bSubindex].pObject,*pExpectedSize);
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   115
	#endif
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   116
      *pExpectedSize = szData;
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   117
      return OD_SUCCESSFUL;
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   118
  }else{
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   119
      *pExpectedSize = szData;
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   120
      accessDictionaryError(wIndex, bSubindex, szData, *pExpectedSize, OD_LENGTH_DATA_INVALID);
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   121
      return OD_LENGTH_DATA_INVALID;
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   122
  }
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   123
}
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   124
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   125
UNS32 setODentry( CO_Data* d, 
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   126
                  UNS16 wIndex,
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   127
		  UNS8 bSubindex, 
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   128
		  void * pSourceData, 
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   129
		  UNS8 * pExpectedSize, 
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   130
		  UNS8 checkAccess)
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   131
{
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   132
  UNS8 szData;
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   133
  UNS8 dataType;
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   134
  UNS32 errorCode;
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   135
  const indextable *ptrTable;
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   136
  ODCallback_t *Callback;
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   137
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   138
  ptrTable =(*d->scanIndexOD)(wIndex, &errorCode, &Callback);
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   139
  if (errorCode != OD_SUCCESSFUL)
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   140
    return errorCode;
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   141
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   142
  if( ptrTable->bSubCount <= bSubindex ) {
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   143
    // Subindex not found
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   144
    accessDictionaryError(wIndex, bSubindex, 0, *pExpectedSize, OD_NO_SUCH_SUBINDEX);
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   145
    return OD_NO_SUCH_SUBINDEX;
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   146
  }
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
   147
  if (checkAccess && (ptrTable->pSubindex[bSubindex].bAccessType == RO)) {
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
   148
  	MSG_WAR(0x2B25, "Access Type : ", ptrTable->pSubindex[bSubindex].bAccessType);
0
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   149
    accessDictionaryError(wIndex, bSubindex, 0, *pExpectedSize, OD_WRITE_NOT_ALLOWED);
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   150
    return OD_WRITE_NOT_ALLOWED;
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   151
  }
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   152
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   153
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   154
   dataType = ptrTable->pSubindex[bSubindex].bDataType;
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   155
   szData = ptrTable->pSubindex[bSubindex].size;
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   156
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   157
  if( *pExpectedSize == 0 ||
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   158
  	*pExpectedSize == szData ||
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   159
  	(dataType == visible_string && *pExpectedSize < szData)) // We allow to store a shorter string than entry size
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   160
  {
2
8d4a822f95e4 Fixed Endianisation/ValueRange order in SetODentry
etisserant
parents: 1
diff changeset
   161
      #ifdef CANOPEN_BIG_ENDIAN
8d4a822f95e4 Fixed Endianisation/ValueRange order in SetODentry
etisserant
parents: 1
diff changeset
   162
	      if(dataType > boolean && dataType < visible_string){
8d4a822f95e4 Fixed Endianisation/ValueRange order in SetODentry
etisserant
parents: 1
diff changeset
   163
		// we invert the data source directly. This let us do range testing without
8d4a822f95e4 Fixed Endianisation/ValueRange order in SetODentry
etisserant
parents: 1
diff changeset
   164
		// additional temp variable
10
0c4d04e5fac0 provisoire
dejoigny
parents: 8
diff changeset
   165
		MSG_WAR(0x2B31, "Dans ENDIANISATION", 0x00);
2
8d4a822f95e4 Fixed Endianisation/ValueRange order in SetODentry
etisserant
parents: 1
diff changeset
   166
		UNS8 i, j = 0;
10
0c4d04e5fac0 provisoire
dejoigny
parents: 8
diff changeset
   167
		for ( i = ptrTable->pSubindex[bSubindex].size ; i > 0 ; i--) {
0c4d04e5fac0 provisoire
dejoigny
parents: 8
diff changeset
   168
			((char*)ptrTable->pSubindex[bSubindex].pObject)[i - 1] = ((char*)pSourceData)[j++];
2
8d4a822f95e4 Fixed Endianisation/ValueRange order in SetODentry
etisserant
parents: 1
diff changeset
   169
		}
10
0c4d04e5fac0 provisoire
dejoigny
parents: 8
diff changeset
   170
//		for ( i = ptrTable->pSubindex[bSubindex].size >> 1 ; i > 0 ; i--) {
0c4d04e5fac0 provisoire
dejoigny
parents: 8
diff changeset
   171
//			char tmp = ((char*)pSourceData)[i - 1];
0c4d04e5fac0 provisoire
dejoigny
parents: 8
diff changeset
   172
//			((char*)pSourceData)[i - 1] = ((char*)pSourceData)[j];
0c4d04e5fac0 provisoire
dejoigny
parents: 8
diff changeset
   173
//			((char*)pSourceData)[j++] = tmp;
0c4d04e5fac0 provisoire
dejoigny
parents: 8
diff changeset
   174
//		}
0c4d04e5fac0 provisoire
dejoigny
parents: 8
diff changeset
   175
	      }
0c4d04e5fac0 provisoire
dejoigny
parents: 8
diff changeset
   176
	      else {
0c4d04e5fac0 provisoire
dejoigny
parents: 8
diff changeset
   177
	      	MSG_WAR(0x2B35, "cas string", 0x00);
2
8d4a822f95e4 Fixed Endianisation/ValueRange order in SetODentry
etisserant
parents: 1
diff changeset
   178
	      }
8d4a822f95e4 Fixed Endianisation/ValueRange order in SetODentry
etisserant
parents: 1
diff changeset
   179
      #endif
0
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   180
      errorCode = (*d->valueRangeTest)(dataType, pSourceData);
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   181
      if (errorCode) {
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   182
	accessDictionaryError(wIndex, bSubindex, szData, *pExpectedSize, errorCode);
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   183
	return errorCode;
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   184
      }
2
8d4a822f95e4 Fixed Endianisation/ValueRange order in SetODentry
etisserant
parents: 1
diff changeset
   185
      memcpy(ptrTable->pSubindex[bSubindex].pObject,pSourceData, *pExpectedSize);
0
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   186
      *pExpectedSize = szData;
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   187
      
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   188
      // Callbacks
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   189
      if(Callback && Callback[bSubindex]){
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   190
      	 (*Callback[bSubindex])(d, ptrTable, bSubindex);
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   191
      }
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   192
      
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   193
      // TODO : Store dans NVRAM      
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   194
      // if (ptrTable->pSubindex[bSubindex].bAccessType & TO_BE_SAVED)
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   195
      return OD_SUCCESSFUL;
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   196
  }else{
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   197
      *pExpectedSize = szData;
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   198
      accessDictionaryError(wIndex, bSubindex, szData, *pExpectedSize, OD_LENGTH_DATA_INVALID);
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   199
      return OD_LENGTH_DATA_INVALID;
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   200
  }
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   201
}
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   202
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   203
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   204
const indextable * scanIndexOD (CO_Data* d, UNS16 wIndex, UNS32 *errorCode, ODCallback_t **Callback)
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   205
{
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   206
  return (*d->scanIndexOD)(wIndex, errorCode, Callback);
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   207
}
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   208
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   209
UNS32 RegisterSetODentryCallBack(CO_Data* d, UNS16 wIndex, UNS8 bSubindex, ODCallback_t Callback)
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   210
{
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   211
	UNS32 errorCode;
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   212
	ODCallback_t *CallbackList;
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   213
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   214
	scanIndexOD (d, wIndex, &errorCode, &CallbackList);
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   215
	if(errorCode == OD_SUCCESSFUL && CallbackList) 
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   216
		CallbackList[bSubindex] = Callback;
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   217
	return errorCode;
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   218
}
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   219
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
   220