src/sdo.c
author etisserant
Wed, 10 May 2006 21:05:57 +0200
changeset 1 b3dc740b4b04
parent 0 4472ee7c6c3e
child 6 8038ced64796
permissions -rw-r--r--
Commit some Fix from Francis on sdo.c and abjacces.c. Fix endianisation problems while accessing OD. Also fix SDO abord handling bug.
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
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
    23
#define DEBUG_WAR_CONSOLE_ON
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
    24
#define DEBUG_ERR_CONSOLE_ON
0
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    25
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
#include "sdo.h"
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    28
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    29
/***************************************************************************/
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    30
// SDO (un)packing macros
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    31
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    32
/** Returns the command specifier (cs, ccs, scs) from the first byte of the SDO   
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    33
 */
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    34
#define getSDOcs(byte) (byte >> 5)
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    35
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    36
/** Returns the number of bytes without data from the first byte of the SDO. Coded in 2 bits   
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    37
 */
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    38
#define getSDOn2(byte) ((byte >> 2) & 3)
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    39
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    40
/** Returns the number of bytes without data from the first byte of the SDO. Coded in 3 bits   
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    41
 */
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    42
#define getSDOn3(byte) ((byte >> 1) & 7)
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    43
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    44
/** Returns the transfer type from the first byte of the SDO   
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    45
 */
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    46
#define getSDOe(byte) ((byte >> 1) & 1)
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    47
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    48
/** Returns the size indicator from the first byte of the SDO   
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    49
 */
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    50
#define getSDOs(byte) (byte & 1)
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    51
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    52
/** Returns the indicator of end transmission from the first byte of the SDO   
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    53
 */
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    54
#define getSDOc(byte) (byte & 1)
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    55
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    56
/** Returns the toggle from the first byte of the SDO   
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    57
 */
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    58
#define getSDOt(byte) ((byte >> 4) & 1)
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    59
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    60
/** Returns the index from the bytes 1 and 2 of the SDO   
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    61
 */
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    62
#define getSDOindex(byte1, byte2) ((byte2 << 8) | (byte1))
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    63
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    64
/** Returns the subIndex from the byte 3 of the SDO   
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    65
 */
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    66
#define getSDOsubIndex(byte3) (byte3)
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    67
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    68
/***************************************************************************
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    69
**
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    70
*/
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    71
void SDOTimeoutAlarm(CO_Data* d, UNS32 id)
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    72
{
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    73
    MSG_ERR(0x1A01, "SDO timeout. SDO response not received.", 0);
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    74
    MSG_WAR(0x2A02, "server node : ", d->transfers[id].nodeId);
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    75
    MSG_WAR(0x2A02, "      index : ", d->transfers[id].index);
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    76
    MSG_WAR(0x2A02, "   subIndex : ", d->transfers[id].subIndex); 
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    77
    // Reset timer handler
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    78
    d->transfers[id].timer = TIMER_NONE;
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    79
    // Call the user function to inform of the problem.
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    80
    (*d->SDOtimeoutError)(id);
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    81
    // Sending a SDO abort
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    82
    sendSDOabort(d, d->transfers[id].whoami, 
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    83
		 d->transfers[id].index, d->transfers[id].subIndex, SDOABT_TIMED_OUT);
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    84
    // Reset the line
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    85
    resetSDOline(d, id);
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
#define StopSDO_TIMER(id) \
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    89
MSG_WAR(0x3A05, "StopSDO_TIMER for line : ", line);\
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    90
d->transfers[id].timer = DelAlarm(d->transfers[id].timer);
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    91
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    92
#define StartSDO_TIMER(id) \
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    93
MSG_WAR(0x3A06, "StartSDO_TIMER for line : ", line);\
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    94
d->transfers[id].timer = SetAlarm(d,id,&SDOTimeoutAlarm,MS_TO_TIMEVAL(SDO_TIMEOUT_MS),0);
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    95
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    96
#define RestartSDO_TIMER(id) \
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    97
MSG_WAR(0x3A07, "restartSDO_TIMER for line : ", line);\
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    98
if(d->transfers[id].timer != TIMER_NONE) { StopSDO_TIMER(id) StartSDO_TIMER(id) }
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    99
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   100
/***************************************************************************/
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   101
/** Reset all sdo buffers
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   102
 */
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   103
void resetSDO (CO_Data* d)
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   104
{
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   105
  UNS8 j;
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   106
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   107
  /* transfer structure initialization */
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   108
    for (j = 0 ; j < SDO_MAX_SIMULTANEOUS_TRANSFERTS ; j++) 
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   109
      resetSDOline(d, j);
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   110
}
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   111
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   112
/***************************************************************************/
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   113
UNS32 SDOlineToObjdict (CO_Data* d, UNS8 line)
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   114
{
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   115
  const indextable *ptrTable;
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   116
  UNS8 i;
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   117
  UNS8      size;
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   118
  UNS32 errorCode;
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
   119
  MSG_WAR(0x3A08, "Enter in SDOlineToObjdict ", line);
0
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   120
  size = d->transfers[line].count;
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   121
  errorCode = setODentry(d, d->transfers[line].index, d->transfers[line].subIndex, 
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   122
			 (void *) d->transfers[line].data, &size, 1);
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   123
  if (errorCode != OD_SUCCESSFUL)
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   124
    return errorCode;
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
   125
  MSG_WAR(0x3A08, "exit of SDOlineToObjdict ", line);
0
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   126
  return 0;
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   127
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   128
}
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   129
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   130
/***************************************************************************/
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   131
UNS32 objdictToSDOline (CO_Data* d, UNS8 line)
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   132
{
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   133
  UNS8  j;
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   134
//  UNS8  *data;
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   135
  UNS8  size = 0;
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   136
  UNS8  dataType;
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   137
  UNS32 errorCode;
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   138
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   139
  MSG_WAR(0x3A05, "Reading at index : ", d->transfers[line].index);
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   140
  MSG_WAR(0x3A06, "Reading at subIndex : ", d->transfers[line].subIndex);
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   141
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   142
  errorCode = getODentry(d, 	d->transfers[line].index,
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   143
  				d->transfers[line].subIndex,
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   144
  				(void *)d->transfers[line].data,
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   145
  				&size, &dataType, 0);
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   146
  
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   147
  if (errorCode != OD_SUCCESSFUL)
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   148
    return errorCode;
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   149
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   150
  d->transfers[line].count = size;
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   151
  d->transfers[line].offset = 0;
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   152
  return 0;
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   153
}
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   154
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   155
/***************************************************************************/
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   156
UNS8 lineToSDO (CO_Data* d, UNS8 line, UNS8 nbBytes, UNS8* data) {
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   157
  UNS8 i;
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   158
  UNS8 offset;
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   159
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   160
  if ((d->transfers[line].offset + nbBytes) > SDO_MAX_LENGTH_TRANSFERT) {
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   161
    MSG_ERR(0x1A10,"SDO Size of data too large. Exceed SDO_MAX_LENGTH_TRANSFERT", nbBytes);
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   162
    return 0xFF;
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   163
  }
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   164
    if ((d->transfers[line].offset + nbBytes) > d->transfers[line].count) {
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   165
    MSG_ERR(0x1A11,"SDO Size of data too large. Exceed count", nbBytes);
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   166
    return 0xFF;
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   167
  }
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   168
  offset = d->transfers[line].offset;
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   169
  for (i = 0 ; i < nbBytes ; i++) 
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   170
    * (data + i) = d->transfers[line].data[offset + i];
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   171
  d->transfers[line].offset = d->transfers[line].offset + nbBytes;
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   172
  return 0;
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   173
}
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   174
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   175
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   176
/***************************************************************************/
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   177
UNS8 SDOtoLine (CO_Data* d, UNS8 line, UNS8 nbBytes, UNS8* data)
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   178
{
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   179
  UNS8 i;
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   180
  UNS8 offset;
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   181
  
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   182
  if ((d->transfers[line].offset + nbBytes) > SDO_MAX_LENGTH_TRANSFERT) {
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   183
    MSG_ERR(0x1A15,"SDO Size of data too large. Exceed SDO_MAX_LENGTH_TRANSFERT", nbBytes);
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   184
    return 0xFF;
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   185
  }
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   186
  offset = d->transfers[line].offset;
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   187
  for (i = 0 ; i < nbBytes ; i++) 
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   188
    d->transfers[line].data[offset + i] = * (data + i);
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   189
  d->transfers[line].offset = d->transfers[line].offset + nbBytes;
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   190
  return 0;
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
/***************************************************************************/
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   194
UNS8 failedSDO (CO_Data* d, UNS8 nodeId, UNS8 whoami, UNS16 index, 
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   195
		UNS8 subIndex, UNS32 abortCode)
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   196
{
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   197
  UNS8 err;
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   198
  UNS8 line;
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   199
  err = getSDOlineOnUse( d, nodeId, whoami, &line );
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
   200
  if (!err) // If a line on use have been found.
0
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   201
    MSG_WAR(0x3A20, "FailedSDO : line found : ", line);
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   202
  if ((! err) && (whoami == SDO_SERVER)) {
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   203
    resetSDOline( d, line );
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   204
    MSG_WAR(0x3A21, "FailedSDO : line released : ", line);
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   205
  }
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
   206
  if ((! err) && (whoami == SDO_CLIENT)) {
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
   207
    StopSDO_TIMER(line);
0
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   208
    d->transfers[line].state = SDO_ABORTED_INTERNAL;
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
   209
  }
0
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   210
  MSG_WAR(0x3A22, "Sending SDO abort ", 0);
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   211
  err = sendSDOabort(d, whoami, index, subIndex, abortCode);
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   212
  if (err) {
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   213
    MSG_WAR(0x3A23, "Unable to send the SDO abort", 0);
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   214
    return 0xFF;
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   215
  }
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   216
  return 0;
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   217
}
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   218
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   219
/***************************************************************************/
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   220
void resetSDOline ( CO_Data* d, UNS8 line )
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   221
{
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   222
  UNS8 i; 
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
   223
  MSG_WAR(0x3A25, "reset SDO line nb : ", line); 
0
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   224
  initSDOline(d, line, 0, 0, 0, SDO_RESET);
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   225
  for (i = 0 ; i < SDO_MAX_LENGTH_TRANSFERT ; i++)
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   226
    d->transfers[line].data[i] = 0;
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   227
}
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   228
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   229
/***************************************************************************/
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   230
UNS8 initSDOline (CO_Data* d, UNS8 line, UNS8 nodeId, UNS16 index, UNS8 subIndex, UNS8 state)
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   231
{
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
   232
  MSG_WAR(0x3A25, "init SDO line nb : ", line); 
0
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   233
  if (state == SDO_DOWNLOAD_IN_PROGRESS || state == SDO_UPLOAD_IN_PROGRESS){
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   234
  	StartSDO_TIMER(line)
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   235
  }else{
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   236
  	StopSDO_TIMER(line)
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   237
  }
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   238
  d->transfers[line].nodeId = nodeId; 
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   239
  d->transfers[line].index = index;
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   240
  d->transfers[line].subIndex = subIndex;
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   241
  d->transfers[line].state = state;
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   242
  d->transfers[line].toggle = 0;
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   243
  d->transfers[line].count = 0;
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   244
  d->transfers[line].offset = 0;
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   245
  d->transfers[line].dataType = 0;
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   246
  return 0;
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   247
}
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   248
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   249
/***************************************************************************/
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   250
UNS8 getSDOfreeLine ( CO_Data* d, UNS8 whoami, UNS8 *line )
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   251
{
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   252
	
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   253
  UNS8 i;
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   254
    
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   255
  for (i = 0 ; i < SDO_MAX_SIMULTANEOUS_TRANSFERTS ; i++){
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   256
    if ( d->transfers[i].state == SDO_RESET ) {
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   257
      *line = i;
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   258
      d->transfers[i].whoami = whoami;
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   259
      return 0;
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   260
    } // end if
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   261
  } // end for
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   262
  MSG_ERR(0x1A25, "Too many SDO in progress. Aborted.", i);
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   263
  return 0xFF;
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   264
}
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   265
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   266
/***************************************************************************/
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   267
UNS8 getSDOlineOnUse (CO_Data* d, UNS8 nodeId, UNS8 whoami, UNS8 *line)
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   268
{
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   269
	
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   270
  UNS8 i;
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   271
    
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   272
  for (i = 0 ; i < SDO_MAX_SIMULTANEOUS_TRANSFERTS ; i++){
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   273
    if ( (d->transfers[i].state != SDO_RESET) &&
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   274
	 (d->transfers[i].nodeId == nodeId) && 
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   275
	 (d->transfers[i].whoami == whoami) ) {
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   276
      *line = i;
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   277
      return 0;
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   278
    }
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   279
  } 
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   280
  return 0xFF;
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   281
}
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   282
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   283
/***************************************************************************/
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   284
UNS8 closeSDOtransfer (CO_Data* d, UNS8 nodeId, UNS8 whoami)
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   285
{
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   286
  UNS8 err;
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   287
  UNS8 line;
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   288
  err = getSDOlineOnUse(d, nodeId, whoami, &line);
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   289
  if (err) {
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   290
    MSG_WAR(0x2A30, "No SDO communication to close for node : ", nodeId); 
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   291
    return 0xFF;
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   292
  }
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   293
  resetSDOline(d, line);  
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   294
  return 0;
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   295
}
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   296
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   297
/***************************************************************************/
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   298
UNS8 getSDOlineRestBytes (CO_Data* d, UNS8 line, UNS8 * nbBytes)
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   299
{
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   300
  if (d->transfers[line].count == 0) // if received initiate SDO protocol with e=0 and s=0
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   301
    * nbBytes = 0;
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   302
  else
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   303
    * nbBytes = d->transfers[line].count - d->transfers[line].offset;
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   304
  return 0;
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   305
}
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   306
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   307
/***************************************************************************/
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   308
UNS8 setSDOlineRestBytes (CO_Data* d, UNS8 line, UNS8 nbBytes)
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   309
{
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   310
  if (nbBytes > SDO_MAX_LENGTH_TRANSFERT) {
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   311
    MSG_ERR(0x1A35,"SDO Size of data too large. Exceed SDO_MAX_LENGTH_TRANSFERT", nbBytes);
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   312
    return 0xFF;
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   313
  }
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   314
  d->transfers[line].count = nbBytes;
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   315
  return 0;
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   316
}
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   317
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   318
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   319
/***************************************************************************/
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   320
UNS8 sendSDO (CO_Data* d, UNS8 whoami, s_SDO sdo)
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   321
{	
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   322
  UNS16 offset;
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   323
  UNS16 lastIndex;
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   324
  UNS8 found = 0;
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   325
  Message m;
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   326
  UNS8 i;
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   327
  UNS32 * pwCobId = NULL;
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   328
  UNS8 * pwNodeId = NULL;
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   329
  UNS8 *    pSize;
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   330
  UNS8      size;
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   331
  pSize = &size;
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   332
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   333
  MSG_WAR(0x3A38, "sendSDO",0);
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   334
  if( !((d->nodeState == Operational) ||  (d->nodeState == Pre_operational ))) {
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   335
    MSG_WAR(0x2A39, "unable to send the SDO (not in op or pre-op mode", d->nodeState);
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   336
    return 0xFF;
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   337
  }  				
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   338
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   339
  /*get the server->client cobid*/
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   340
  if ( whoami == SDO_SERVER )	{/*case server. Easy because today only one server SDO is authorized in CanFestival*/
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   341
    offset = d->firstIndex->SDO_SVR;
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   342
    if (offset == 0) {
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   343
      MSG_ERR(0x1A42, "SendSDO : No SDO server found", 0); 
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   344
      return 0xFF;
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   345
    }
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   346
    pwCobId = d->objdict[offset].pSubindex[2].pObject;
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   347
    MSG_WAR(0x3A41, "I am server. cobId : ", *pwCobId); 
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   348
  }
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   349
  else {			/*case client*/
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   350
    /* Get the client->server cobid.*/
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   351
    UNS16 sdoNum = 0;
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   352
    offset = d->firstIndex->SDO_CLT;
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   353
    lastIndex = d->lastIndex->SDO_CLT;
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   354
    if (offset == 0) {
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   355
      MSG_ERR(0x1A42, "SendSDO : No SDO client index found", 0); 
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   356
      return 0xFF;
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   357
    }
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   358
    /* First, have to find at the index where is defined the communication with the server node */
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   359
    while (offset <= lastIndex){
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   360
      MSG_WAR(0x3A43,"Reading index : ", 0x1280 + sdoNum);
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   361
      if (d->objdict[offset].bSubCount <= 3) {
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   362
	MSG_ERR(0x1A28, "Subindex 3  not found at index ", 0x1280 + sdoNum);
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   363
	return 0xFF;
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   364
      }
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   365
      pwNodeId = d->objdict[offset].pSubindex[3].pObject;
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   366
      MSG_WAR(0x3A44, "Found nodeId server = ", *pwNodeId);	
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   367
      if(*pwNodeId == sdo.nodeId) {
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   368
	found = 1;
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   369
	break;          
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   370
      }      
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   371
      offset ++;
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   372
      sdoNum ++;
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   373
    }
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   374
    if (! found){
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   375
      MSG_WAR (0x2A45, "No SDO client corresponds to the mesage to send to node ", sdo.nodeId);
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   376
      return 0xFF;
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   377
    }
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   378
    /* Second, read the cobid client->server */
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   379
    pwCobId = d->objdict[offset].pSubindex[1].pObject;
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   380
  }
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   381
  /* message copy for sending */
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   382
  m.cob_id.w = *pwCobId;
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   383
  m.rtr = NOT_A_REQUEST; 
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   384
  //the length of SDO must be 8
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   385
  m.len = 8;
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   386
  for (i = 0 ; i < 8 ; i++) {
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   387
    m.data[i] =  sdo.body.data[i];
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   388
  }
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   389
  return (*d->canSend)(&m);
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   390
}
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   391
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   392
/***************************************************************************/
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   393
UNS8 sendSDOabort (CO_Data* d, UNS8 whoami, UNS16 index, UNS8 subIndex, UNS32 abortCode)
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   394
{
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   395
  s_SDO sdo;
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   396
  UNS8 ret;
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
   397
  MSG_WAR(0x2A50,"Sending SDO abort ", abortCode);
0
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   398
  sdo.nodeId = *d->bDeviceNodeId;
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   399
  sdo.body.data[0] = 0x80;
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   400
  // Index
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   401
  sdo.body.data[1] = index & 0xFF; // LSB
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   402
  sdo.body.data[2] = (index >> 8) & 0xFF; // MSB
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   403
  // Subindex
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   404
  sdo.body.data[3] = subIndex;
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   405
  // Data
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   406
  sdo.body.data[4] = (UNS8)(abortCode & 0xFF);
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   407
  sdo.body.data[5] = (UNS8)((abortCode >> 8) & 0xFF);
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   408
  sdo.body.data[6] = (UNS8)((abortCode >> 16) & 0xFF);
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   409
  sdo.body.data[7] = (UNS8)((abortCode >> 24) & 0xFF);
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   410
  ret = sendSDO(d, whoami, sdo);
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   411
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   412
  return ret;
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   413
}
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   414
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   415
/***************************************************************************/
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   416
UNS8 proceedSDO (CO_Data* d, Message *m)
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   417
{
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   418
  UNS8 err;
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   419
  UNS8 line;
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   420
  UNS8 nbBytes; // received or to be transmited.
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   421
  UNS8 nodeId = 0;  // The node from which the SDO is received
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   422
  UNS8 *pNodeId = NULL;
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   423
  UNS8 whoami = SDO_UNKNOWN;  // SDO_SERVER or SDO_CLIENT.
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   424
  UNS32 errorCode; // while reading or writing in the local object dictionary.
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   425
  s_SDO sdo;    // SDO to transmit
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   426
  UNS16 index;
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   427
  UNS8 subIndex;
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   428
  UNS32 abortCode;
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   429
  UNS8 i,j;
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   430
  UNS32 *     pCobId = NULL;
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   431
  UNS8 *      pSize;
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   432
  UNS8        size;
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   433
  UNS16 offset;
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   434
  UNS16 lastIndex;
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   435
  
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   436
  pSize = &size; 
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   437
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   438
  MSG_WAR(0x3A60, "proceedSDO ", 0);
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   439
  whoami = SDO_UNKNOWN;
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   440
  // Looking for the cobId in the object dictionary.
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   441
  // Am-I a server ?
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   442
  offset = d->firstIndex->SDO_SVR;
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   443
  lastIndex = d->lastIndex->SDO_SVR;
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   444
  j = 0;
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   445
  if(offset) while (offset <= lastIndex) {
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   446
     if (d->objdict[offset].bSubCount <= 1) {
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   447
	  MSG_ERR(0x1A61, "Subindex 1  not found at index ", 0x1200 + j);
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   448
	  return 0xFF;
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   449
	}
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   450
      pCobId = d->objdict[offset].pSubindex[1].pObject;
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   451
      if ( *pCobId == (*m).cob_id.w ) {
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   452
	whoami = SDO_SERVER;
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   453
	MSG_WAR(0x3A62, "proceedSDO. I am server. index : ", 0x1200 + j);
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   454
	// In case of server, the node id of the client may be unknown. So we put the index minus offset
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   455
	// 0x1200 where the cobid received is defined.
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   456
	nodeId = j;
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   457
	break;
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   458
      }
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   459
      j++;
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   460
      offset++;
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   461
  } // end while
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   462
  if (whoami == SDO_UNKNOWN) {
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   463
    // Am-I client ?
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   464
    offset = d->firstIndex->SDO_CLT;
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   465
    lastIndex = d->lastIndex->SDO_CLT;
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   466
    j = 0;
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   467
    if(offset) while (offset <= lastIndex) {
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   468
       if (d->objdict[offset].bSubCount <= 3) {
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   469
	 MSG_ERR(0x1A63, "Subindex 3  not found at index ", 0x1280 + j);
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   470
	 return 0xFF;
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   471
       }
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   472
       // a) Looking for the cobid received.
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   473
       pCobId = d->objdict[offset].pSubindex[2].pObject;
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   474
       if (*pCobId == (*m).cob_id.w ) {
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   475
	 // b) cobid found, so reading the node id of the server.
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   476
	 pNodeId = d->objdict[offset].pSubindex[3].pObject;
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   477
	 whoami = SDO_CLIENT;
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   478
	 nodeId = *pNodeId;
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   479
	 MSG_WAR(0x3A64, "proceedSDO. I am server. index : ", 0x1280 + j);
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   480
	 MSG_WAR(0x3A65, "                 Server nodeId : ", nodeId);
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   481
	 break;
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   482
	}
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   483
       j++;
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   484
       offset++;
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   485
    } // end while
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   486
  }
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   487
  if (whoami == SDO_UNKNOWN) {
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   488
    return 0xFF;// This SDO was not for us !
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   489
  }
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   490
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   491
  // Test if the size of the SDO is ok
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   492
  if ( (*m).len != 8) {
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   493
    MSG_ERR(0x1A67, "Error size SDO. CobId  : ", (*m).cob_id.w);
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   494
    failedSDO(d, nodeId, whoami, 0, 0, SDOABT_GENERAL_ERROR);
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   495
    return 0xFF;
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   496
  }
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   497
  
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   498
  if (whoami == SDO_CLIENT) {
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   499
    MSG_WAR(0x3A68, "I am CLIENT. Received SDO from nodeId : ", nodeId);
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   500
  }
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   501
  else {
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   502
    MSG_WAR(0x3A69, "I am SERVER. Received SDO cobId : ", (*m).cob_id.w);
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   503
  }
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   504
    
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   505
  // Testing the command specifier
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   506
  // Allowed : cs = 0, 1, 2, 3, 4. (=  all except those for block tranfert).
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   507
  // cs = other : Not allowed -> abort.
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   508
  switch (getSDOcs(m->data[0])) {
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   509
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   510
  case 0:
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   511
    // I am SERVER
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   512
    if (whoami == SDO_SERVER) {
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   513
      // Receiving a download segment data.
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   514
      // A SDO transfert should have been yet initiated.
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   515
      err = getSDOlineOnUse( d, nodeId, whoami, &line ); 
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   516
      if (!err)
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   517
	err = d->transfers[line].state != SDO_DOWNLOAD_IN_PROGRESS;
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   518
      if (err) {
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   519
	MSG_ERR(0x1A70, "SDO error : Received download segment for unstarted trans. index 0x1200 + ", 
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   520
		nodeId); 
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   521
	failedSDO(d, nodeId, whoami, 0, 0, SDOABT_LOCAL_CTRL_ERROR);
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   522
	return 0xFF;
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   523
      }
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   524
      // Reset the wathdog
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   525
      RestartSDO_TIMER(line)
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   526
      MSG_WAR(0x3A71, "Received SDO download segment defined at index 0x1200 + ", nodeId); 
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   527
      index = d->transfers[line].index;
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   528
      subIndex = d->transfers[line].subIndex;
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   529
      // Toggle test.
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   530
      if (d->transfers[line].toggle != getSDOt(m->data[0])) {
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   531
	MSG_ERR(0x1A72, "SDO error : Toggle error : ", getSDOt(m->data[0])); 
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   532
	failedSDO(d, nodeId, whoami, index, subIndex, SDOABT_TOGGLE_NOT_ALTERNED);
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   533
	return 0xFF;
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   534
      }
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   535
      // Nb of data to be downloaded
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   536
      nbBytes = 7 - getSDOn3(m->data[0]);
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   537
      // Store the data in the transfert structure.
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   538
      err = SDOtoLine(d, line, nbBytes, (*m).data + 1);
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   539
      if (err) {
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   540
	failedSDO(d, nodeId, whoami, index, subIndex, SDOABT_GENERAL_ERROR);
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   541
	return 0xFF;
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   542
      }
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   543
      // Sending the SDO response, CS = 1
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   544
      sdo.nodeId = *d->bDeviceNodeId; // The node id of the server, (here it is the sender).
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   545
      sdo.body.data[0] = (1 << 5) | (d->transfers[line].toggle << 4);
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   546
      for (i = 1 ; i < 8 ; i++)
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   547
	sdo.body.data[i] = 0;
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   548
      MSG_WAR(0x3A73, "SDO. Send response to download request defined at index 0x1200 + ", nodeId); 
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   549
      sendSDO(d, whoami, sdo);
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   550
      // Inverting the toggle for the next segment.
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   551
      d->transfers[line].toggle = ! d->transfers[line].toggle & 1;
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   552
      // If it was the last segment,
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   553
      if (getSDOc(m->data[0])) {
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   554
	// Transfering line data to object dictionary.
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   555
	// The code does not use the "d" of initiate frame. So it is safe if e=s=0
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   556
	errorCode = SDOlineToObjdict(d, line);
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   557
	if (errorCode) {
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   558
	  MSG_ERR(0x1A54, "SDO error : Unable to copy the data in the object dictionary", 0); 
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   559
	  failedSDO(d, nodeId, whoami, index, subIndex, errorCode);
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   560
	  return 0xFF;	  
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   561
	}
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   562
	// Release of the line
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   563
	resetSDOline(d, line);
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   564
	MSG_WAR(0x3A74, "SDO. End of download defined at index 0x1200 + ", nodeId); 
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   565
      }
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   566
    } // end if SERVER
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   567
    else { // if CLIENT
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   568
      // I am CLIENT
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   569
      // It is a request for a previous upload segment. We should find a line opened for this.
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   570
      err = getSDOlineOnUse( d, nodeId, whoami, &line);
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   571
      if (!err)
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   572
	err = d->transfers[line].state != SDO_UPLOAD_IN_PROGRESS;
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   573
      if (err) {
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   574
	MSG_ERR(0x1A75, "SDO error : Received segment response for unknown trans. from nodeId", nodeId); 
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   575
	failedSDO(d, nodeId, whoami, 0, 0, SDOABT_LOCAL_CTRL_ERROR);
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   576
	return 0xFF;
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   577
      }
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   578
      // Reset the wathdog
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   579
      RestartSDO_TIMER(line)
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   580
      index = d->transfers[line].index;
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   581
      subIndex = d->transfers[line].subIndex;
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   582
      // test of the toggle;
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   583
      if (d->transfers[line].toggle != getSDOt(m->data[0])) {
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   584
	MSG_ERR(0x1A76, "SDO error : Received segment response Toggle error. from nodeId", nodeId); 
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   585
	failedSDO(d, nodeId, whoami, index, subIndex, SDOABT_TOGGLE_NOT_ALTERNED);
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   586
	return 0xFF;
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   587
      }
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   588
      // nb of data to be uploaded
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   589
      nbBytes = 7 - getSDOn3(m->data[0]);
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   590
      // Storing the data in the line structure.
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   591
      err = SDOtoLine(d, line, nbBytes, (*m).data + 1);
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   592
      if (err) {
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   593
	failedSDO(d, nodeId, whoami, index, subIndex, SDOABT_GENERAL_ERROR);
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   594
	return 0xFF;
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   595
      }
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   596
      // Inverting the toggle for the next segment.
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   597
      d->transfers[line].toggle = ! d->transfers[line].toggle & 1;
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   598
      // If it was the last segment,
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   599
      if ( getSDOc(m->data[0])) {
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   600
	// Put in state finished
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   601
	// The code is safe for the case e=s=0 in initiate frame.
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   602
	StopSDO_TIMER(line)
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   603
	d->transfers[line].state = SDO_FINISHED;
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   604
	MSG_WAR(0x3A77, "SDO. End of upload from node : ", nodeId);
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   605
      }
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   606
      else { // more segments to receive
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   607
	     // Sending the request for the next segment.
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   608
	sdo.nodeId = nodeId;
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   609
	sdo.body.data[0] = (3 << 5) | (d->transfers[line].toggle << 4);
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   610
	for (i = 1 ; i < 8 ; i++)
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   611
	  sdo.body.data[i] = 0;
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   612
	sendSDO(d, whoami, sdo);
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   613
	MSG_WAR(0x3A78, "SDO send upload segment request to nodeId", nodeId);
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   614
      }            
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   615
    } // End if CLIENT
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   616
    break;
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   617
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   618
  case 1:
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   619
    // I am SERVER
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   620
    // Receive of an initiate download
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   621
    if (whoami == SDO_SERVER) {
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   622
      index = getSDOindex(m->data[1],m->data[2]);
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   623
      subIndex = getSDOsubIndex(m->data[3]);
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   624
      MSG_WAR(0x3A79, "Received SDO Initiate Download (to store data) defined at index 0x1200 + ", 
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   625
	      nodeId); 
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   626
      MSG_WAR(0x3A80, "Writing at index : ", index);
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   627
      MSG_WAR(0x3A80, "Writing at subIndex : ", subIndex);
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   628
      
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   629
      // Search if a SDO transfert have been yet initiated
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   630
      err = getSDOlineOnUse( d, nodeId, whoami, &line );
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   631
      if (! err) {
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   632
	MSG_ERR(0x1A81, "SDO error : Transmission yet started.", 0); 
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   633
	failedSDO(d, nodeId, whoami, index, subIndex, SDOABT_LOCAL_CTRL_ERROR);
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   634
	return 0xFF;
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   635
      }
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   636
      // No line on use. Great !
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   637
      // Try to open a new line.
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   638
      err = getSDOfreeLine( d, whoami, &line );
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   639
      if (err) {
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   640
	MSG_ERR(0x1A82, "SDO error : No line free, too many SDO in progress. Aborted.", 0);
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   641
	failedSDO(d, nodeId, whoami, index, subIndex, SDOABT_LOCAL_CTRL_ERROR);
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   642
	return 0xFF;
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   643
      }
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   644
      initSDOline(d, line, nodeId, index, subIndex, SDO_DOWNLOAD_IN_PROGRESS);      
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   645
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   646
      if (getSDOe(m->data[0])) { // If SDO expedited
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   647
	// nb of data to be downloaded
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   648
	nbBytes = 4 - getSDOn2(m->data[0]);
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   649
	// Storing the data in the line structure.
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   650
	d->transfers[line].count = nbBytes;
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   651
	err = SDOtoLine(d, line, nbBytes, (*m).data + 4);
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   652
	
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   653
	if (err) {
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   654
	  failedSDO(d, nodeId, whoami, index, subIndex, SDOABT_GENERAL_ERROR);
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   655
	  return 0xFF;
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   656
	}	  
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   657
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   658
	// SDO expedited -> transfert finished. Data can be stored in the dictionary.
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   659
	// The line will be reseted when it is downloading in the dictionary.
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   660
	MSG_WAR(0x3A83, "SDO Initiate Download is an expedited transfert. Finished.: ", nodeId);
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   661
	// Transfering line data to object dictionary.
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   662
	errorCode = SDOlineToObjdict(d, line);
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   663
	if (errorCode) {
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   664
	  MSG_ERR(0x1A84, "SDO error : Unable to copy the data in the object dictionary", 0); 
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   665
	  failedSDO(d, nodeId, whoami, index, subIndex, errorCode);
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   666
	  return 0xFF;
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   667
	}
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   668
	// Release of the line.
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   669
	resetSDOline(d, line);
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   670
      }
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   671
      else {// So, if it is not an expedited transfert
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   672
	if (getSDOs(m->data[0])) {
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   673
	  // TODO : if e and s = 0, not reading m->data[4] but put nbBytes = 0
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   674
	  nbBytes = m->data[4]; // Transfert limited to 255 bytes.
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   675
	  err = setSDOlineRestBytes(d, nodeId, nbBytes);
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   676
	  if (err) {
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   677
	    failedSDO(d, nodeId, whoami, index, subIndex, SDOABT_GENERAL_ERROR);
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   678
	    return 0xFF;
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   679
	  }	
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   680
	}
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   681
      }
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   682
      //Sending a SDO, cs=3
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   683
      sdo.nodeId = *d->bDeviceNodeId; // The node id of the server, (here it is the sender).
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   684
      sdo.body.data[0] = 3 << 5;
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   685
      sdo.body.data[1] = index & 0xFF;        // LSB
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   686
      sdo.body.data[2] = (index >> 8) & 0xFF; // MSB 
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   687
      sdo.body.data[3] = subIndex;
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   688
      for (i = 4 ; i < 8 ; i++)
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   689
		sdo.body.data[i] = 0;
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   690
      sendSDO(d, whoami, sdo);
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   691
    } // end if I am SERVER
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   692
    else {
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   693
      // I am CLIENT
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   694
      // It is a response for a previous download segment. We should find a line opened for this.
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   695
      err = getSDOlineOnUse( d, nodeId, whoami, &line);
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   696
      if (!err)
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   697
	err = d->transfers[line].state != SDO_DOWNLOAD_IN_PROGRESS;
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   698
      if (err) {
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   699
	MSG_ERR(0x1A85, "SDO error : Received segment response for unknown trans. from nodeId", nodeId); 
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   700
	failedSDO(d, nodeId, whoami, 0, 0, SDOABT_LOCAL_CTRL_ERROR);
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   701
	return 0xFF;
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   702
      }
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   703
      // Reset the wathdog
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   704
      RestartSDO_TIMER(line)
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   705
      index = d->transfers[line].index;
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   706
      subIndex = d->transfers[line].subIndex;
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   707
      // test of the toggle;
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   708
      if (d->transfers[line].toggle != getSDOt(m->data[0])) {
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   709
	MSG_ERR(0x1A86, "SDO error : Received segment response Toggle error. from nodeId", nodeId); 
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   710
	failedSDO(d, nodeId, whoami, index, subIndex, SDOABT_TOGGLE_NOT_ALTERNED);
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   711
	return 0xFF;
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   712
      }
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   713
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   714
      // End transmission or downloading next segment. We need to know if it will be the last one.
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   715
      getSDOlineRestBytes(d, line, &nbBytes);
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   716
      if (nbBytes == 0) {
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   717
	MSG_WAR(0x3A87, "SDO End download. segment response received. OK. from nodeId", nodeId); 
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   718
	StopSDO_TIMER(line)
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   719
	d->transfers[line].state = SDO_FINISHED;
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   720
	return 0x00;
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   721
      }
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   722
      // At least one transfer to send.	  
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   723
      if (nbBytes > 7) {
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   724
	// several segments to download.
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   725
	// code to send the next segment. (cs = 0; c = 0)
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   726
	d->transfers[line].toggle = ! d->transfers[line].toggle & 1;
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   727
	sdo.nodeId = nodeId; // The server node Id;
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   728
	sdo.body.data[0] = (d->transfers[line].toggle << 4);
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   729
	err = lineToSDO(d, line, 7, sdo.body.data + 1);	 
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   730
	if (err) {
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   731
	  failedSDO(d, nodeId, whoami, index, subIndex, SDOABT_GENERAL_ERROR);
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   732
	  return 0xFF;
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   733
	}
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   734
      } 
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   735
      else {
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   736
	// Last segment.
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   737
	// code to send the last segment. (cs = 0; c = 1)
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   738
	d->transfers[line].toggle = ! d->transfers[line].toggle & 1;
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   739
	sdo.nodeId = nodeId; // The server node Id;
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   740
	sdo.body.data[0] = (d->transfers[line].toggle << 4) | ((7 - nbBytes) << 1) | 1;
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   741
	err = lineToSDO(d, line, nbBytes, sdo.body.data + 1);	 
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   742
	if (err) {
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   743
	  failedSDO(d, nodeId, whoami, index, subIndex, SDOABT_GENERAL_ERROR);
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   744
	  return 0xFF;
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   745
	}
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   746
	for (i = nbBytes + 1 ; i < 8 ; i++)
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   747
	  sdo.body.data[i] = 0;
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   748
      }
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   749
      MSG_WAR(0x3A88, "SDO sending download segment to nodeId", nodeId); 
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   750
      sendSDO(d, whoami, sdo); 
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   751
    } // end if I am a CLIENT			  
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   752
    break;
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   753
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   754
  case 2:
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   755
    // I am SERVER
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   756
    // Receive of an initiate upload.
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   757
    if (whoami == SDO_SERVER) {
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   758
      index = getSDOindex(m->data[1],m->data[2]);
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   759
      subIndex = getSDOsubIndex(m->data[3]);
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   760
      MSG_WAR(0x3A89, "Received SDO Initiate upload (to send data) defined at index 0x1200 + ", 
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   761
	      nodeId); 
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   762
      MSG_WAR(0x3A90, "Reading at index : ", index);
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   763
      MSG_WAR(0x3A91, "Reading at subIndex : ", subIndex);
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   764
      // Search if a SDO transfert have been yet initiated
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   765
      err = getSDOlineOnUse( d, nodeId, whoami, &line );
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   766
      if (! err) {
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   767
	MSG_ERR(0x1A92, "SDO error : Transmission yet started at line : ", line); 
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   768
        MSG_WAR(0x3A93, "nodeId = ", nodeId); 
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   769
	failedSDO(d, nodeId, whoami, index, subIndex, SDOABT_LOCAL_CTRL_ERROR);
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   770
	return 0xFF;
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   771
      }
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   772
      // No line on use. Great !
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   773
      // Try to open a new line.
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   774
      err = getSDOfreeLine( d, whoami, &line );
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   775
      if (err) {
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   776
	MSG_ERR(0x1A71, "SDO error : No line free, too many SDO in progress. Aborted.", 0);
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   777
	failedSDO(d, nodeId, whoami, index, subIndex, SDOABT_LOCAL_CTRL_ERROR);
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   778
	return 0xFF;
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   779
      }
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   780
      initSDOline(d, line, nodeId, index, subIndex, SDO_UPLOAD_IN_PROGRESS);
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   781
      // Transfer data from dictionary to the line structure.
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   782
      errorCode = objdictToSDOline(d, line);
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   783
     
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   784
      if (errorCode) {
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   785
	MSG_ERR(0x1A94, "SDO error : Unable to copy the data from object dictionary. Err code : ", 
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   786
		errorCode); 
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   787
	failedSDO(d, nodeId, whoami, index, subIndex, errorCode);
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   788
	return 0xFF;
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   789
	}
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   790
      // Preparing the response.
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   791
      getSDOlineRestBytes(d, line, &nbBytes);	// Nb bytes to transfer ?
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   792
      sdo.nodeId = nodeId; // The server node Id;
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   793
      if (nbBytes > 4) {
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   794
	// normal transfert. (segmented).
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   795
	// code to send the initiate upload response. (cs = 2)
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   796
	sdo.body.data[0] = (2 << 5) | 1;
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   797
	sdo.body.data[1] = index & 0xFF;        // LSB
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   798
	sdo.body.data[2] = (index >> 8) & 0xFF; // MSB 
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   799
	sdo.body.data[3] = subIndex;
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   800
        sdo.body.data[4] = nbBytes; // Limitation of canfestival2 : Max tranfert is 256 bytes.
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   801
	// It takes too much memory to upgrate to 2^32 because the size of data is also coded
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   802
	// in the object dictionary, at every index and subindex.
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   803
	for (i = 5 ; i < 8 ; i++)
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   804
	  sdo.body.data[i] = 0;
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   805
	MSG_WAR(0x3A95, "SDO. Sending normal upload initiate response defined at index 0x1200 + ", nodeId); 
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   806
	sendSDO(d, whoami, sdo); 
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   807
      }
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   808
      else {
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   809
	// Expedited upload. (cs = 2 ; e = 1) 
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   810
	sdo.body.data[0] = (2 << 5) | ((4 - nbBytes) << 2) | 3;  
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   811
	sdo.body.data[1] = index & 0xFF;        // LSB
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   812
	sdo.body.data[2] = (index >> 8) & 0xFF; // MSB 
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   813
	sdo.body.data[3] = subIndex;
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   814
	err = lineToSDO(d, line, nbBytes, sdo.body.data + 4);	 
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   815
	if (err) {
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   816
	  failedSDO(d, nodeId, whoami, index, subIndex, SDOABT_GENERAL_ERROR);
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   817
	  return 0xFF;
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   818
	}
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   819
	for (i = 4 + nbBytes ; i < 8 ; i++)
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   820
	  sdo.body.data[i] = 0;
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   821
	MSG_WAR(0x3A96, "SDO. Sending expedited upload initiate response defined at index 0x1200 + ", 
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   822
		nodeId); 
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   823
	sendSDO(d, whoami, sdo); 
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   824
	// Release the line.
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   825
	resetSDOline(d, line);
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   826
      }
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   827
    } // end if I am SERVER
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   828
    else {
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   829
      // I am CLIENT
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   830
      // It is the response for the previous initiate upload request. 
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   831
      // We should find a line opened for this.
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   832
      err = getSDOlineOnUse( d, nodeId, whoami, &line);
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   833
      if (!err)
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   834
	err = d->transfers[line].state != SDO_UPLOAD_IN_PROGRESS;
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   835
      if (err) {
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   836
	MSG_ERR(0x1A97, "SDO error : Received response for unknown upload request from nodeId", nodeId); 
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   837
	failedSDO(d, nodeId, whoami, 0, 0, SDOABT_LOCAL_CTRL_ERROR);
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   838
	return 0xFF;
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   839
      }
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   840
      // Reset the wathdog
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   841
      RestartSDO_TIMER(line)
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   842
      index = d->transfers[line].index;
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   843
      subIndex = d->transfers[line].subIndex;
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   844
      
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   845
      if (getSDOe(m->data[0])) { // If SDO expedited
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   846
	// nb of data to be uploaded
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   847
	  nbBytes = 4 - getSDOn2(m->data[0]);
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   848
	// Storing the data in the line structure.
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   849
	err = SDOtoLine(d, line, nbBytes, (*m).data + 4);
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   850
	if (err) {
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   851
	  failedSDO(d, nodeId, whoami, index, subIndex, SDOABT_GENERAL_ERROR);
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   852
	  return 0xFF;
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   853
	}
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   854
	// SDO expedited -> transfert finished. data are available via  getReadResultNetworkDict().
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   855
	MSG_WAR(0x3A98, "SDO expedited upload finished. Response received from node : ", nodeId);
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   856
	StopSDO_TIMER(line)
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   857
	d->transfers[line].count = nbBytes;
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   858
	d->transfers[line].state = SDO_FINISHED;
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   859
	return 0;
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   860
      }
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   861
      else { // So, if it is not an expedited transfert
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   862
	// Storing the nb of data to receive.
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   863
	if (getSDOs(m->data[0])) {
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   864
	  nbBytes = m->data[4]; // Remember the limitation to 255 bytes to transfert
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   865
	  err = setSDOlineRestBytes(d, line, nbBytes);
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   866
	  if (err) {
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   867
	    failedSDO(d, nodeId, whoami, index, subIndex, SDOABT_GENERAL_ERROR);
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   868
	    return 0xFF;
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   869
	  }	
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   870
	}
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   871
	// Requesting next segment. (cs = 3)
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   872
	sdo.nodeId = nodeId;
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   873
	sdo.body.data[0] = 3 << 5;
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   874
	for (i = 1 ; i < 8 ; i++)
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   875
	  sdo.body.data[i] = 0;
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   876
	MSG_WAR(0x3A99, "SDO. Sending upload segment request to node : ", nodeId); 
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   877
	sendSDO(d, whoami, sdo);  
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   878
      }
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   879
    } // End if CLIENT
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   880
    break;
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   881
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   882
  case 3:
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   883
    // I am SERVER
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   884
    if (whoami == SDO_SERVER) {
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   885
      // Receiving a upload segment.
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   886
      // A SDO transfert should have been yet initiated.
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   887
      err = getSDOlineOnUse( d, nodeId, whoami, &line ); 
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   888
      if (!err)
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   889
	err = d->transfers[line].state != SDO_UPLOAD_IN_PROGRESS;
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   890
      if (err) {
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   891
	MSG_ERR(0x1AA0, "SDO error : Received upload segment for unstarted trans. index 0x1200 + ", 
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   892
		nodeId); 
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   893
	failedSDO(d, nodeId, whoami, 0, 0, SDOABT_LOCAL_CTRL_ERROR);
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   894
	return 0xFF;
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   895
      }
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   896
      // Reset the wathdog
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   897
      RestartSDO_TIMER(line)
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   898
      MSG_WAR(0x3AA1, "Received SDO upload segment defined at index 0x1200 + ", nodeId); 
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   899
      index = d->transfers[line].index;
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   900
      subIndex = d->transfers[line].subIndex;
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   901
      // Toggle test.
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   902
      if (d->transfers[line].toggle != getSDOt(m->data[0])) {
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   903
	MSG_ERR(0x1AA2, "SDO error : Toggle error : ", getSDOt(m->data[0])); 
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   904
	failedSDO(d, nodeId, whoami, index, subIndex, SDOABT_TOGGLE_NOT_ALTERNED);
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   905
	return 0xFF;
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   906
      }
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   907
      // Uploading next segment. We need to know if it will be the last one.
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   908
      getSDOlineRestBytes(d, line, &nbBytes);	  	  
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   909
      if (nbBytes > 7) {
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   910
	// The segment to transfer is not the last one.
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   911
	// code to send the next segment. (cs = 0; c = 0)
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   912
	sdo.nodeId = nodeId; // The server node Id;
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   913
	sdo.body.data[0] = (d->transfers[line].toggle << 4);
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   914
	err = lineToSDO(d, line, 7, sdo.body.data + 1);	 
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   915
	if (err) {
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   916
	  failedSDO(d, nodeId, whoami, index, subIndex, SDOABT_GENERAL_ERROR);
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   917
	  return 0xFF;
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   918
	}
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   919
	// Inverting the toggle for the next tranfert.
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   920
	d->transfers[line].toggle = ! d->transfers[line].toggle & 1;
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   921
	MSG_WAR(0x3AA3, "SDO. Sending upload segment defined at index 0x1200 + ", nodeId); 
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   922
	sendSDO(d, whoami, sdo); 
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   923
      } 
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   924
      else {
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   925
	// Last segment.
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   926
	// code to send the last segment. (cs = 0; c = 1)	    
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   927
	sdo.nodeId = nodeId; // The server node Id;
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   928
	sdo.body.data[0] = (d->transfers[line].toggle << 4) | ((7 - nbBytes) << 1) | 1;
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   929
	err = lineToSDO(d, line, nbBytes, sdo.body.data + 1);	 
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   930
	if (err) {
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   931
	  failedSDO(d, nodeId, whoami, index, subIndex, SDOABT_GENERAL_ERROR);
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   932
	  return 0xFF;
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   933
	}
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   934
	for (i = nbBytes + 1 ; i < 8 ; i++)
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   935
	  sdo.body.data[i] = 0;
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   936
	MSG_WAR(0x3AA4, "SDO. Sending last upload segment defined at index 0x1200 + ", nodeId);      
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   937
	sendSDO(d, whoami, sdo);
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   938
	// Release the line
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   939
	resetSDOline(d, line);
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   940
      }
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   941
    } // end if SERVER	
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   942
    else {
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   943
      // I am CLIENT
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   944
      // It is the response for the previous initiate download request. 
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   945
      // We should find a line opened for this.
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   946
      err = getSDOlineOnUse( d, nodeId, whoami, &line);
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   947
      if (!err)
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   948
	err = d->transfers[line].state != SDO_DOWNLOAD_IN_PROGRESS;
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   949
      if (err) {
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   950
	MSG_ERR(0x1AA5, "SDO error : Received response for unknown download request from nodeId", nodeId); 
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   951
	failedSDO(d, nodeId, whoami, 0, 0, SDOABT_LOCAL_CTRL_ERROR);
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   952
	return 0xFF;
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   953
      }
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   954
      // Reset the wathdog
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   955
      RestartSDO_TIMER(line)
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   956
      index = d->transfers[line].index;
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   957
      subIndex = d->transfers[line].subIndex;
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   958
      // End transmission or requesting  next segment. 
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   959
      getSDOlineRestBytes(d, line, &nbBytes);
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   960
      if (nbBytes == 0) {
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   961
	MSG_WAR(0x3AA6, "SDO End download expedited. Response received. from nodeId", nodeId); 
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   962
	StopSDO_TIMER(line)
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   963
	d->transfers[line].state = SDO_FINISHED;
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   964
	return 0x00;
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   965
      }	  
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   966
      if (nbBytes > 7) {
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   967
	// more than one request to send
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   968
	// code to send the next segment. (cs = 0; c = 0)	    
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   969
	sdo.nodeId = nodeId; // The server node Id;
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   970
	sdo.body.data[0] = (d->transfers[line].toggle << 4);
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   971
	err = lineToSDO(d, line, 7, sdo.body.data + 1);	 
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   972
	if (err) {
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   973
	  failedSDO(d, nodeId, whoami, index, subIndex, SDOABT_GENERAL_ERROR);
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   974
	  return 0xFF;
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   975
	}
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   976
      } 
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   977
      else {
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   978
	// Last segment.
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   979
	// code to send the last segment. (cs = 0; c = 1)	   
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   980
	sdo.nodeId = nodeId; // The server node Id;
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   981
	sdo.body.data[0] = (d->transfers[line].toggle << 4) | ((7 - nbBytes) << 1) | 1;
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   982
	err = lineToSDO(d, line, nbBytes, sdo.body.data + 1);	 
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   983
	if (err) {
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   984
	  failedSDO(d, nodeId, whoami, index, subIndex, SDOABT_GENERAL_ERROR);
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   985
	  return 0xFF;
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   986
	}
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   987
	for (i = nbBytes + 1 ; i < 8 ; i++)
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   988
	  sdo.body.data[i] = 0;
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   989
      }
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   990
      MSG_WAR(0x3AA7, "SDO sending download segment to nodeId", nodeId); 
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   991
      sendSDO(d, whoami, sdo); 
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   992
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   993
    } // end if I am a CLIENT			  
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   994
    break;  
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   995
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   996
  case 4:
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   997
    abortCode = (*m).data[3] | 
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   998
      (m->data[5] << 8) |
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   999
      (m->data[6] << 16) |
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
  1000
      (m->data[7] << 24);
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
  1001
    // Received SDO abort.
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
  1002
    // Looking for the line concerned.
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
  1003
    if (whoami == SDO_SERVER) {
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
  1004
      err = getSDOlineOnUse( d, nodeId, whoami, &line );
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
  1005
      if (!err) {
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
  1006
	resetSDOline( d, line );
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
  1007
	MSG_WAR(0x3AA8, "SD0. Received SDO abort. Line released. Code : ", abortCode);
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
  1008
      }
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
  1009
      else
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
  1010
	MSG_WAR(0x3AA9, "SD0. Received SDO abort. No line found. Code : ", abortCode);
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
  1011
      // Tips : The end user has no way to know that the server node has received an abort SDO. 
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
  1012
      // Its is ok, I think.
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
  1013
    }
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
  1014
    else { // If I am CLIENT
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
  1015
      err = getSDOlineOnUse( d, nodeId, whoami, &line );
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
  1016
      if (!err) {
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
  1017
	// The line *must* be released by the core program.
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
  1018
	StopSDO_TIMER(line)
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
  1019
	d->transfers[line].state = SDO_ABORTED_RCV;
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
  1020
	MSG_WAR(0x3AB0, "SD0. Received SDO abort. Line state ABORTED. Code : ", abortCode);
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
  1021
      }
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
  1022
      else
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
  1023
	MSG_WAR(0x3AB1, "SD0. Received SDO abort. No line found. Code : ", abortCode);
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
  1024
    } 
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
  1025
    break;
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
  1026
  default:
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
  1027
    // Error : Unknown cs
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
  1028
    MSG_ERR(0x1AB2, "SDO. Received unknown command specifier : ", getSDOcs(m->data[0]));
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
  1029
    return 0xFF;
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
  1030
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
  1031
  } // End switch
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
  1032
  return 0;     
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
  1033
}
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
  1034
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
  1035
/*******************************************************************)******/
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
  1036
UNS8 writeNetworkDict (CO_Data* d, UNS8 nodeId, UNS16 index, 
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
  1037
		       UNS8 subIndex, UNS8 count, UNS8 dataType, void *data)
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
  1038
{
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
  1039
  UNS8 err;
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
  1040
  UNS8 SDOfound = 0;
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
  1041
  UNS8 line;
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
  1042
  s_SDO sdo;    // SDO to transmit
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
  1043
  UNS8 i, j;
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
  1044
  UNS8 *    pSize;
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
  1045
  UNS8      size;
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
  1046
  UNS16     lastIndex;
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
  1047
  UNS16     offset;
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
  1048
  UNS8      *pNodeIdServer;
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
  1049
  UNS8      nodeIdServer;
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
  1050
  pSize = &size;
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
  1051
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
  1052
  MSG_WAR(0x3AC0, "Send SDO to write in the dictionary of node : ", nodeId);
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
  1053
  MSG_WAR(0x3AC1, "                                   At index : ", index);
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
  1054
  MSG_WAR(0x3AC2, "                                   subIndex : ", subIndex);
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
  1055
  MSG_WAR(0x3AC3, "                                   nb bytes : ", count);
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
  1056
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
  1057
  // Verify that there is no SDO communication yet.
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
  1058
  err = getSDOlineOnUse(d, nodeId, SDO_CLIENT, &line);
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
  1059
  if (!err) {
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
  1060
    MSG_ERR(0x1AC4, "SDO error : Communication yet established. with node : ", nodeId); 
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
  1061
    return 0xFF;
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
  1062
  }
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
  1063
  // Taking the line ...
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
  1064
  err = getSDOfreeLine( d, SDO_CLIENT, &line );
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
  1065
  if (err) {
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
  1066
    MSG_ERR(0x1AC5, "SDO error : No line free, too many SDO in progress. Aborted for node : ", nodeId); 
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
  1067
    return (0xFF);
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
  1068
  }
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
  1069
  // Check which SDO to use to communicate with the node
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
  1070
  offset = d->firstIndex->SDO_CLT;
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
  1071
  lastIndex = d->lastIndex->SDO_CLT;
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
  1072
  if (offset == 0) {
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
  1073
    MSG_ERR(0x1AC6, "writeNetworkDict : No SDO client index found", 0); 
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
  1074
    return 0xFF;
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
  1075
  }
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
  1076
  i = 0;
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
  1077
   while (offset <= lastIndex) {
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
  1078
     if (d->objdict[offset].bSubCount <= 3) {
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
  1079
	 MSG_ERR(0x1AC8, "Subindex 3  not found at index ", 0x1280 + i);
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
  1080
	 return 0xFF;
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
  1081
     }
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
  1082
     // looking for the nodeId server
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
  1083
     pNodeIdServer = d->objdict[offset].pSubindex[3].pObject;
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
  1084
     nodeIdServer = *pNodeIdServer;
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
  1085
     MSG_WAR(0x1AD2, "index : ", 0x1280 + i);
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
  1086
     MSG_WAR(0x1AD3, "nodeIdServer : ", nodeIdServer);
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
  1087
   
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
  1088
    if(nodeIdServer == nodeId) {
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
  1089
      SDOfound = 1;
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
  1090
      break;
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
  1091
    }
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
  1092
    offset++;
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
  1093
    i++;
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
  1094
  } // end while
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
  1095
  if (!SDOfound) {
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
  1096
    MSG_ERR(0x1AC9, "SDO. Error. No client found to communicate with node : ", nodeId);
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
  1097
    return 0xFF;
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
  1098
  }
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
  1099
  MSG_WAR(0x3AD0,"        SDO client defined at index  : ", 0x1280 + i);
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
  1100
  initSDOline(d, line, nodeId, index, subIndex, SDO_DOWNLOAD_IN_PROGRESS);
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
  1101
  d->transfers[line].count = count;
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
  1102
  d->transfers[line].dataType = dataType;
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
  1103
  
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
  1104
  // Copy data to transfers structure.
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
  1105
  for (j = 0 ; j < count ; j++) {
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
  1106
# ifdef CANOPEN_BIG_ENDIAN
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
  1107
    if (dataType == 0)
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
  1108
      d->transfers[line].data[count - 1 - j] = ((char *)data)[j];
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
  1109
    else // String of bytes.
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
  1110
      d->transfers[line].data[j] = ((char *)data)[j];
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
  1111
#  else 
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
  1112
    d->transfers[line].data[j] = ((char *)data)[j];
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
  1113
#  endif
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
  1114
  }
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
  1115
  // Send the SDO to the server. Initiate download, cs=1.
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
  1116
  sdo.nodeId = nodeId;
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
  1117
  if (count <= 4) { // Expedited transfert
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
  1118
    sdo.body.data[0] = (1 << 5) | ((4 - count) << 2) | 3;
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
  1119
    for (i = 4 ; i < 8 ; i++)
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
  1120
      sdo.body.data[i] = d->transfers[line].data[i - 4];
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
  1121
    d->transfers[line].offset = count;
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
  1122
  }	
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
  1123
  else { // Normal transfert
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
  1124
    sdo.body.data[0] = (1 << 5) | 1;
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
  1125
    sdo.body.data[4] = count; // nb of byte to transmit. Max = 255. (canfestival2 limitation).
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
  1126
    for (i = 5 ; i < 8 ; i++)
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
  1127
      sdo.body.data[i] = 0;
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
  1128
  }
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
  1129
  sdo.body.data[1] = index & 0xFF;        // LSB
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
  1130
  sdo.body.data[2] = (index >> 8) & 0xFF; // MSB 
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
  1131
  sdo.body.data[3] = subIndex;
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
  1132
  
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
  1133
  err = sendSDO(d, SDO_CLIENT, sdo);
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
  1134
  if (err) {
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
  1135
    MSG_ERR(0x1AD1, "SDO. Error while sending SDO to node : ", nodeId);
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
  1136
    // release the line
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
  1137
    resetSDOline(d, line);
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
  1138
    return 0xFF;
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
  1139
  }		
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
  1140
  return 0;
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
  1141
}
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
  1142
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
  1143
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
  1144
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
  1145
/***************************************************************************/
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
  1146
UNS8 readNetworkDict (CO_Data* d, UNS8 nodeId, UNS16 index, UNS8 subIndex, UNS8 dataType)
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
  1147
{
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
  1148
  UNS8 err;
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
  1149
  UNS8 SDOfound = 0;
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
  1150
  UNS8 i;
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
  1151
  UNS8 line;
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
  1152
  UNS8 *    pSize;
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
  1153
  UNS8      size;
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
  1154
  s_SDO sdo;    // SDO to transmit
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
  1155
  UNS8      *pNodeIdServer;
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
  1156
  UNS8      nodeIdServer;
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
  1157
  UNS16     offset;
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
  1158
  UNS16     lastIndex;
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
  1159
  pSize = &size;
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
  1160
  MSG_WAR(0x3AD5, "Send SDO to read in the dictionary of node : ", nodeId);
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
  1161
  MSG_WAR(0x3AD6, "                                  At index : ", index);
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
  1162
  MSG_WAR(0x3AD7, "                                  subIndex : ", subIndex);
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
  1163
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
  1164
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
  1165
  // Verify that there is no SDO communication yet.
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
  1166
  err = getSDOlineOnUse(d, nodeId, SDO_CLIENT, &line);
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
  1167
  if (!err) {
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
  1168
    MSG_ERR(0x1AD8, "SDO error : Communication yet established. with node : ", nodeId); 
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
  1169
    return 0xFF;
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
  1170
  }
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
  1171
  // Taking the line ...
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
  1172
  err = getSDOfreeLine( d, SDO_CLIENT, &line );
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
  1173
  if (err) {
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
  1174
    MSG_ERR(0x1AD9, "SDO error : No line free, too many SDO in progress. Aborted for node : ", nodeId); 
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
  1175
    return (0xFF);
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
  1176
  }
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
  1177
  else
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
  1178
    MSG_WAR(0x3AE0, "Transmission on line : ", line);
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
  1179
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
  1180
  // Check which SDO to use to communicate with the node
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
  1181
  offset = d->firstIndex->SDO_CLT;
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
  1182
  lastIndex = d->lastIndex->SDO_CLT;
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
  1183
  if (offset == 0) {
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
  1184
    MSG_ERR(0x1AE1, "writeNetworkDict : No SDO client index found", 0); 
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
  1185
    return 0xFF;
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
  1186
  }
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
  1187
  i = 0;
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
  1188
  while (offset <= lastIndex) {
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
  1189
     if (d->objdict[offset].bSubCount <= 3) {
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
  1190
	 MSG_ERR(0x1AE2, "Subindex 3  not found at index ", 0x1280 + i);
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
  1191
	 return 0xFF;
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
  1192
     }
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
  1193
     // looking for the nodeId server
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
  1194
     pNodeIdServer = d->objdict[offset].pSubindex[3].pObject;
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
  1195
     nodeIdServer = *pNodeIdServer;
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
  1196
   
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
  1197
    if(nodeIdServer == nodeId) {
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
  1198
      SDOfound = 1;
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
  1199
      break;
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
  1200
    }
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
  1201
    offset++;
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
  1202
    i++;
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
  1203
  } // end while
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
  1204
  if (!SDOfound) {
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
  1205
    MSG_ERR(0x1AE3, "SDO. Error. No client found to communicate with node : ", nodeId);
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
  1206
    return 0xFF;
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
  1207
  }
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
  1208
  MSG_WAR(0x3AE4,"        SDO client defined at index  : ", 0x1280 + i);
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
  1209
  initSDOline(d, line, nodeId, index, subIndex, SDO_UPLOAD_IN_PROGRESS);
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
  1210
  getSDOlineOnUse(d, nodeId, SDO_CLIENT, &line);
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
  1211
  sdo.nodeId = nodeId;
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
  1212
  // Send the SDO to the server. Initiate upload, cs=2.
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
  1213
  d->transfers[line].dataType = dataType;				
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
  1214
  sdo.body.data[0] = (2 << 5);	
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
  1215
  sdo.body.data[1] = index & 0xFF;        // LSB
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
  1216
  sdo.body.data[2] = (index >> 8) & 0xFF; // MSB 
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
  1217
  sdo.body.data[3] = subIndex;
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
  1218
  for (i = 4 ; i < 8 ; i++)
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
  1219
    sdo.body.data[i] = 0;
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
  1220
  err = sendSDO(d, SDO_CLIENT, sdo);
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
  1221
  if (err) {
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
  1222
    MSG_ERR(0x1AE5, "SDO. Error while sending SDO to node : ", nodeId);
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
  1223
    // release the line
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
  1224
    resetSDOline(d, line);
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
  1225
    return 0xFF;
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
  1226
  }		
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
  1227
  return 0;
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
  1228
}
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
  1229
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
  1230
/***************************************************************************/
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
  1231
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
  1232
UNS8 getReadResultNetworkDict (CO_Data* d, UNS8 nodeId, void* data, UNS8 *size, 
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
  1233
			       UNS32 * abortCode)
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
  1234
{
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
  1235
  UNS8 i;
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
  1236
  UNS8 err;
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
  1237
  UNS8 line;
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
  1238
  * size = 0;
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
  1239
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
  1240
  // Looking for the line tranfert.
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
  1241
  err = getSDOlineOnUse(d, nodeId, SDO_CLIENT, &line);
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
  1242
  if (err) {
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
  1243
    MSG_ERR(0x1AF0, "SDO error : No line found for communication with node : ", nodeId); 
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
  1244
    return SDO_ABORTED_INTERNAL;
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
  1245
  }
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
  1246
  if (d->transfers[line].state != SDO_FINISHED)
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
  1247
    return d->transfers[line].state;
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
  1248
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
  1249
  // Transfert is finished. Put the value in the data.
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
  1250
  * size = d->transfers[line].count;
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
  1251
  for  ( i = 0 ; i < *size ; i++) {
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
  1252
# ifdef CANOPEN_BIG_ENDIAN
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
  1253
    if (d->transfers[line].dataType != visible_string)
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
  1254
      ( (char *) data)[*size - 1 - i] = d->transfers[line].data[i];
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
  1255
    else // String of bytes.
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
  1256
      ( (char *) data)[i] = d->transfers[line].data[i];
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
  1257
# else 
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
  1258
    ( (char *) data)[i] = d->transfers[line].data[i];
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
  1259
# endif
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
  1260
  } 
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
  1261
  return SDO_FINISHED;
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
  1262
}
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
  1263
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
  1264
/***************************************************************************/
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
  1265
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
  1266
UNS8 getWriteResultNetworkDict (CO_Data* d, UNS8 nodeId, UNS32 * abortCode)
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
  1267
{
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
  1268
  UNS8 line = 0;
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
  1269
  UNS8 err;
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
  1270
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
  1271
  * abortCode = 0;
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
  1272
  // Looking for the line tranfert.
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
  1273
  err = getSDOlineOnUse(d, nodeId, SDO_CLIENT, &line);
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
  1274
  if (err) {
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
  1275
    MSG_ERR(0x1AF1, "SDO error : No line found for communication with node : ", nodeId); 
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
  1276
    return SDO_ABORTED_INTERNAL;
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
  1277
  }
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
  1278
  * abortCode = d->transfers[line].abortCode;
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
  1279
  return d->transfers[line].state;
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
  1280
}
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
  1281