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