src/sync.c
author etisserant
Wed, 10 May 2006 16:59:40 +0200
changeset 0 4472ee7c6c3e
child 31 a82b70738e5c
permissions -rw-r--r--
Commit a new cvs repo.
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
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    23
#include "data.h"
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    24
#include "sync.h"
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    25
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    26
void SyncAlarm(CO_Data* d, UNS32 id)
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    27
{
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    28
	sendSYNC(d, *d->COB_ID_Sync & 0x1FFFFFFF) ;
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    29
}
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    30
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    31
// This is called when Index 0x1005 is updated.
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    32
UNS32 OnCOB_ID_SyncUpdate(CO_Data* d, const indextable * unsused_indextable, UNS8 unsused_bSubindex)
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    33
{
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    34
	startSYNC(d);
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    35
}
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    36
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    37
void startSYNC(CO_Data* d)
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    38
{
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    39
	RegisterSetODentryCallBack(d, 0x1005, 0, &OnCOB_ID_SyncUpdate);
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    40
	RegisterSetODentryCallBack(d, 0x1006, 0, &OnCOB_ID_SyncUpdate);
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    41
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    42
	if(d->syncTimer != TIMER_NONE){
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    43
		stopSYNC(d);
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    44
	}
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    45
	
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    46
	if(*d->COB_ID_Sync & 0x40000000 && *d->Sync_Cycle_Period)
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    47
	{
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    48
		d->syncTimer = SetAlarm(
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    49
				d,
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    50
				0/*No id needed*/,
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    51
				&SyncAlarm,
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    52
				US_TO_TIMEVAL(*d->Sync_Cycle_Period), 
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    53
				US_TO_TIMEVAL(*d->Sync_Cycle_Period));
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    54
	}
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    55
}
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    56
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    57
void stopSYNC(CO_Data* d)
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    58
{
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    59
	d->syncTimer = DelAlarm(d->syncTimer);
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    60
}
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    61
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    62
/*********************************************************************/
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    63
UNS8 sendSYNC(CO_Data* d, UNS32 cob_id)
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    64
{
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    65
  Message m;
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    66
  UNS8 resultat ;
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    67
  
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    68
  MSG_WAR(0x3001, "sendSYNC ", 0);
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    69
  
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    70
  m.cob_id.w = cob_id ;
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    71
  m.rtr = NOT_A_REQUEST;
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    72
  m.len = 0;
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    73
  resultat = (*d->canSend)(&m) ;
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    74
  proceedSYNC(d, &m) ; 
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    75
  return resultat ;
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    76
}
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    77
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    78
/*****************************************************************************/
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    79
UNS8 proceedSYNC(CO_Data* d, Message *m)
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    80
{
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    81
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    82
  MSG_WAR(0x3002, "SYNC received. Proceed. ", 0);
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    83
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    84
  UNS8 	pdoNum,       // number of the actual processed pdo-nr.
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    85
    prp_j;
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    86
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    87
  const UNS8 *     pMappingCount = NULL;      // count of mapped objects...
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    88
  // pointer to the var which is mapped to a pdo
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    89
//  void *     pMappedAppObject = NULL; 
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    90
  // pointer fo the var which holds the mapping parameter of an mapping entry  
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    91
  UNS32 *    pMappingParameter = NULL;  
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    92
  // pointer to the transmissiontype...
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    93
  UNS8 *     pTransmissionType = NULL;  
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    94
  UNS32 *    pwCobId = NULL;	
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    95
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    96
  UNS8 *    pSize;
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    97
  UNS8      size;
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    98
  UNS8      dataType;
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    99
  UNS16 index;
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   100
  UNS8 subIndex;
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   101
  UNS8 offset;
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   102
  UNS8 status;
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   103
  UNS8 sizeData;
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   104
  pSize = &size;
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   105
  UNS32   objDict;	
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   106
  status = state3;
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   107
  pdoNum=0x00;
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   108
  prp_j=0x00;
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   109
  offset = 0x00;
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   110
  UNS16 offsetObjdict;
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   111
  UNS16 offsetObjdictMap;
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   112
  UNS16 lastIndex;
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   113
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   114
  /* only operational state allows PDO transmission */
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   115
  if( d->nodeState != Operational ) 
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   116
    return 0;
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   117
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   118
   (*d->post_sync)();
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   119
  
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   120
  /* So, the node is in operational state */
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   121
  /* study all PDO stored in the objects dictionary */	
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   122
 
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   123
  offsetObjdict = d->firstIndex->PDO_TRS;
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   124
  lastIndex = d->lastIndex->PDO_TRS;
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   125
  offsetObjdictMap = d->firstIndex->PDO_TRS_MAP;
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   126
  
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   127
  if(offsetObjdict) while( offsetObjdict <= lastIndex) {  
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   128
    switch( status ) {
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   129
                    
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   130
    case state3:    /* get the PDO transmission type */
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   131
      if (d->objdict[offsetObjdict].bSubCount <= 2) {
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   132
	  MSG_ERR(0x1004, "Subindex 2  not found at index ", 0x1800 + pdoNum);
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   133
	  return 0xFF;
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   134
	}
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   135
      pTransmissionType = d->objdict[offsetObjdict].pSubindex[2].pObject;    
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   136
      MSG_WAR(0x3005, "Reading PDO at index : ", 0x1800 + pdoNum);
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   137
      status = state4; 
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   138
      break;     
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   139
    case state4:	/* check if transmission type is after (this) SYNC */
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   140
                        /* The message may not be transmited every SYNC but every n SYNC */      
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   141
      if( (*pTransmissionType >= TRANS_SYNC_MIN) && (*pTransmissionType <= TRANS_SYNC_MAX) &&
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   142
          (++d->count_sync[pdoNum] == *pTransmissionType) ) {	
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   143
	d->count_sync[pdoNum] = 0;
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   144
	MSG_WAR(0x3007, "  PDO is on SYNCHRO. Trans type : ", *pTransmissionType);
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   145
	status = state5;
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   146
	break;
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   147
      }
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   148
      else {
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   149
	MSG_WAR(0x3008, "  Not on synchro or not at this SYNC. Trans type : ", 
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   150
		*pTransmissionType);
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   151
	pdoNum++;
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   152
	offsetObjdict++;
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   153
	offsetObjdictMap++;
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   154
	status = state11;
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   155
	break;
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   156
      }      
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   157
    case state5:	/* get PDO CobId */
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   158
        pwCobId = d->objdict[offsetObjdict].pSubindex[1].pObject;     
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   159
	MSG_WAR(0x3009, "  PDO CobId is : ", *pwCobId);
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   160
	status = state7;
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   161
	break;     
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   162
    case state7:  /* get mapped objects number to transmit with this PDO */
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   163
      pMappingCount = d->objdict[offsetObjdictMap].pSubindex[0].pObject;
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   164
	MSG_WAR(0x300D, "  Number of objects mapped : ",*pMappingCount );
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   165
	status = state8;
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   166
    case state8:	/* get mapping parameters */
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   167
      pMappingParameter = d->objdict[offsetObjdictMap].pSubindex[prp_j + 1].pObject;
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   168
	MSG_WAR(0x300F, "  got mapping parameter : ", *pMappingParameter);
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   169
	MSG_WAR(0x3050, "    at index : ", 0x1A00 + pdoNum);
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   170
	MSG_WAR(0x3051, "    sub-index : ", prp_j + 1);
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   171
	status = state9;
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   172
    
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   173
    case state9:	/* get data to transmit */ 
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   174
      index = (UNS16)((*pMappingParameter) >> 16);
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   175
      subIndex = (UNS8)(( (*pMappingParameter) >> (UNS8)8 ) & (UNS32)0x000000FF);
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   176
      // <<3 because in *pMappingParameter the size is in bits
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   177
      sizeData = (UNS8) ((*pMappingParameter & (UNS32)0x000000FF) >> 3) ;
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   178
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   179
        objDict = getODentry(d, index, subIndex, (void *)&d->process_var.data[offset], &sizeData, &dataType, 0 ); 
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   180
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   181
        if( objDict != OD_SUCCESSFUL ){
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   182
          MSG_ERR(0x1013, " Couldn't find mapped variable at index-subindex-size : ", (UNS16)(*pMappingParameter));
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   183
          return 0xFF;
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   184
        }
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   185
	
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   186
	offset += sizeData ;
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   187
	d->process_var.count = offset;
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   188
	prp_j++;
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   189
	status = state10;	 
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   190
	break;					
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   191
      
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   192
    case state10:	/* loop to get all the data to transmit */
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   193
      if( prp_j < *pMappingCount ){
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   194
	MSG_WAR(0x3014, "  next variable mapped : ", prp_j);
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   195
	status = state8;
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   196
	break;
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   197
      }
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   198
      else {
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   199
	MSG_WAR(0x3015, "  End scan mapped variable", 0);
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   200
	PDOmGR( d, *pwCobId );	
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   201
	MSG_WAR(0x3016, "  End of this pdo. Should have been sent", 0);
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   202
	pdoNum++;
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   203
	offsetObjdict++;
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   204
	offsetObjdictMap++;
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   205
	offset = 0x00;
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   206
	prp_j = 0x00;
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   207
	status = state11;
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   208
	break;
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   209
      }
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   210
      
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   211
    case state11:     
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   212
      MSG_WAR(0x3017, "next pdo index : ", pdoNum);
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   213
      status = state3;
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   214
      break;
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   215
      
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   216
    default:
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   217
      MSG_ERR(0x1019,"Unknown state has been reached : %d",status);
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   218
      return 0xFF;
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   219
    }// end switch case
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   220
    
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   221
  }// end while( prp_i<dict_cstes.max_count_of_PDO_transmit )
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   222
   
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   223
  (*d->post_TPDO)();
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   224
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   225
  return 0;
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   226
}
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   227
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   228