src/pdo.c
author etisserant
Fri, 29 Jun 2007 19:51:39 +0200
changeset 235 f812bf6b7237
parent 217 94c3f89bc3cc
child 236 905677ed00f3
permissions -rw-r--r--
Preliminary implementation of Event Timer and Inhibit Timer driven TPDO
+ re-organisation and cleanup of pdo.c.
0
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
     1
/*
208
05d95c45b388 Manual convertion -> latex -> pdf
nico
parents: 204
diff changeset
     2
  This file is part of CanFestival, a library implementing CanOpen
05d95c45b388 Manual convertion -> latex -> pdf
nico
parents: 204
diff changeset
     3
  Stack.
05d95c45b388 Manual convertion -> latex -> pdf
nico
parents: 204
diff changeset
     4
05d95c45b388 Manual convertion -> latex -> pdf
nico
parents: 204
diff changeset
     5
  Copyright (C): Edouard TISSERANT and Francis DUPIN
05d95c45b388 Manual convertion -> latex -> pdf
nico
parents: 204
diff changeset
     6
05d95c45b388 Manual convertion -> latex -> pdf
nico
parents: 204
diff changeset
     7
  See COPYING file for copyrights details.
05d95c45b388 Manual convertion -> latex -> pdf
nico
parents: 204
diff changeset
     8
05d95c45b388 Manual convertion -> latex -> pdf
nico
parents: 204
diff changeset
     9
  This library is free software; you can redistribute it and/or
05d95c45b388 Manual convertion -> latex -> pdf
nico
parents: 204
diff changeset
    10
  modify it under the terms of the GNU Lesser General Public
05d95c45b388 Manual convertion -> latex -> pdf
nico
parents: 204
diff changeset
    11
  License as published by the Free Software Foundation; either
05d95c45b388 Manual convertion -> latex -> pdf
nico
parents: 204
diff changeset
    12
  version 2.1 of the License, or (at your option) any later version.
05d95c45b388 Manual convertion -> latex -> pdf
nico
parents: 204
diff changeset
    13
05d95c45b388 Manual convertion -> latex -> pdf
nico
parents: 204
diff changeset
    14
  This library is distributed in the hope that it will be useful,
05d95c45b388 Manual convertion -> latex -> pdf
nico
parents: 204
diff changeset
    15
  but WITHOUT ANY WARRANTY; without even the implied warranty of
05d95c45b388 Manual convertion -> latex -> pdf
nico
parents: 204
diff changeset
    16
  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
05d95c45b388 Manual convertion -> latex -> pdf
nico
parents: 204
diff changeset
    17
  Lesser General Public License for more details.
05d95c45b388 Manual convertion -> latex -> pdf
nico
parents: 204
diff changeset
    18
05d95c45b388 Manual convertion -> latex -> pdf
nico
parents: 204
diff changeset
    19
  You should have received a copy of the GNU Lesser General Public
05d95c45b388 Manual convertion -> latex -> pdf
nico
parents: 204
diff changeset
    20
  License along with this library; if not, write to the Free Software
05d95c45b388 Manual convertion -> latex -> pdf
nico
parents: 204
diff changeset
    21
  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307
05d95c45b388 Manual convertion -> latex -> pdf
nico
parents: 204
diff changeset
    22
  USA
0
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    23
*/
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    24
#include "pdo.h"
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    25
#include "objacces.h"
149
fe50ada8020b Changes in the API:
etisserant
parents: 90
diff changeset
    26
#include "canfestival.h"
0
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    27
208
05d95c45b388 Manual convertion -> latex -> pdf
nico
parents: 204
diff changeset
    28
/*!
05d95c45b388 Manual convertion -> latex -> pdf
nico
parents: 204
diff changeset
    29
** @file   pdo.c
05d95c45b388 Manual convertion -> latex -> pdf
nico
parents: 204
diff changeset
    30
** @author Edouard TISSERANT and Francis DUPIN
05d95c45b388 Manual convertion -> latex -> pdf
nico
parents: 204
diff changeset
    31
** @date   Tue Jun  5 09:32:32 2007
05d95c45b388 Manual convertion -> latex -> pdf
nico
parents: 204
diff changeset
    32
**
05d95c45b388 Manual convertion -> latex -> pdf
nico
parents: 204
diff changeset
    33
** @brief
05d95c45b388 Manual convertion -> latex -> pdf
nico
parents: 204
diff changeset
    34
**
05d95c45b388 Manual convertion -> latex -> pdf
nico
parents: 204
diff changeset
    35
**
05d95c45b388 Manual convertion -> latex -> pdf
nico
parents: 204
diff changeset
    36
*/
235
f812bf6b7237 Preliminary implementation of Event Timer and Inhibit Timer driven TPDO
etisserant
parents: 217
diff changeset
    37
f812bf6b7237 Preliminary implementation of Event Timer and Inhibit Timer driven TPDO
etisserant
parents: 217
diff changeset
    38
/*!
f812bf6b7237 Preliminary implementation of Event Timer and Inhibit Timer driven TPDO
etisserant
parents: 217
diff changeset
    39
**
208
05d95c45b388 Manual convertion -> latex -> pdf
nico
parents: 204
diff changeset
    40
**
05d95c45b388 Manual convertion -> latex -> pdf
nico
parents: 204
diff changeset
    41
** @param d
235
f812bf6b7237 Preliminary implementation of Event Timer and Inhibit Timer driven TPDO
etisserant
parents: 217
diff changeset
    42
** @param TPDO_com TPDO communication parameters OD entry
f812bf6b7237 Preliminary implementation of Event Timer and Inhibit Timer driven TPDO
etisserant
parents: 217
diff changeset
    43
** @param TPDO_map TPDO mapping parameters OD entry
208
05d95c45b388 Manual convertion -> latex -> pdf
nico
parents: 204
diff changeset
    44
**
05d95c45b388 Manual convertion -> latex -> pdf
nico
parents: 204
diff changeset
    45
** @return
05d95c45b388 Manual convertion -> latex -> pdf
nico
parents: 204
diff changeset
    46
**/
235
f812bf6b7237 Preliminary implementation of Event Timer and Inhibit Timer driven TPDO
etisserant
parents: 217
diff changeset
    47
f812bf6b7237 Preliminary implementation of Event Timer and Inhibit Timer driven TPDO
etisserant
parents: 217
diff changeset
    48
UNS8 buildPDO(CO_Data* d, UNS8 numPdo, Message *pdo)
f812bf6b7237 Preliminary implementation of Event Timer and Inhibit Timer driven TPDO
etisserant
parents: 217
diff changeset
    49
{
f812bf6b7237 Preliminary implementation of Event Timer and Inhibit Timer driven TPDO
etisserant
parents: 217
diff changeset
    50
	const indextable* TPDO_com = d->objdict + d->firstIndex->PDO_TRS + numPdo; 
f812bf6b7237 Preliminary implementation of Event Timer and Inhibit Timer driven TPDO
etisserant
parents: 217
diff changeset
    51
	const indextable* TPDO_map = d->objdict + d->firstIndex->PDO_TRS_MAP + numPdo;
f812bf6b7237 Preliminary implementation of Event Timer and Inhibit Timer driven TPDO
etisserant
parents: 217
diff changeset
    52
	
f812bf6b7237 Preliminary implementation of Event Timer and Inhibit Timer driven TPDO
etisserant
parents: 217
diff changeset
    53
	UNS8 prp_j = 0x00;
f812bf6b7237 Preliminary implementation of Event Timer and Inhibit Timer driven TPDO
etisserant
parents: 217
diff changeset
    54
	UNS8 offset = 0x00;
f812bf6b7237 Preliminary implementation of Event Timer and Inhibit Timer driven TPDO
etisserant
parents: 217
diff changeset
    55
	const UNS8* pMappingCount = (UNS8*) TPDO_map->pSubindex[0].pObject;
f812bf6b7237 Preliminary implementation of Event Timer and Inhibit Timer driven TPDO
etisserant
parents: 217
diff changeset
    56
f812bf6b7237 Preliminary implementation of Event Timer and Inhibit Timer driven TPDO
etisserant
parents: 217
diff changeset
    57
	pdo->cob_id.w = *(UNS32*)TPDO_com->pSubindex[1].pObject;
f812bf6b7237 Preliminary implementation of Event Timer and Inhibit Timer driven TPDO
etisserant
parents: 217
diff changeset
    58
	pdo->rtr = NOT_A_REQUEST;
f812bf6b7237 Preliminary implementation of Event Timer and Inhibit Timer driven TPDO
etisserant
parents: 217
diff changeset
    59
f812bf6b7237 Preliminary implementation of Event Timer and Inhibit Timer driven TPDO
etisserant
parents: 217
diff changeset
    60
	MSG_WAR(0x3009, "  PDO CobId is : ", *(UNS32*)TPDO_com->pSubindex[1].pObject);
f812bf6b7237 Preliminary implementation of Event Timer and Inhibit Timer driven TPDO
etisserant
parents: 217
diff changeset
    61
	MSG_WAR(0x300D, "  Number of objects mapped : ",*pMappingCount );
f812bf6b7237 Preliminary implementation of Event Timer and Inhibit Timer driven TPDO
etisserant
parents: 217
diff changeset
    62
	
f812bf6b7237 Preliminary implementation of Event Timer and Inhibit Timer driven TPDO
etisserant
parents: 217
diff changeset
    63
	do{
f812bf6b7237 Preliminary implementation of Event Timer and Inhibit Timer driven TPDO
etisserant
parents: 217
diff changeset
    64
		UNS8 dataType; /* Unused */
f812bf6b7237 Preliminary implementation of Event Timer and Inhibit Timer driven TPDO
etisserant
parents: 217
diff changeset
    65
		UNS8 tmp[]= {0,0,0,0,0,0,0,0}; /* temporary space to hold bits */
f812bf6b7237 Preliminary implementation of Event Timer and Inhibit Timer driven TPDO
etisserant
parents: 217
diff changeset
    66
f812bf6b7237 Preliminary implementation of Event Timer and Inhibit Timer driven TPDO
etisserant
parents: 217
diff changeset
    67
		/* pointer fo the var which holds the mapping parameter of an mapping entry  */
f812bf6b7237 Preliminary implementation of Event Timer and Inhibit Timer driven TPDO
etisserant
parents: 217
diff changeset
    68
		UNS32* pMappingParameter = (UNS32*) TPDO_map->pSubindex[prp_j + 1].pObject;
f812bf6b7237 Preliminary implementation of Event Timer and Inhibit Timer driven TPDO
etisserant
parents: 217
diff changeset
    69
		UNS16 index = (UNS16)((*pMappingParameter) >> 16);
f812bf6b7237 Preliminary implementation of Event Timer and Inhibit Timer driven TPDO
etisserant
parents: 217
diff changeset
    70
		UNS8 Size = (UNS8)(*pMappingParameter); /* Size in bits */
f812bf6b7237 Preliminary implementation of Event Timer and Inhibit Timer driven TPDO
etisserant
parents: 217
diff changeset
    71
		UNS8 ByteSize = 1 + ((Size - 1) >> 3); /*1->8 => 1 ; 9->16 => 2, ... */
f812bf6b7237 Preliminary implementation of Event Timer and Inhibit Timer driven TPDO
etisserant
parents: 217
diff changeset
    72
		UNS8 subIndex = (UNS8)(( (*pMappingParameter) >> (UNS8)8 ) & (UNS32)0x000000FF);
f812bf6b7237 Preliminary implementation of Event Timer and Inhibit Timer driven TPDO
etisserant
parents: 217
diff changeset
    73
		
f812bf6b7237 Preliminary implementation of Event Timer and Inhibit Timer driven TPDO
etisserant
parents: 217
diff changeset
    74
		MSG_WAR(0x300F, "  got mapping parameter : ", *pMappingParameter);
f812bf6b7237 Preliminary implementation of Event Timer and Inhibit Timer driven TPDO
etisserant
parents: 217
diff changeset
    75
		MSG_WAR(0x3050, "    at index : ", TPDO_map->index);
f812bf6b7237 Preliminary implementation of Event Timer and Inhibit Timer driven TPDO
etisserant
parents: 217
diff changeset
    76
		MSG_WAR(0x3051, "    sub-index : ", prp_j + 1);
f812bf6b7237 Preliminary implementation of Event Timer and Inhibit Timer driven TPDO
etisserant
parents: 217
diff changeset
    77
		
f812bf6b7237 Preliminary implementation of Event Timer and Inhibit Timer driven TPDO
etisserant
parents: 217
diff changeset
    78
		if( getODentry(d, index, subIndex, tmp, &ByteSize, &dataType, 0 ) != OD_SUCCESSFUL ){
f812bf6b7237 Preliminary implementation of Event Timer and Inhibit Timer driven TPDO
etisserant
parents: 217
diff changeset
    79
			MSG_ERR(0x1013, " Couldn't find mapped variable at index-subindex-size : ", (UNS16)(*pMappingParameter));
f812bf6b7237 Preliminary implementation of Event Timer and Inhibit Timer driven TPDO
etisserant
parents: 217
diff changeset
    80
			return 0xFF;
f812bf6b7237 Preliminary implementation of Event Timer and Inhibit Timer driven TPDO
etisserant
parents: 217
diff changeset
    81
		}
f812bf6b7237 Preliminary implementation of Event Timer and Inhibit Timer driven TPDO
etisserant
parents: 217
diff changeset
    82
		/* copy bit per bit in little endian*/
f812bf6b7237 Preliminary implementation of Event Timer and Inhibit Timer driven TPDO
etisserant
parents: 217
diff changeset
    83
		CopyBits(Size, ((UNS8*)tmp), 0 , 0, (UNS8*)&pdo->data[offset>>3], offset%8, 0);
f812bf6b7237 Preliminary implementation of Event Timer and Inhibit Timer driven TPDO
etisserant
parents: 217
diff changeset
    84
f812bf6b7237 Preliminary implementation of Event Timer and Inhibit Timer driven TPDO
etisserant
parents: 217
diff changeset
    85
		offset += Size ;
f812bf6b7237 Preliminary implementation of Event Timer and Inhibit Timer driven TPDO
etisserant
parents: 217
diff changeset
    86
		prp_j++;
f812bf6b7237 Preliminary implementation of Event Timer and Inhibit Timer driven TPDO
etisserant
parents: 217
diff changeset
    87
	}while( prp_j < *pMappingCount );
f812bf6b7237 Preliminary implementation of Event Timer and Inhibit Timer driven TPDO
etisserant
parents: 217
diff changeset
    88
f812bf6b7237 Preliminary implementation of Event Timer and Inhibit Timer driven TPDO
etisserant
parents: 217
diff changeset
    89
	pdo->len = 1 + ((offset - 1) >> 3);
f812bf6b7237 Preliminary implementation of Event Timer and Inhibit Timer driven TPDO
etisserant
parents: 217
diff changeset
    90
f812bf6b7237 Preliminary implementation of Event Timer and Inhibit Timer driven TPDO
etisserant
parents: 217
diff changeset
    91
	MSG_WAR(0x3015, "  End scan mapped variable", 0);
f812bf6b7237 Preliminary implementation of Event Timer and Inhibit Timer driven TPDO
etisserant
parents: 217
diff changeset
    92
f812bf6b7237 Preliminary implementation of Event Timer and Inhibit Timer driven TPDO
etisserant
parents: 217
diff changeset
    93
	return 0;
f812bf6b7237 Preliminary implementation of Event Timer and Inhibit Timer driven TPDO
etisserant
parents: 217
diff changeset
    94
}
208
05d95c45b388 Manual convertion -> latex -> pdf
nico
parents: 204
diff changeset
    95
05d95c45b388 Manual convertion -> latex -> pdf
nico
parents: 204
diff changeset
    96
/*!
05d95c45b388 Manual convertion -> latex -> pdf
nico
parents: 204
diff changeset
    97
**
05d95c45b388 Manual convertion -> latex -> pdf
nico
parents: 204
diff changeset
    98
**
05d95c45b388 Manual convertion -> latex -> pdf
nico
parents: 204
diff changeset
    99
** @param d
05d95c45b388 Manual convertion -> latex -> pdf
nico
parents: 204
diff changeset
   100
** @param cobId
05d95c45b388 Manual convertion -> latex -> pdf
nico
parents: 204
diff changeset
   101
**
05d95c45b388 Manual convertion -> latex -> pdf
nico
parents: 204
diff changeset
   102
** @return
05d95c45b388 Manual convertion -> latex -> pdf
nico
parents: 204
diff changeset
   103
**/
0
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   104
UNS8 sendPDOrequest( CO_Data* d, UNS32 cobId )
208
05d95c45b388 Manual convertion -> latex -> pdf
nico
parents: 204
diff changeset
   105
{
05d95c45b388 Manual convertion -> latex -> pdf
nico
parents: 204
diff changeset
   106
  UNS32 * pwCobId;
0
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   107
  UNS16          offset;
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   108
  UNS16          lastIndex;
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   109
  UNS8           err;
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   110
208
05d95c45b388 Manual convertion -> latex -> pdf
nico
parents: 204
diff changeset
   111
  MSG_WAR(0x3930, "sendPDOrequest ",0);
215
f49e5a6b7804 Manual and Documentation finish
nico
parents: 208
diff changeset
   112
  /* Sending the request only if the cobid have been found on the PDO
208
05d95c45b388 Manual convertion -> latex -> pdf
nico
parents: 204
diff changeset
   113
     receive */
215
f49e5a6b7804 Manual and Documentation finish
nico
parents: 208
diff changeset
   114
  /* part dictionary */
0
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   115
  offset = d->firstIndex->PDO_RCV;
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   116
  lastIndex = d->lastIndex->PDO_RCV;
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   117
  if (offset)
208
05d95c45b388 Manual convertion -> latex -> pdf
nico
parents: 204
diff changeset
   118
    while (offset <= lastIndex) {
215
f49e5a6b7804 Manual and Documentation finish
nico
parents: 208
diff changeset
   119
      /* get the CobId*/
217
94c3f89bc3cc Fixed compile error because of missed type casting in certain compiler (http://www.iar.se/). Thanks to Raphael Studer
etisserant
parents: 215
diff changeset
   120
      pwCobId = (UNS32*) d->objdict[offset].pSubindex[1].pObject;
208
05d95c45b388 Manual convertion -> latex -> pdf
nico
parents: 204
diff changeset
   121
05d95c45b388 Manual convertion -> latex -> pdf
nico
parents: 204
diff changeset
   122
      if ( *pwCobId  == cobId ) {
235
f812bf6b7237 Preliminary implementation of Event Timer and Inhibit Timer driven TPDO
etisserant
parents: 217
diff changeset
   123
        Message pdo = {*pwCobId, REQUEST, 0};
f812bf6b7237 Preliminary implementation of Event Timer and Inhibit Timer driven TPDO
etisserant
parents: 217
diff changeset
   124
	return canSend(d->canHandle,&pdo);
208
05d95c45b388 Manual convertion -> latex -> pdf
nico
parents: 204
diff changeset
   125
      }
05d95c45b388 Manual convertion -> latex -> pdf
nico
parents: 204
diff changeset
   126
      offset++;
05d95c45b388 Manual convertion -> latex -> pdf
nico
parents: 204
diff changeset
   127
    }
05d95c45b388 Manual convertion -> latex -> pdf
nico
parents: 204
diff changeset
   128
  MSG_WAR(0x1931, "sendPDOrequest : COBID not found : ", cobId);
0
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   129
  return 0xFF;
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   130
}
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   131
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   132
208
05d95c45b388 Manual convertion -> latex -> pdf
nico
parents: 204
diff changeset
   133
/*!
05d95c45b388 Manual convertion -> latex -> pdf
nico
parents: 204
diff changeset
   134
**
05d95c45b388 Manual convertion -> latex -> pdf
nico
parents: 204
diff changeset
   135
**
05d95c45b388 Manual convertion -> latex -> pdf
nico
parents: 204
diff changeset
   136
** @param d
05d95c45b388 Manual convertion -> latex -> pdf
nico
parents: 204
diff changeset
   137
** @param m
05d95c45b388 Manual convertion -> latex -> pdf
nico
parents: 204
diff changeset
   138
**
05d95c45b388 Manual convertion -> latex -> pdf
nico
parents: 204
diff changeset
   139
** @return
05d95c45b388 Manual convertion -> latex -> pdf
nico
parents: 204
diff changeset
   140
**/
0
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   141
UNS8 proceedPDO(CO_Data* d, Message *m)
208
05d95c45b388 Manual convertion -> latex -> pdf
nico
parents: 204
diff changeset
   142
{
0
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   143
  UNS8   numPdo;
215
f49e5a6b7804 Manual and Documentation finish
nico
parents: 208
diff changeset
   144
  UNS8   numMap;  /* Number of the mapped varable */
0
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   145
  UNS8 i;
215
f49e5a6b7804 Manual and Documentation finish
nico
parents: 208
diff changeset
   146
  UNS8 *     pMappingCount = NULL;    /* count of mapped objects... */
f49e5a6b7804 Manual and Documentation finish
nico
parents: 208
diff changeset
   147
  /* pointer to the var which is mapped to a pdo... */
f49e5a6b7804 Manual and Documentation finish
nico
parents: 208
diff changeset
   148
  /*  void *     pMappedAppObject = NULL;   */
f49e5a6b7804 Manual and Documentation finish
nico
parents: 208
diff changeset
   149
  /* pointer fo the var which holds the mapping parameter of an
208
05d95c45b388 Manual convertion -> latex -> pdf
nico
parents: 204
diff changeset
   150
     mapping entry */
05d95c45b388 Manual convertion -> latex -> pdf
nico
parents: 204
diff changeset
   151
  UNS32 *    pMappingParameter = NULL;
215
f49e5a6b7804 Manual and Documentation finish
nico
parents: 208
diff changeset
   152
  UNS8  *    pTransmissionType = NULL; /* pointer to the transmission
208
05d95c45b388 Manual convertion -> latex -> pdf
nico
parents: 204
diff changeset
   153
                                         type */
0
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   154
  UNS32 *    pwCobId = NULL;
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   155
  UNS8       Size;
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   156
  UNS8       dataType;
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   157
  UNS8       offset;
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   158
  UNS8       status;
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   159
  UNS32      objDict;
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   160
  UNS16      offsetObjdict;
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   161
  UNS16      lastIndex;
235
f812bf6b7237 Preliminary implementation of Event Timer and Inhibit Timer driven TPDO
etisserant
parents: 217
diff changeset
   162
  
f812bf6b7237 Preliminary implementation of Event Timer and Inhibit Timer driven TPDO
etisserant
parents: 217
diff changeset
   163
  status = state2;
208
05d95c45b388 Manual convertion -> latex -> pdf
nico
parents: 204
diff changeset
   164
05d95c45b388 Manual convertion -> latex -> pdf
nico
parents: 204
diff changeset
   165
  MSG_WAR(0x3935, "proceedPDO, cobID : ", ((*m).cob_id.w & 0x7ff));
0
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   166
  offset = 0x00;
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   167
  numPdo = 0;
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   168
  numMap = 0;
215
f49e5a6b7804 Manual and Documentation finish
nico
parents: 208
diff changeset
   169
  if((*m).rtr == NOT_A_REQUEST ) { /* The PDO received is not a
208
05d95c45b388 Manual convertion -> latex -> pdf
nico
parents: 204
diff changeset
   170
                                     request. */
235
f812bf6b7237 Preliminary implementation of Event Timer and Inhibit Timer driven TPDO
etisserant
parents: 217
diff changeset
   171
0
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   172
    offsetObjdict = d->firstIndex->PDO_RCV;
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   173
    lastIndex = d->lastIndex->PDO_RCV;
208
05d95c45b388 Manual convertion -> latex -> pdf
nico
parents: 204
diff changeset
   174
215
f49e5a6b7804 Manual and Documentation finish
nico
parents: 208
diff changeset
   175
    /* study of all the PDO stored in the dictionary */
0
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   176
    if(offsetObjdict)
208
05d95c45b388 Manual convertion -> latex -> pdf
nico
parents: 204
diff changeset
   177
      while (offsetObjdict <= lastIndex) {
05d95c45b388 Manual convertion -> latex -> pdf
nico
parents: 204
diff changeset
   178
05d95c45b388 Manual convertion -> latex -> pdf
nico
parents: 204
diff changeset
   179
        switch( status ) {
05d95c45b388 Manual convertion -> latex -> pdf
nico
parents: 204
diff changeset
   180
05d95c45b388 Manual convertion -> latex -> pdf
nico
parents: 204
diff changeset
   181
        case state2:
215
f49e5a6b7804 Manual and Documentation finish
nico
parents: 208
diff changeset
   182
          /* get CobId of the dictionary correspondant to the received
208
05d95c45b388 Manual convertion -> latex -> pdf
nico
parents: 204
diff changeset
   183
             PDO */
217
94c3f89bc3cc Fixed compile error because of missed type casting in certain compiler (http://www.iar.se/). Thanks to Raphael Studer
etisserant
parents: 215
diff changeset
   184
          pwCobId = (UNS32*) d->objdict[offsetObjdict].pSubindex[1].pObject;
215
f49e5a6b7804 Manual and Documentation finish
nico
parents: 208
diff changeset
   185
          /* check the CobId coherance */
f49e5a6b7804 Manual and Documentation finish
nico
parents: 208
diff changeset
   186
          /*pwCobId is the cobId read in the dictionary at the state 3
208
05d95c45b388 Manual convertion -> latex -> pdf
nico
parents: 204
diff changeset
   187
            */
05d95c45b388 Manual convertion -> latex -> pdf
nico
parents: 204
diff changeset
   188
          if ( *pwCobId == (*m).cob_id.w ){
215
f49e5a6b7804 Manual and Documentation finish
nico
parents: 208
diff changeset
   189
            /* The cobId is recognized */
208
05d95c45b388 Manual convertion -> latex -> pdf
nico
parents: 204
diff changeset
   190
            status = state4;
05d95c45b388 Manual convertion -> latex -> pdf
nico
parents: 204
diff changeset
   191
            MSG_WAR(0x3936, "cobId found at index ", 0x1400 + numPdo);
05d95c45b388 Manual convertion -> latex -> pdf
nico
parents: 204
diff changeset
   192
            break;
05d95c45b388 Manual convertion -> latex -> pdf
nico
parents: 204
diff changeset
   193
          }
05d95c45b388 Manual convertion -> latex -> pdf
nico
parents: 204
diff changeset
   194
          else {
215
f49e5a6b7804 Manual and Documentation finish
nico
parents: 208
diff changeset
   195
            /* cobId received does not match with those write in the
208
05d95c45b388 Manual convertion -> latex -> pdf
nico
parents: 204
diff changeset
   196
              dictionnary */
05d95c45b388 Manual convertion -> latex -> pdf
nico
parents: 204
diff changeset
   197
            numPdo++;
05d95c45b388 Manual convertion -> latex -> pdf
nico
parents: 204
diff changeset
   198
            offsetObjdict++;
05d95c45b388 Manual convertion -> latex -> pdf
nico
parents: 204
diff changeset
   199
            status = state2;
05d95c45b388 Manual convertion -> latex -> pdf
nico
parents: 204
diff changeset
   200
            break;
05d95c45b388 Manual convertion -> latex -> pdf
nico
parents: 204
diff changeset
   201
          }
05d95c45b388 Manual convertion -> latex -> pdf
nico
parents: 204
diff changeset
   202
215
f49e5a6b7804 Manual and Documentation finish
nico
parents: 208
diff changeset
   203
            case state4:/* Get Mapped Objects Number */
f49e5a6b7804 Manual and Documentation finish
nico
parents: 208
diff changeset
   204
               /* The cobId of the message received has been found in the
208
05d95c45b388 Manual convertion -> latex -> pdf
nico
parents: 204
diff changeset
   205
                 dictionnary. */
05d95c45b388 Manual convertion -> latex -> pdf
nico
parents: 204
diff changeset
   206
               offsetObjdict = d->firstIndex->PDO_RCV_MAP;
05d95c45b388 Manual convertion -> latex -> pdf
nico
parents: 204
diff changeset
   207
             lastIndex = d->lastIndex->PDO_RCV_MAP;
217
94c3f89bc3cc Fixed compile error because of missed type casting in certain compiler (http://www.iar.se/). Thanks to Raphael Studer
etisserant
parents: 215
diff changeset
   208
             pMappingCount = (UNS8*) (d->objdict + offsetObjdict + numPdo)->pSubindex[0].pObject;
208
05d95c45b388 Manual convertion -> latex -> pdf
nico
parents: 204
diff changeset
   209
             numMap = 0;
05d95c45b388 Manual convertion -> latex -> pdf
nico
parents: 204
diff changeset
   210
             while (numMap < *pMappingCount) {
05d95c45b388 Manual convertion -> latex -> pdf
nico
parents: 204
diff changeset
   211
               UNS8 tmp[]= {0,0,0,0,0,0,0,0};
05d95c45b388 Manual convertion -> latex -> pdf
nico
parents: 204
diff changeset
   212
               UNS8 ByteSize;
217
94c3f89bc3cc Fixed compile error because of missed type casting in certain compiler (http://www.iar.se/). Thanks to Raphael Studer
etisserant
parents: 215
diff changeset
   213
               pMappingParameter = (UNS32*) (d->objdict + offsetObjdict + numPdo)->pSubindex[numMap + 1].pObject;
208
05d95c45b388 Manual convertion -> latex -> pdf
nico
parents: 204
diff changeset
   214
               if (pMappingParameter == NULL) {
05d95c45b388 Manual convertion -> latex -> pdf
nico
parents: 204
diff changeset
   215
                 MSG_ERR(0x1937, "Couldn't get mapping parameter : ", numMap + 1);
05d95c45b388 Manual convertion -> latex -> pdf
nico
parents: 204
diff changeset
   216
                 return 0xFF;
05d95c45b388 Manual convertion -> latex -> pdf
nico
parents: 204
diff changeset
   217
               }
215
f49e5a6b7804 Manual and Documentation finish
nico
parents: 208
diff changeset
   218
               /* Get the addresse of the mapped variable. */
f49e5a6b7804 Manual and Documentation finish
nico
parents: 208
diff changeset
   219
               /* detail of *pMappingParameter : */
f49e5a6b7804 Manual and Documentation finish
nico
parents: 208
diff changeset
   220
               /* The 16 hight bits contains the index, the medium 8 bits
208
05d95c45b388 Manual convertion -> latex -> pdf
nico
parents: 204
diff changeset
   221
                 contains the subindex, */
215
f49e5a6b7804 Manual and Documentation finish
nico
parents: 208
diff changeset
   222
               /* and the lower 8 bits contains the size of the mapped
208
05d95c45b388 Manual convertion -> latex -> pdf
nico
parents: 204
diff changeset
   223
                 variable. */
05d95c45b388 Manual convertion -> latex -> pdf
nico
parents: 204
diff changeset
   224
05d95c45b388 Manual convertion -> latex -> pdf
nico
parents: 204
diff changeset
   225
               Size = (UNS8)(*pMappingParameter);
05d95c45b388 Manual convertion -> latex -> pdf
nico
parents: 204
diff changeset
   226
215
f49e5a6b7804 Manual and Documentation finish
nico
parents: 208
diff changeset
   227
               /* copy bit per bit in little endian */
235
f812bf6b7237 Preliminary implementation of Event Timer and Inhibit Timer driven TPDO
etisserant
parents: 217
diff changeset
   228
               CopyBits(Size, (UNS8*)&m->data[offset>>3], offset%8, 0, ((UNS8*)tmp), 0, 0);
208
05d95c45b388 Manual convertion -> latex -> pdf
nico
parents: 204
diff changeset
   229
05d95c45b388 Manual convertion -> latex -> pdf
nico
parents: 204
diff changeset
   230
               ByteSize = 1 + ((Size - 1) >> 3); /*1->8 => 1 ; 9->16 =>
05d95c45b388 Manual convertion -> latex -> pdf
nico
parents: 204
diff changeset
   231
                                                   2, ... */
05d95c45b388 Manual convertion -> latex -> pdf
nico
parents: 204
diff changeset
   232
05d95c45b388 Manual convertion -> latex -> pdf
nico
parents: 204
diff changeset
   233
               objDict = setODentry(d, (UNS16)((*pMappingParameter) >> 16),
05d95c45b388 Manual convertion -> latex -> pdf
nico
parents: 204
diff changeset
   234
                                    (UNS8)(((*pMappingParameter) >> 8 ) & 0xFF),
05d95c45b388 Manual convertion -> latex -> pdf
nico
parents: 204
diff changeset
   235
                                 tmp, &ByteSize, 0 );
05d95c45b388 Manual convertion -> latex -> pdf
nico
parents: 204
diff changeset
   236
05d95c45b388 Manual convertion -> latex -> pdf
nico
parents: 204
diff changeset
   237
               if(objDict != OD_SUCCESSFUL) {
05d95c45b388 Manual convertion -> latex -> pdf
nico
parents: 204
diff changeset
   238
                 MSG_ERR(0x1938, "error accessing to the mapped var : ", numMap + 1);
05d95c45b388 Manual convertion -> latex -> pdf
nico
parents: 204
diff changeset
   239
                 MSG_WAR(0x2939, "         Mapped at index : ", (*pMappingParameter) >> 16);
05d95c45b388 Manual convertion -> latex -> pdf
nico
parents: 204
diff changeset
   240
                 MSG_WAR(0x2940, "                subindex : ", ((*pMappingParameter) >> 8 ) & 0xFF);
05d95c45b388 Manual convertion -> latex -> pdf
nico
parents: 204
diff changeset
   241
                 return 0xFF;
05d95c45b388 Manual convertion -> latex -> pdf
nico
parents: 204
diff changeset
   242
               }
05d95c45b388 Manual convertion -> latex -> pdf
nico
parents: 204
diff changeset
   243
05d95c45b388 Manual convertion -> latex -> pdf
nico
parents: 204
diff changeset
   244
               MSG_WAR(0x3942, "Variable updated with value received by PDO cobid : ", m->cob_id.w);
05d95c45b388 Manual convertion -> latex -> pdf
nico
parents: 204
diff changeset
   245
               MSG_WAR(0x3943, "         Mapped at index : ", (*pMappingParameter) >> 16);
05d95c45b388 Manual convertion -> latex -> pdf
nico
parents: 204
diff changeset
   246
               MSG_WAR(0x3944, "                subindex : ", ((*pMappingParameter) >> 8 ) & 0xFF);
215
f49e5a6b7804 Manual and Documentation finish
nico
parents: 208
diff changeset
   247
               /* MSG_WAR(0x3945, "                data : ",*((UNS32*)pMappedAppObject)); */
208
05d95c45b388 Manual convertion -> latex -> pdf
nico
parents: 204
diff changeset
   248
               offset += Size;
05d95c45b388 Manual convertion -> latex -> pdf
nico
parents: 204
diff changeset
   249
               numMap++;
235
f812bf6b7237 Preliminary implementation of Event Timer and Inhibit Timer driven TPDO
etisserant
parents: 217
diff changeset
   250
               /*TODO :  check that offset is not not greater that message size (in bit) */
215
f49e5a6b7804 Manual and Documentation finish
nico
parents: 208
diff changeset
   251
             } /* end loop while on mapped variables */
208
05d95c45b388 Manual convertion -> latex -> pdf
nico
parents: 204
diff changeset
   252
05d95c45b388 Manual convertion -> latex -> pdf
nico
parents: 204
diff changeset
   253
             offset=0x00;
05d95c45b388 Manual convertion -> latex -> pdf
nico
parents: 204
diff changeset
   254
             numMap = 0;
05d95c45b388 Manual convertion -> latex -> pdf
nico
parents: 204
diff changeset
   255
             return 0;
05d95c45b388 Manual convertion -> latex -> pdf
nico
parents: 204
diff changeset
   256
215
f49e5a6b7804 Manual and Documentation finish
nico
parents: 208
diff changeset
   257
        }/* end switch status*/
f49e5a6b7804 Manual and Documentation finish
nico
parents: 208
diff changeset
   258
      }/* end while*/
f49e5a6b7804 Manual and Documentation finish
nico
parents: 208
diff changeset
   259
  }/* end if Donnees */
208
05d95c45b388 Manual convertion -> latex -> pdf
nico
parents: 204
diff changeset
   260
  else if ((*m).rtr == REQUEST ){
05d95c45b388 Manual convertion -> latex -> pdf
nico
parents: 204
diff changeset
   261
    MSG_WAR(0x3946, "Receive a PDO request cobId : ", m->cob_id.w);
05d95c45b388 Manual convertion -> latex -> pdf
nico
parents: 204
diff changeset
   262
    status = state1;
05d95c45b388 Manual convertion -> latex -> pdf
nico
parents: 204
diff changeset
   263
    offsetObjdict = d->firstIndex->PDO_TRS;
05d95c45b388 Manual convertion -> latex -> pdf
nico
parents: 204
diff changeset
   264
    lastIndex = d->lastIndex->PDO_TRS;
05d95c45b388 Manual convertion -> latex -> pdf
nico
parents: 204
diff changeset
   265
    if(offsetObjdict) while( offsetObjdict  <= lastIndex ){
215
f49e5a6b7804 Manual and Documentation finish
nico
parents: 208
diff changeset
   266
      /* study of all PDO stored in the objects dictionary */
208
05d95c45b388 Manual convertion -> latex -> pdf
nico
parents: 204
diff changeset
   267
05d95c45b388 Manual convertion -> latex -> pdf
nico
parents: 204
diff changeset
   268
      switch( status ){
05d95c45b388 Manual convertion -> latex -> pdf
nico
parents: 204
diff changeset
   269
215
f49e5a6b7804 Manual and Documentation finish
nico
parents: 208
diff changeset
   270
      case state1:/* check the CobId */
f49e5a6b7804 Manual and Documentation finish
nico
parents: 208
diff changeset
   271
        /* get CobId of the dictionary which match to the received PDO
208
05d95c45b388 Manual convertion -> latex -> pdf
nico
parents: 204
diff changeset
   272
         */
217
94c3f89bc3cc Fixed compile error because of missed type casting in certain compiler (http://www.iar.se/). Thanks to Raphael Studer
etisserant
parents: 215
diff changeset
   273
        pwCobId = (UNS32*) (d->objdict + offsetObjdict)->pSubindex[1].pObject;
208
05d95c45b388 Manual convertion -> latex -> pdf
nico
parents: 204
diff changeset
   274
        if ( *pwCobId == (*m).cob_id.w ) {
05d95c45b388 Manual convertion -> latex -> pdf
nico
parents: 204
diff changeset
   275
          status = state4;
05d95c45b388 Manual convertion -> latex -> pdf
nico
parents: 204
diff changeset
   276
          break;
05d95c45b388 Manual convertion -> latex -> pdf
nico
parents: 204
diff changeset
   277
        }
05d95c45b388 Manual convertion -> latex -> pdf
nico
parents: 204
diff changeset
   278
        else {
05d95c45b388 Manual convertion -> latex -> pdf
nico
parents: 204
diff changeset
   279
          numPdo++;
05d95c45b388 Manual convertion -> latex -> pdf
nico
parents: 204
diff changeset
   280
          offsetObjdict++;
05d95c45b388 Manual convertion -> latex -> pdf
nico
parents: 204
diff changeset
   281
        }
05d95c45b388 Manual convertion -> latex -> pdf
nico
parents: 204
diff changeset
   282
        status = state1;
05d95c45b388 Manual convertion -> latex -> pdf
nico
parents: 204
diff changeset
   283
        break;
05d95c45b388 Manual convertion -> latex -> pdf
nico
parents: 204
diff changeset
   284
05d95c45b388 Manual convertion -> latex -> pdf
nico
parents: 204
diff changeset
   285
215
f49e5a6b7804 Manual and Documentation finish
nico
parents: 208
diff changeset
   286
      case state4:/* check transmission type (after request?) */
217
94c3f89bc3cc Fixed compile error because of missed type casting in certain compiler (http://www.iar.se/). Thanks to Raphael Studer
etisserant
parents: 215
diff changeset
   287
        pTransmissionType = (UNS8*) d->objdict[offsetObjdict].pSubindex[2].pObject;
235
f812bf6b7237 Preliminary implementation of Event Timer and Inhibit Timer driven TPDO
etisserant
parents: 217
diff changeset
   288
        if ( (*pTransmissionType == TRANS_RTR) ||
f812bf6b7237 Preliminary implementation of Event Timer and Inhibit Timer driven TPDO
etisserant
parents: 217
diff changeset
   289
             (*pTransmissionType == TRANS_RTR_SYNC )) {
208
05d95c45b388 Manual convertion -> latex -> pdf
nico
parents: 204
diff changeset
   290
          status = state5;
05d95c45b388 Manual convertion -> latex -> pdf
nico
parents: 204
diff changeset
   291
          break;
235
f812bf6b7237 Preliminary implementation of Event Timer and Inhibit Timer driven TPDO
etisserant
parents: 217
diff changeset
   292
        }else if(
f812bf6b7237 Preliminary implementation of Event Timer and Inhibit Timer driven TPDO
etisserant
parents: 217
diff changeset
   293
             (*pTransmissionType == TRANS_EVENT_PROFILE) ||
f812bf6b7237 Preliminary implementation of Event Timer and Inhibit Timer driven TPDO
etisserant
parents: 217
diff changeset
   294
             (*pTransmissionType == TRANS_EVENT_SPECIFIC) ) {
f812bf6b7237 Preliminary implementation of Event Timer and Inhibit Timer driven TPDO
etisserant
parents: 217
diff changeset
   295
	  /* Zap all timers and inhibit flag */
f812bf6b7237 Preliminary implementation of Event Timer and Inhibit Timer driven TPDO
etisserant
parents: 217
diff changeset
   296
	  d->PDO_status[numPdo].event_timer = DelAlarm(d->PDO_status[numPdo].event_timer);
f812bf6b7237 Preliminary implementation of Event Timer and Inhibit Timer driven TPDO
etisserant
parents: 217
diff changeset
   297
	  d->PDO_status[numPdo].inhibit_timer = DelAlarm(d->PDO_status[numPdo].inhibit_timer);
f812bf6b7237 Preliminary implementation of Event Timer and Inhibit Timer driven TPDO
etisserant
parents: 217
diff changeset
   298
  	  d->PDO_status[numPdo].transmit_type_parameter &= ~PDO_INHIBITED;
f812bf6b7237 Preliminary implementation of Event Timer and Inhibit Timer driven TPDO
etisserant
parents: 217
diff changeset
   299
  	  /* Call  PDOEventTimerAlarm for this TPDO, this will trigger emission et reset timers */
f812bf6b7237 Preliminary implementation of Event Timer and Inhibit Timer driven TPDO
etisserant
parents: 217
diff changeset
   300
          PDOEventTimerAlarm(d, numPdo);
f812bf6b7237 Preliminary implementation of Event Timer and Inhibit Timer driven TPDO
etisserant
parents: 217
diff changeset
   301
          return 0;
f812bf6b7237 Preliminary implementation of Event Timer and Inhibit Timer driven TPDO
etisserant
parents: 217
diff changeset
   302
        }else {
215
f49e5a6b7804 Manual and Documentation finish
nico
parents: 208
diff changeset
   303
          /* The requested PDO is not to send on request. So, does
208
05d95c45b388 Manual convertion -> latex -> pdf
nico
parents: 204
diff changeset
   304
            nothing. */
05d95c45b388 Manual convertion -> latex -> pdf
nico
parents: 204
diff changeset
   305
          MSG_WAR(0x2947, "PDO is not to send on request : ", m->cob_id.w);
05d95c45b388 Manual convertion -> latex -> pdf
nico
parents: 204
diff changeset
   306
          return 0xFF;
05d95c45b388 Manual convertion -> latex -> pdf
nico
parents: 204
diff changeset
   307
        }
05d95c45b388 Manual convertion -> latex -> pdf
nico
parents: 204
diff changeset
   308
235
f812bf6b7237 Preliminary implementation of Event Timer and Inhibit Timer driven TPDO
etisserant
parents: 217
diff changeset
   309
      case state5:/* build and send requested PDO */
f812bf6b7237 Preliminary implementation of Event Timer and Inhibit Timer driven TPDO
etisserant
parents: 217
diff changeset
   310
      {
f812bf6b7237 Preliminary implementation of Event Timer and Inhibit Timer driven TPDO
etisserant
parents: 217
diff changeset
   311
      	Message pdo;
f812bf6b7237 Preliminary implementation of Event Timer and Inhibit Timer driven TPDO
etisserant
parents: 217
diff changeset
   312
    	if( buildPDO(d, numPdo, &pdo))
f812bf6b7237 Preliminary implementation of Event Timer and Inhibit Timer driven TPDO
etisserant
parents: 217
diff changeset
   313
    	{
f812bf6b7237 Preliminary implementation of Event Timer and Inhibit Timer driven TPDO
etisserant
parents: 217
diff changeset
   314
          MSG_ERR(0x1013, " Couldn't find mapped variable at index-subindex-size : ", (UNS16)(*pMappingParameter));
f812bf6b7237 Preliminary implementation of Event Timer and Inhibit Timer driven TPDO
etisserant
parents: 217
diff changeset
   315
          //return 0xFF; /*No real reason to stop...*/
f812bf6b7237 Preliminary implementation of Event Timer and Inhibit Timer driven TPDO
etisserant
parents: 217
diff changeset
   316
    	}
f812bf6b7237 Preliminary implementation of Event Timer and Inhibit Timer driven TPDO
etisserant
parents: 217
diff changeset
   317
    	canSend(d->canHandle,&pdo);
208
05d95c45b388 Manual convertion -> latex -> pdf
nico
parents: 204
diff changeset
   318
        return 0;
235
f812bf6b7237 Preliminary implementation of Event Timer and Inhibit Timer driven TPDO
etisserant
parents: 217
diff changeset
   319
      }
215
f49e5a6b7804 Manual and Documentation finish
nico
parents: 208
diff changeset
   320
      }/* end switch status */
f49e5a6b7804 Manual and Documentation finish
nico
parents: 208
diff changeset
   321
    }/* end while */
f49e5a6b7804 Manual and Documentation finish
nico
parents: 208
diff changeset
   322
  }/* end if Requete */
208
05d95c45b388 Manual convertion -> latex -> pdf
nico
parents: 204
diff changeset
   323
0
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   324
  return 0;
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   325
}
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   326
208
05d95c45b388 Manual convertion -> latex -> pdf
nico
parents: 204
diff changeset
   327
/*!
05d95c45b388 Manual convertion -> latex -> pdf
nico
parents: 204
diff changeset
   328
**
05d95c45b388 Manual convertion -> latex -> pdf
nico
parents: 204
diff changeset
   329
**
05d95c45b388 Manual convertion -> latex -> pdf
nico
parents: 204
diff changeset
   330
** @param NbBits
05d95c45b388 Manual convertion -> latex -> pdf
nico
parents: 204
diff changeset
   331
** @param SrcByteIndex
05d95c45b388 Manual convertion -> latex -> pdf
nico
parents: 204
diff changeset
   332
** @param SrcBitIndex
05d95c45b388 Manual convertion -> latex -> pdf
nico
parents: 204
diff changeset
   333
** @param SrcBigEndian
05d95c45b388 Manual convertion -> latex -> pdf
nico
parents: 204
diff changeset
   334
** @param DestByteIndex
05d95c45b388 Manual convertion -> latex -> pdf
nico
parents: 204
diff changeset
   335
** @param DestBitIndex
05d95c45b388 Manual convertion -> latex -> pdf
nico
parents: 204
diff changeset
   336
** @param DestBigEndian
05d95c45b388 Manual convertion -> latex -> pdf
nico
parents: 204
diff changeset
   337
**/
201
2966cd34162a Boolean variable mapped in PDO
greg
parents: 149
diff changeset
   338
void CopyBits(UNS8 NbBits, UNS8* SrcByteIndex, UNS8 SrcBitIndex, UNS8 SrcBigEndian, UNS8* DestByteIndex, UNS8 DestBitIndex, UNS8 DestBigEndian)
2966cd34162a Boolean variable mapped in PDO
greg
parents: 149
diff changeset
   339
{
215
f49e5a6b7804 Manual and Documentation finish
nico
parents: 208
diff changeset
   340
  /* This loop copy as many bits that it can each time, crossing*/
f49e5a6b7804 Manual and Documentation finish
nico
parents: 208
diff changeset
   341
  /* successively bytes*/
208
05d95c45b388 Manual convertion -> latex -> pdf
nico
parents: 204
diff changeset
   342
  // boundaries from LSB to MSB.
05d95c45b388 Manual convertion -> latex -> pdf
nico
parents: 204
diff changeset
   343
  while(NbBits > 0)
05d95c45b388 Manual convertion -> latex -> pdf
nico
parents: 204
diff changeset
   344
    {
215
f49e5a6b7804 Manual and Documentation finish
nico
parents: 208
diff changeset
   345
      /* Bit missalignement between src and dest*/
208
05d95c45b388 Manual convertion -> latex -> pdf
nico
parents: 204
diff changeset
   346
      INTEGER8 Vect = DestBitIndex - SrcBitIndex;
05d95c45b388 Manual convertion -> latex -> pdf
nico
parents: 204
diff changeset
   347
215
f49e5a6b7804 Manual and Documentation finish
nico
parents: 208
diff changeset
   348
      /* We can now get src and align it to dest*/
208
05d95c45b388 Manual convertion -> latex -> pdf
nico
parents: 204
diff changeset
   349
      UNS8 Aligned = Vect>0 ? *SrcByteIndex << Vect : *SrcByteIndex >> -Vect;
05d95c45b388 Manual convertion -> latex -> pdf
nico
parents: 204
diff changeset
   350
215
f49e5a6b7804 Manual and Documentation finish
nico
parents: 208
diff changeset
   351
      /* Compute the nb of bit we will be able to copy*/
208
05d95c45b388 Manual convertion -> latex -> pdf
nico
parents: 204
diff changeset
   352
      UNS8 BoudaryLimit = (Vect>0 ? 8 - DestBitIndex :  8 - SrcBitIndex );
05d95c45b388 Manual convertion -> latex -> pdf
nico
parents: 204
diff changeset
   353
      UNS8 BitsToCopy = BoudaryLimit > NbBits ? NbBits : BoudaryLimit;
05d95c45b388 Manual convertion -> latex -> pdf
nico
parents: 204
diff changeset
   354
215
f49e5a6b7804 Manual and Documentation finish
nico
parents: 208
diff changeset
   355
      /* Create a mask that will serve in:*/
208
05d95c45b388 Manual convertion -> latex -> pdf
nico
parents: 204
diff changeset
   356
      UNS8 Mask = ((0xff << (DestBitIndex + BitsToCopy)) | (0xff >> (8 - DestBitIndex)));
05d95c45b388 Manual convertion -> latex -> pdf
nico
parents: 204
diff changeset
   357
215
f49e5a6b7804 Manual and Documentation finish
nico
parents: 208
diff changeset
   358
      /* - Filtering src*/
208
05d95c45b388 Manual convertion -> latex -> pdf
nico
parents: 204
diff changeset
   359
      UNS8 Filtered = Aligned & ~Mask;
05d95c45b388 Manual convertion -> latex -> pdf
nico
parents: 204
diff changeset
   360
215
f49e5a6b7804 Manual and Documentation finish
nico
parents: 208
diff changeset
   361
      /* - and erase bits where we write, preserve where we don't*/
208
05d95c45b388 Manual convertion -> latex -> pdf
nico
parents: 204
diff changeset
   362
      *DestByteIndex &= Mask;
05d95c45b388 Manual convertion -> latex -> pdf
nico
parents: 204
diff changeset
   363
215
f49e5a6b7804 Manual and Documentation finish
nico
parents: 208
diff changeset
   364
      /* Then write.*/
208
05d95c45b388 Manual convertion -> latex -> pdf
nico
parents: 204
diff changeset
   365
      *DestByteIndex |= Filtered ;
05d95c45b388 Manual convertion -> latex -> pdf
nico
parents: 204
diff changeset
   366
215
f49e5a6b7804 Manual and Documentation finish
nico
parents: 208
diff changeset
   367
      /*Compute next time cursors for src*/
f49e5a6b7804 Manual and Documentation finish
nico
parents: 208
diff changeset
   368
      if((SrcBitIndex += BitsToCopy)>7)/* cross boundary ?*/
208
05d95c45b388 Manual convertion -> latex -> pdf
nico
parents: 204
diff changeset
   369
        {
215
f49e5a6b7804 Manual and Documentation finish
nico
parents: 208
diff changeset
   370
          SrcBitIndex = 0;/* First bit*/
f49e5a6b7804 Manual and Documentation finish
nico
parents: 208
diff changeset
   371
          SrcByteIndex += (SrcBigEndian ? -1 : 1);/* Next byte*/
f49e5a6b7804 Manual and Documentation finish
nico
parents: 208
diff changeset
   372
        }
f49e5a6b7804 Manual and Documentation finish
nico
parents: 208
diff changeset
   373
f49e5a6b7804 Manual and Documentation finish
nico
parents: 208
diff changeset
   374
f49e5a6b7804 Manual and Documentation finish
nico
parents: 208
diff changeset
   375
      /*Compute next time cursors for dest*/
208
05d95c45b388 Manual convertion -> latex -> pdf
nico
parents: 204
diff changeset
   376
      if((DestBitIndex += BitsToCopy)>7)
05d95c45b388 Manual convertion -> latex -> pdf
nico
parents: 204
diff changeset
   377
        {
215
f49e5a6b7804 Manual and Documentation finish
nico
parents: 208
diff changeset
   378
          DestBitIndex = 0;/* First bit*/
f49e5a6b7804 Manual and Documentation finish
nico
parents: 208
diff changeset
   379
          DestByteIndex += (DestBigEndian ? -1 : 1);/* Next byte*/
f49e5a6b7804 Manual and Documentation finish
nico
parents: 208
diff changeset
   380
        }
f49e5a6b7804 Manual and Documentation finish
nico
parents: 208
diff changeset
   381
f49e5a6b7804 Manual and Documentation finish
nico
parents: 208
diff changeset
   382
      /*And decrement counter.*/
208
05d95c45b388 Manual convertion -> latex -> pdf
nico
parents: 204
diff changeset
   383
      NbBits -= BitsToCopy;
05d95c45b388 Manual convertion -> latex -> pdf
nico
parents: 204
diff changeset
   384
    }
201
2966cd34162a Boolean variable mapped in PDO
greg
parents: 149
diff changeset
   385
2966cd34162a Boolean variable mapped in PDO
greg
parents: 149
diff changeset
   386
}
208
05d95c45b388 Manual convertion -> latex -> pdf
nico
parents: 204
diff changeset
   387
/*!
05d95c45b388 Manual convertion -> latex -> pdf
nico
parents: 204
diff changeset
   388
**
05d95c45b388 Manual convertion -> latex -> pdf
nico
parents: 204
diff changeset
   389
**
05d95c45b388 Manual convertion -> latex -> pdf
nico
parents: 204
diff changeset
   390
** @param d
05d95c45b388 Manual convertion -> latex -> pdf
nico
parents: 204
diff changeset
   391
**
05d95c45b388 Manual convertion -> latex -> pdf
nico
parents: 204
diff changeset
   392
** @return
05d95c45b388 Manual convertion -> latex -> pdf
nico
parents: 204
diff changeset
   393
**/
235
f812bf6b7237 Preliminary implementation of Event Timer and Inhibit Timer driven TPDO
etisserant
parents: 217
diff changeset
   394
f812bf6b7237 Preliminary implementation of Event Timer and Inhibit Timer driven TPDO
etisserant
parents: 217
diff changeset
   395
UNS8 sendPDOevent( CO_Data* d)
f812bf6b7237 Preliminary implementation of Event Timer and Inhibit Timer driven TPDO
etisserant
parents: 217
diff changeset
   396
{
f812bf6b7237 Preliminary implementation of Event Timer and Inhibit Timer driven TPDO
etisserant
parents: 217
diff changeset
   397
  /* Calls _sendPDOevent specifying it is not a sync event */
f812bf6b7237 Preliminary implementation of Event Timer and Inhibit Timer driven TPDO
etisserant
parents: 217
diff changeset
   398
  return _sendPDOevent(d, 0);
f812bf6b7237 Preliminary implementation of Event Timer and Inhibit Timer driven TPDO
etisserant
parents: 217
diff changeset
   399
}
f812bf6b7237 Preliminary implementation of Event Timer and Inhibit Timer driven TPDO
etisserant
parents: 217
diff changeset
   400
	
f812bf6b7237 Preliminary implementation of Event Timer and Inhibit Timer driven TPDO
etisserant
parents: 217
diff changeset
   401
f812bf6b7237 Preliminary implementation of Event Timer and Inhibit Timer driven TPDO
etisserant
parents: 217
diff changeset
   402
void PDOEventTimerAlarm(CO_Data* d, UNS32 pdoNum)
f812bf6b7237 Preliminary implementation of Event Timer and Inhibit Timer driven TPDO
etisserant
parents: 217
diff changeset
   403
{
f812bf6b7237 Preliminary implementation of Event Timer and Inhibit Timer driven TPDO
etisserant
parents: 217
diff changeset
   404
	printf("EV PDOEventTimerAlarm : %d\n", pdoNum);
f812bf6b7237 Preliminary implementation of Event Timer and Inhibit Timer driven TPDO
etisserant
parents: 217
diff changeset
   405
	
f812bf6b7237 Preliminary implementation of Event Timer and Inhibit Timer driven TPDO
etisserant
parents: 217
diff changeset
   406
	/* This is needed to avoid deletion of re-attribuated timer */
f812bf6b7237 Preliminary implementation of Event Timer and Inhibit Timer driven TPDO
etisserant
parents: 217
diff changeset
   407
	d->PDO_status[pdoNum].event_timer = TIMER_NONE;
f812bf6b7237 Preliminary implementation of Event Timer and Inhibit Timer driven TPDO
etisserant
parents: 217
diff changeset
   408
	/* force emission of PDO by artificially changing last emitted*/
f812bf6b7237 Preliminary implementation of Event Timer and Inhibit Timer driven TPDO
etisserant
parents: 217
diff changeset
   409
	d->PDO_status[pdoNum].last_message.cob_id.w = 0;
f812bf6b7237 Preliminary implementation of Event Timer and Inhibit Timer driven TPDO
etisserant
parents: 217
diff changeset
   410
	_sendPDOevent( d, 0 ); /* not a Sync Event*/	
f812bf6b7237 Preliminary implementation of Event Timer and Inhibit Timer driven TPDO
etisserant
parents: 217
diff changeset
   411
}
f812bf6b7237 Preliminary implementation of Event Timer and Inhibit Timer driven TPDO
etisserant
parents: 217
diff changeset
   412
f812bf6b7237 Preliminary implementation of Event Timer and Inhibit Timer driven TPDO
etisserant
parents: 217
diff changeset
   413
void PDOInhibitTimerAlarm(CO_Data* d, UNS32 pdoNum)
f812bf6b7237 Preliminary implementation of Event Timer and Inhibit Timer driven TPDO
etisserant
parents: 217
diff changeset
   414
{
f812bf6b7237 Preliminary implementation of Event Timer and Inhibit Timer driven TPDO
etisserant
parents: 217
diff changeset
   415
	printf("EV PDOInhibitTimerAlarm : %d\n", pdoNum);
f812bf6b7237 Preliminary implementation of Event Timer and Inhibit Timer driven TPDO
etisserant
parents: 217
diff changeset
   416
f812bf6b7237 Preliminary implementation of Event Timer and Inhibit Timer driven TPDO
etisserant
parents: 217
diff changeset
   417
	/* This is needed to avoid deletion of re-attribuated timer */
f812bf6b7237 Preliminary implementation of Event Timer and Inhibit Timer driven TPDO
etisserant
parents: 217
diff changeset
   418
	d->PDO_status[pdoNum].inhibit_timer = TIMER_NONE;
f812bf6b7237 Preliminary implementation of Event Timer and Inhibit Timer driven TPDO
etisserant
parents: 217
diff changeset
   419
	/* Remove inhibit flag */
f812bf6b7237 Preliminary implementation of Event Timer and Inhibit Timer driven TPDO
etisserant
parents: 217
diff changeset
   420
	d->PDO_status[pdoNum].transmit_type_parameter &= ~PDO_INHIBITED;
f812bf6b7237 Preliminary implementation of Event Timer and Inhibit Timer driven TPDO
etisserant
parents: 217
diff changeset
   421
	_sendPDOevent( d, 0 ); /* not a Sync Event*/
f812bf6b7237 Preliminary implementation of Event Timer and Inhibit Timer driven TPDO
etisserant
parents: 217
diff changeset
   422
}
f812bf6b7237 Preliminary implementation of Event Timer and Inhibit Timer driven TPDO
etisserant
parents: 217
diff changeset
   423
f812bf6b7237 Preliminary implementation of Event Timer and Inhibit Timer driven TPDO
etisserant
parents: 217
diff changeset
   424
/*!
f812bf6b7237 Preliminary implementation of Event Timer and Inhibit Timer driven TPDO
etisserant
parents: 217
diff changeset
   425
**
f812bf6b7237 Preliminary implementation of Event Timer and Inhibit Timer driven TPDO
etisserant
parents: 217
diff changeset
   426
**
f812bf6b7237 Preliminary implementation of Event Timer and Inhibit Timer driven TPDO
etisserant
parents: 217
diff changeset
   427
** @param d
f812bf6b7237 Preliminary implementation of Event Timer and Inhibit Timer driven TPDO
etisserant
parents: 217
diff changeset
   428
** @param isSyncEvent
f812bf6b7237 Preliminary implementation of Event Timer and Inhibit Timer driven TPDO
etisserant
parents: 217
diff changeset
   429
**
f812bf6b7237 Preliminary implementation of Event Timer and Inhibit Timer driven TPDO
etisserant
parents: 217
diff changeset
   430
** @return
f812bf6b7237 Preliminary implementation of Event Timer and Inhibit Timer driven TPDO
etisserant
parents: 217
diff changeset
   431
**/
f812bf6b7237 Preliminary implementation of Event Timer and Inhibit Timer driven TPDO
etisserant
parents: 217
diff changeset
   432
f812bf6b7237 Preliminary implementation of Event Timer and Inhibit Timer driven TPDO
etisserant
parents: 217
diff changeset
   433
UNS8 _sendPDOevent( CO_Data* d, UNS8 isSyncEvent )
f812bf6b7237 Preliminary implementation of Event Timer and Inhibit Timer driven TPDO
etisserant
parents: 217
diff changeset
   434
{ 
f812bf6b7237 Preliminary implementation of Event Timer and Inhibit Timer driven TPDO
etisserant
parents: 217
diff changeset
   435
  UNS8 	pdoNum = 0x00;       /* number of the actual processed pdo-nr. */
f812bf6b7237 Preliminary implementation of Event Timer and Inhibit Timer driven TPDO
etisserant
parents: 217
diff changeset
   436
  UNS8* pTransmissionType = NULL;  
f812bf6b7237 Preliminary implementation of Event Timer and Inhibit Timer driven TPDO
etisserant
parents: 217
diff changeset
   437
  UNS8 status = state3;
f812bf6b7237 Preliminary implementation of Event Timer and Inhibit Timer driven TPDO
etisserant
parents: 217
diff changeset
   438
  UNS16 offsetObjdict = d->firstIndex->PDO_TRS;
f812bf6b7237 Preliminary implementation of Event Timer and Inhibit Timer driven TPDO
etisserant
parents: 217
diff changeset
   439
  UNS16 offsetObjdictMap = d->firstIndex->PDO_TRS_MAP;
f812bf6b7237 Preliminary implementation of Event Timer and Inhibit Timer driven TPDO
etisserant
parents: 217
diff changeset
   440
  UNS16 lastIndex = d->lastIndex->PDO_TRS;  
f812bf6b7237 Preliminary implementation of Event Timer and Inhibit Timer driven TPDO
etisserant
parents: 217
diff changeset
   441
f812bf6b7237 Preliminary implementation of Event Timer and Inhibit Timer driven TPDO
etisserant
parents: 217
diff changeset
   442
  /* study all PDO stored in the objects dictionary */	
f812bf6b7237 Preliminary implementation of Event Timer and Inhibit Timer driven TPDO
etisserant
parents: 217
diff changeset
   443
  if(offsetObjdict){
f812bf6b7237 Preliminary implementation of Event Timer and Inhibit Timer driven TPDO
etisserant
parents: 217
diff changeset
   444
   Message clean = Message_Initializer;
f812bf6b7237 Preliminary implementation of Event Timer and Inhibit Timer driven TPDO
etisserant
parents: 217
diff changeset
   445
   Message pdo = Message_Initializer;
f812bf6b7237 Preliminary implementation of Event Timer and Inhibit Timer driven TPDO
etisserant
parents: 217
diff changeset
   446
   while( offsetObjdict <= lastIndex) {  
f812bf6b7237 Preliminary implementation of Event Timer and Inhibit Timer driven TPDO
etisserant
parents: 217
diff changeset
   447
    switch( status ) {
f812bf6b7237 Preliminary implementation of Event Timer and Inhibit Timer driven TPDO
etisserant
parents: 217
diff changeset
   448
    case state3:    /* get the PDO transmission type */
f812bf6b7237 Preliminary implementation of Event Timer and Inhibit Timer driven TPDO
etisserant
parents: 217
diff changeset
   449
      if (d->objdict[offsetObjdict].bSubCount <= 2) {
f812bf6b7237 Preliminary implementation of Event Timer and Inhibit Timer driven TPDO
etisserant
parents: 217
diff changeset
   450
	  MSG_ERR(0x1004, "Subindex 2  not found at index ", 0x1800 + pdoNum);
f812bf6b7237 Preliminary implementation of Event Timer and Inhibit Timer driven TPDO
etisserant
parents: 217
diff changeset
   451
	  return 0xFF;
f812bf6b7237 Preliminary implementation of Event Timer and Inhibit Timer driven TPDO
etisserant
parents: 217
diff changeset
   452
	}
f812bf6b7237 Preliminary implementation of Event Timer and Inhibit Timer driven TPDO
etisserant
parents: 217
diff changeset
   453
      pTransmissionType = (UNS8*) d->objdict[offsetObjdict].pSubindex[2].pObject;    
f812bf6b7237 Preliminary implementation of Event Timer and Inhibit Timer driven TPDO
etisserant
parents: 217
diff changeset
   454
      MSG_WAR(0x3005, "Reading PDO at index : ", 0x1800 + pdoNum);
f812bf6b7237 Preliminary implementation of Event Timer and Inhibit Timer driven TPDO
etisserant
parents: 217
diff changeset
   455
f812bf6b7237 Preliminary implementation of Event Timer and Inhibit Timer driven TPDO
etisserant
parents: 217
diff changeset
   456
      /* check if transmission type is after (this) SYNC */
f812bf6b7237 Preliminary implementation of Event Timer and Inhibit Timer driven TPDO
etisserant
parents: 217
diff changeset
   457
      /* The message may not be transmited every SYNC but every n SYNC */      
f812bf6b7237 Preliminary implementation of Event Timer and Inhibit Timer driven TPDO
etisserant
parents: 217
diff changeset
   458
      if( isSyncEvent && 
f812bf6b7237 Preliminary implementation of Event Timer and Inhibit Timer driven TPDO
etisserant
parents: 217
diff changeset
   459
      	  (*pTransmissionType >= TRANS_SYNC_MIN) &&
f812bf6b7237 Preliminary implementation of Event Timer and Inhibit Timer driven TPDO
etisserant
parents: 217
diff changeset
   460
      	  (*pTransmissionType <= TRANS_SYNC_MAX) &&
f812bf6b7237 Preliminary implementation of Event Timer and Inhibit Timer driven TPDO
etisserant
parents: 217
diff changeset
   461
          (++d->PDO_status[pdoNum].transmit_type_parameter == *pTransmissionType) ) {	
f812bf6b7237 Preliminary implementation of Event Timer and Inhibit Timer driven TPDO
etisserant
parents: 217
diff changeset
   462
	d->PDO_status[pdoNum].transmit_type_parameter = 0;
f812bf6b7237 Preliminary implementation of Event Timer and Inhibit Timer driven TPDO
etisserant
parents: 217
diff changeset
   463
	MSG_WAR(0x3007, "  PDO is on SYNCHRO. Trans type : ", *pTransmissionType);
f812bf6b7237 Preliminary implementation of Event Timer and Inhibit Timer driven TPDO
etisserant
parents: 217
diff changeset
   464
	pdo = clean;
f812bf6b7237 Preliminary implementation of Event Timer and Inhibit Timer driven TPDO
etisserant
parents: 217
diff changeset
   465
        if(buildPDO(d, pdoNum, &pdo))
f812bf6b7237 Preliminary implementation of Event Timer and Inhibit Timer driven TPDO
etisserant
parents: 217
diff changeset
   466
        {
f812bf6b7237 Preliminary implementation of Event Timer and Inhibit Timer driven TPDO
etisserant
parents: 217
diff changeset
   467
            MSG_ERR(0x3006, " Couldn't build TPDO number : ", pdoNum);
f812bf6b7237 Preliminary implementation of Event Timer and Inhibit Timer driven TPDO
etisserant
parents: 217
diff changeset
   468
	    status = state11;
f812bf6b7237 Preliminary implementation of Event Timer and Inhibit Timer driven TPDO
etisserant
parents: 217
diff changeset
   469
	    break;
f812bf6b7237 Preliminary implementation of Event Timer and Inhibit Timer driven TPDO
etisserant
parents: 217
diff changeset
   470
        }
f812bf6b7237 Preliminary implementation of Event Timer and Inhibit Timer driven TPDO
etisserant
parents: 217
diff changeset
   471
	status = state5;
208
05d95c45b388 Manual convertion -> latex -> pdf
nico
parents: 204
diff changeset
   472
      }
235
f812bf6b7237 Preliminary implementation of Event Timer and Inhibit Timer driven TPDO
etisserant
parents: 217
diff changeset
   473
      /* If transmission on Event and not inhibited, check for changes */
f812bf6b7237 Preliminary implementation of Event Timer and Inhibit Timer driven TPDO
etisserant
parents: 217
diff changeset
   474
      else if((*pTransmissionType == TRANS_EVENT_PROFILE ||
f812bf6b7237 Preliminary implementation of Event Timer and Inhibit Timer driven TPDO
etisserant
parents: 217
diff changeset
   475
               *pTransmissionType == TRANS_EVENT_SPECIFIC )&&
f812bf6b7237 Preliminary implementation of Event Timer and Inhibit Timer driven TPDO
etisserant
parents: 217
diff changeset
   476
              !(d->PDO_status[pdoNum].transmit_type_parameter & PDO_INHIBITED)) {
f812bf6b7237 Preliminary implementation of Event Timer and Inhibit Timer driven TPDO
etisserant
parents: 217
diff changeset
   477
	MSG_WAR(0x3008, "  PDO is on EVENT. Trans type : ", *pTransmissionType);
f812bf6b7237 Preliminary implementation of Event Timer and Inhibit Timer driven TPDO
etisserant
parents: 217
diff changeset
   478
	pdo = pdo = clean;
f812bf6b7237 Preliminary implementation of Event Timer and Inhibit Timer driven TPDO
etisserant
parents: 217
diff changeset
   479
        if(buildPDO(d, pdoNum, &pdo))
f812bf6b7237 Preliminary implementation of Event Timer and Inhibit Timer driven TPDO
etisserant
parents: 217
diff changeset
   480
        {
f812bf6b7237 Preliminary implementation of Event Timer and Inhibit Timer driven TPDO
etisserant
parents: 217
diff changeset
   481
            MSG_ERR(0x3007, " Couldn't build TPDO number : ", pdoNum);
f812bf6b7237 Preliminary implementation of Event Timer and Inhibit Timer driven TPDO
etisserant
parents: 217
diff changeset
   482
	    status = state11;
f812bf6b7237 Preliminary implementation of Event Timer and Inhibit Timer driven TPDO
etisserant
parents: 217
diff changeset
   483
	    break;
f812bf6b7237 Preliminary implementation of Event Timer and Inhibit Timer driven TPDO
etisserant
parents: 217
diff changeset
   484
        }
f812bf6b7237 Preliminary implementation of Event Timer and Inhibit Timer driven TPDO
etisserant
parents: 217
diff changeset
   485
        
f812bf6b7237 Preliminary implementation of Event Timer and Inhibit Timer driven TPDO
etisserant
parents: 217
diff changeset
   486
	/*Compare new and old PDO*/
f812bf6b7237 Preliminary implementation of Event Timer and Inhibit Timer driven TPDO
etisserant
parents: 217
diff changeset
   487
	if(d->PDO_status[pdoNum].last_message.cob_id.w == pdo.cob_id.w &&
f812bf6b7237 Preliminary implementation of Event Timer and Inhibit Timer driven TPDO
etisserant
parents: 217
diff changeset
   488
	   d->PDO_status[pdoNum].last_message.len == pdo.len &&
f812bf6b7237 Preliminary implementation of Event Timer and Inhibit Timer driven TPDO
etisserant
parents: 217
diff changeset
   489
	   *(UNS64*)(&d->PDO_status[pdoNum].last_message.data[0]) == *(UNS64*)(&pdo.data[0])){
f812bf6b7237 Preliminary implementation of Event Timer and Inhibit Timer driven TPDO
etisserant
parents: 217
diff changeset
   490
	   	/* No changes -> go to next pdo*/
f812bf6b7237 Preliminary implementation of Event Timer and Inhibit Timer driven TPDO
etisserant
parents: 217
diff changeset
   491
		status = state11;
f812bf6b7237 Preliminary implementation of Event Timer and Inhibit Timer driven TPDO
etisserant
parents: 217
diff changeset
   492
	}else{
f812bf6b7237 Preliminary implementation of Event Timer and Inhibit Timer driven TPDO
etisserant
parents: 217
diff changeset
   493
		MSG_WAR(0x3008, "Changes TPDO number : ", pdoNum);
f812bf6b7237 Preliminary implementation of Event Timer and Inhibit Timer driven TPDO
etisserant
parents: 217
diff changeset
   494
		printf("EV Changes TPDO number : %d\n", pdoNum);
f812bf6b7237 Preliminary implementation of Event Timer and Inhibit Timer driven TPDO
etisserant
parents: 217
diff changeset
   495
		/* Changes detected -> transmit message */
f812bf6b7237 Preliminary implementation of Event Timer and Inhibit Timer driven TPDO
etisserant
parents: 217
diff changeset
   496
		status = state5;
f812bf6b7237 Preliminary implementation of Event Timer and Inhibit Timer driven TPDO
etisserant
parents: 217
diff changeset
   497
		
f812bf6b7237 Preliminary implementation of Event Timer and Inhibit Timer driven TPDO
etisserant
parents: 217
diff changeset
   498
		/* Start both event_timer and inhibit_timer*/
f812bf6b7237 Preliminary implementation of Event Timer and Inhibit Timer driven TPDO
etisserant
parents: 217
diff changeset
   499
		DelAlarm(d->PDO_status[pdoNum].event_timer);
f812bf6b7237 Preliminary implementation of Event Timer and Inhibit Timer driven TPDO
etisserant
parents: 217
diff changeset
   500
		d->PDO_status[pdoNum].event_timer = SetAlarm(d, pdoNum, &PDOEventTimerAlarm, MS_TO_TIMEVAL(*(UNS16*)d->objdict[offsetObjdict].pSubindex[5].pObject), 0);
f812bf6b7237 Preliminary implementation of Event Timer and Inhibit Timer driven TPDO
etisserant
parents: 217
diff changeset
   501
		
f812bf6b7237 Preliminary implementation of Event Timer and Inhibit Timer driven TPDO
etisserant
parents: 217
diff changeset
   502
		DelAlarm(d->PDO_status[pdoNum].inhibit_timer);
f812bf6b7237 Preliminary implementation of Event Timer and Inhibit Timer driven TPDO
etisserant
parents: 217
diff changeset
   503
		d->PDO_status[pdoNum].inhibit_timer = SetAlarm(d, pdoNum, &PDOInhibitTimerAlarm, US_TO_TIMEVAL(*(UNS16*)d->objdict[offsetObjdict].pSubindex[3].pObject * 100), 0);
f812bf6b7237 Preliminary implementation of Event Timer and Inhibit Timer driven TPDO
etisserant
parents: 217
diff changeset
   504
		
f812bf6b7237 Preliminary implementation of Event Timer and Inhibit Timer driven TPDO
etisserant
parents: 217
diff changeset
   505
		/* and inhibit TPDO */
f812bf6b7237 Preliminary implementation of Event Timer and Inhibit Timer driven TPDO
etisserant
parents: 217
diff changeset
   506
		d->PDO_status[pdoNum].transmit_type_parameter |= PDO_INHIBITED;
f812bf6b7237 Preliminary implementation of Event Timer and Inhibit Timer driven TPDO
etisserant
parents: 217
diff changeset
   507
	}
f812bf6b7237 Preliminary implementation of Event Timer and Inhibit Timer driven TPDO
etisserant
parents: 217
diff changeset
   508
      }else{
f812bf6b7237 Preliminary implementation of Event Timer and Inhibit Timer driven TPDO
etisserant
parents: 217
diff changeset
   509
	MSG_WAR(0x3009, "  PDO is not on EVENT or synchro or not at this SYNC. Trans type : ", *pTransmissionType);
f812bf6b7237 Preliminary implementation of Event Timer and Inhibit Timer driven TPDO
etisserant
parents: 217
diff changeset
   510
	status = state11;
f812bf6b7237 Preliminary implementation of Event Timer and Inhibit Timer driven TPDO
etisserant
parents: 217
diff changeset
   511
      }      
f812bf6b7237 Preliminary implementation of Event Timer and Inhibit Timer driven TPDO
etisserant
parents: 217
diff changeset
   512
        break;
f812bf6b7237 Preliminary implementation of Event Timer and Inhibit Timer driven TPDO
etisserant
parents: 217
diff changeset
   513
    case state5: /*Send the pdo*/
f812bf6b7237 Preliminary implementation of Event Timer and Inhibit Timer driven TPDO
etisserant
parents: 217
diff changeset
   514
	/*store_as_last_message*/
f812bf6b7237 Preliminary implementation of Event Timer and Inhibit Timer driven TPDO
etisserant
parents: 217
diff changeset
   515
	d->PDO_status[pdoNum].last_message = pdo;	
f812bf6b7237 Preliminary implementation of Event Timer and Inhibit Timer driven TPDO
etisserant
parents: 217
diff changeset
   516
	MSG_WAR(0x3901, "sendPDO cobId :", pdo.cob_id.w);
f812bf6b7237 Preliminary implementation of Event Timer and Inhibit Timer driven TPDO
etisserant
parents: 217
diff changeset
   517
	MSG_WAR(0x3902,  "     Nb octets  : ",  pdo.len);
f812bf6b7237 Preliminary implementation of Event Timer and Inhibit Timer driven TPDO
etisserant
parents: 217
diff changeset
   518
	{int i;
f812bf6b7237 Preliminary implementation of Event Timer and Inhibit Timer driven TPDO
etisserant
parents: 217
diff changeset
   519
	for (i = 0 ; i < pdo.len ; i++) {
f812bf6b7237 Preliminary implementation of Event Timer and Inhibit Timer driven TPDO
etisserant
parents: 217
diff changeset
   520
		MSG_WAR(0x3903,"           data : ", pdo.data[i]);
f812bf6b7237 Preliminary implementation of Event Timer and Inhibit Timer driven TPDO
etisserant
parents: 217
diff changeset
   521
	}}
f812bf6b7237 Preliminary implementation of Event Timer and Inhibit Timer driven TPDO
etisserant
parents: 217
diff changeset
   522
    	
f812bf6b7237 Preliminary implementation of Event Timer and Inhibit Timer driven TPDO
etisserant
parents: 217
diff changeset
   523
    	canSend(d->canHandle,&pdo);
f812bf6b7237 Preliminary implementation of Event Timer and Inhibit Timer driven TPDO
etisserant
parents: 217
diff changeset
   524
	status = state11;
f812bf6b7237 Preliminary implementation of Event Timer and Inhibit Timer driven TPDO
etisserant
parents: 217
diff changeset
   525
	break;     
f812bf6b7237 Preliminary implementation of Event Timer and Inhibit Timer driven TPDO
etisserant
parents: 217
diff changeset
   526
    case state11: /*Go to next TPDO*/     
f812bf6b7237 Preliminary implementation of Event Timer and Inhibit Timer driven TPDO
etisserant
parents: 217
diff changeset
   527
	pdoNum++;
f812bf6b7237 Preliminary implementation of Event Timer and Inhibit Timer driven TPDO
etisserant
parents: 217
diff changeset
   528
	offsetObjdict++;
f812bf6b7237 Preliminary implementation of Event Timer and Inhibit Timer driven TPDO
etisserant
parents: 217
diff changeset
   529
	offsetObjdictMap++;
f812bf6b7237 Preliminary implementation of Event Timer and Inhibit Timer driven TPDO
etisserant
parents: 217
diff changeset
   530
	MSG_WAR(0x3017, "next pdo index : ", pdoNum);
f812bf6b7237 Preliminary implementation of Event Timer and Inhibit Timer driven TPDO
etisserant
parents: 217
diff changeset
   531
	status = state3;
f812bf6b7237 Preliminary implementation of Event Timer and Inhibit Timer driven TPDO
etisserant
parents: 217
diff changeset
   532
	break;
f812bf6b7237 Preliminary implementation of Event Timer and Inhibit Timer driven TPDO
etisserant
parents: 217
diff changeset
   533
      
f812bf6b7237 Preliminary implementation of Event Timer and Inhibit Timer driven TPDO
etisserant
parents: 217
diff changeset
   534
    default:
f812bf6b7237 Preliminary implementation of Event Timer and Inhibit Timer driven TPDO
etisserant
parents: 217
diff changeset
   535
      MSG_ERR(0x1019,"Unknown state has been reached : %d",status);
f812bf6b7237 Preliminary implementation of Event Timer and Inhibit Timer driven TPDO
etisserant
parents: 217
diff changeset
   536
      return 0xFF;
f812bf6b7237 Preliminary implementation of Event Timer and Inhibit Timer driven TPDO
etisserant
parents: 217
diff changeset
   537
    }/* end switch case */
f812bf6b7237 Preliminary implementation of Event Timer and Inhibit Timer driven TPDO
etisserant
parents: 217
diff changeset
   538
    
f812bf6b7237 Preliminary implementation of Event Timer and Inhibit Timer driven TPDO
etisserant
parents: 217
diff changeset
   539
  }/* end while */
f812bf6b7237 Preliminary implementation of Event Timer and Inhibit Timer driven TPDO
etisserant
parents: 217
diff changeset
   540
  }
f812bf6b7237 Preliminary implementation of Event Timer and Inhibit Timer driven TPDO
etisserant
parents: 217
diff changeset
   541
  return 0;
f812bf6b7237 Preliminary implementation of Event Timer and Inhibit Timer driven TPDO
etisserant
parents: 217
diff changeset
   542
}
f812bf6b7237 Preliminary implementation of Event Timer and Inhibit Timer driven TPDO
etisserant
parents: 217
diff changeset
   543
f812bf6b7237 Preliminary implementation of Event Timer and Inhibit Timer driven TPDO
etisserant
parents: 217
diff changeset
   544
void PDOInit(CO_Data* d)
f812bf6b7237 Preliminary implementation of Event Timer and Inhibit Timer driven TPDO
etisserant
parents: 217
diff changeset
   545
{
f812bf6b7237 Preliminary implementation of Event Timer and Inhibit Timer driven TPDO
etisserant
parents: 217
diff changeset
   546
	
f812bf6b7237 Preliminary implementation of Event Timer and Inhibit Timer driven TPDO
etisserant
parents: 217
diff changeset
   547
	/* TODO: implement callbacks on 140xh
f812bf6b7237 Preliminary implementation of Event Timer and Inhibit Timer driven TPDO
etisserant
parents: 217
diff changeset
   548
	 * XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXx
f812bf6b7237 Preliminary implementation of Event Timer and Inhibit Timer driven TPDO
etisserant
parents: 217
diff changeset
   549
	 * XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXx
f812bf6b7237 Preliminary implementation of Event Timer and Inhibit Timer driven TPDO
etisserant
parents: 217
diff changeset
   550
	 * XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXx
f812bf6b7237 Preliminary implementation of Event Timer and Inhibit Timer driven TPDO
etisserant
parents: 217
diff changeset
   551
	 * XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXx
f812bf6b7237 Preliminary implementation of Event Timer and Inhibit Timer driven TPDO
etisserant
parents: 217
diff changeset
   552
	 * XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXx
f812bf6b7237 Preliminary implementation of Event Timer and Inhibit Timer driven TPDO
etisserant
parents: 217
diff changeset
   553
	 * XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXx
f812bf6b7237 Preliminary implementation of Event Timer and Inhibit Timer driven TPDO
etisserant
parents: 217
diff changeset
   554
	 * XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXx
f812bf6b7237 Preliminary implementation of Event Timer and Inhibit Timer driven TPDO
etisserant
parents: 217
diff changeset
   555
	 * XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXx
f812bf6b7237 Preliminary implementation of Event Timer and Inhibit Timer driven TPDO
etisserant
parents: 217
diff changeset
   556
	*/	
f812bf6b7237 Preliminary implementation of Event Timer and Inhibit Timer driven TPDO
etisserant
parents: 217
diff changeset
   557
	
f812bf6b7237 Preliminary implementation of Event Timer and Inhibit Timer driven TPDO
etisserant
parents: 217
diff changeset
   558
  _sendPDOevent(d, 0 );
f812bf6b7237 Preliminary implementation of Event Timer and Inhibit Timer driven TPDO
etisserant
parents: 217
diff changeset
   559
}
f812bf6b7237 Preliminary implementation of Event Timer and Inhibit Timer driven TPDO
etisserant
parents: 217
diff changeset
   560
f812bf6b7237 Preliminary implementation of Event Timer and Inhibit Timer driven TPDO
etisserant
parents: 217
diff changeset
   561
void PDOStop(CO_Data* d)
f812bf6b7237 Preliminary implementation of Event Timer and Inhibit Timer driven TPDO
etisserant
parents: 217
diff changeset
   562
{
f812bf6b7237 Preliminary implementation of Event Timer and Inhibit Timer driven TPDO
etisserant
parents: 217
diff changeset
   563
  UNS8 	pdoNum = 0x00;       /* number of the actual processed pdo-nr. */
f812bf6b7237 Preliminary implementation of Event Timer and Inhibit Timer driven TPDO
etisserant
parents: 217
diff changeset
   564
  UNS16 offsetObjdict = d->firstIndex->PDO_TRS;
f812bf6b7237 Preliminary implementation of Event Timer and Inhibit Timer driven TPDO
etisserant
parents: 217
diff changeset
   565
  UNS16 lastIndex = d->lastIndex->PDO_TRS;
f812bf6b7237 Preliminary implementation of Event Timer and Inhibit Timer driven TPDO
etisserant
parents: 217
diff changeset
   566
  if(offsetObjdict) while( offsetObjdict <= lastIndex) {
f812bf6b7237 Preliminary implementation of Event Timer and Inhibit Timer driven TPDO
etisserant
parents: 217
diff changeset
   567
	d->PDO_status[pdoNum].event_timer = DelAlarm(d->PDO_status[pdoNum].event_timer);
f812bf6b7237 Preliminary implementation of Event Timer and Inhibit Timer driven TPDO
etisserant
parents: 217
diff changeset
   568
	d->PDO_status[pdoNum].inhibit_timer = DelAlarm(d->PDO_status[pdoNum].inhibit_timer);
f812bf6b7237 Preliminary implementation of Event Timer and Inhibit Timer driven TPDO
etisserant
parents: 217
diff changeset
   569
	d->PDO_status[pdoNum].transmit_type_parameter = 0;
f812bf6b7237 Preliminary implementation of Event Timer and Inhibit Timer driven TPDO
etisserant
parents: 217
diff changeset
   570
	d->PDO_status[pdoNum].last_message.cob_id.w = 0;
f812bf6b7237 Preliminary implementation of Event Timer and Inhibit Timer driven TPDO
etisserant
parents: 217
diff changeset
   571
	pdoNum++;
f812bf6b7237 Preliminary implementation of Event Timer and Inhibit Timer driven TPDO
etisserant
parents: 217
diff changeset
   572
	offsetObjdict++;
f812bf6b7237 Preliminary implementation of Event Timer and Inhibit Timer driven TPDO
etisserant
parents: 217
diff changeset
   573
  }  
f812bf6b7237 Preliminary implementation of Event Timer and Inhibit Timer driven TPDO
etisserant
parents: 217
diff changeset
   574
}