src/dcf.c
author greg
Tue, 29 May 2007 12:02:18 +0200
changeset 206 6787754b251b
parent 204 44ce74232ccb
child 207 b6572d0336c3
permissions -rw-r--r--
Bugs corrected on objdictedit and networkdict
178
01d81faa3350 Add concise DCF support
greg
parents:
diff changeset
     1
/*
01d81faa3350 Add concise DCF support
greg
parents:
diff changeset
     2
This file is part of CanFestival, a library implementing CanOpen Stack. 
01d81faa3350 Add concise DCF support
greg
parents:
diff changeset
     3
01d81faa3350 Add concise DCF support
greg
parents:
diff changeset
     4
Copyright (C): Edouard TISSERANT and Francis DUPIN
01d81faa3350 Add concise DCF support
greg
parents:
diff changeset
     5
01d81faa3350 Add concise DCF support
greg
parents:
diff changeset
     6
See COPYING file for copyrights details.
01d81faa3350 Add concise DCF support
greg
parents:
diff changeset
     7
01d81faa3350 Add concise DCF support
greg
parents:
diff changeset
     8
This library is free software; you can redistribute it and/or
01d81faa3350 Add concise DCF support
greg
parents:
diff changeset
     9
modify it under the terms of the GNU Lesser General Public
01d81faa3350 Add concise DCF support
greg
parents:
diff changeset
    10
License as published by the Free Software Foundation; either
01d81faa3350 Add concise DCF support
greg
parents:
diff changeset
    11
version 2.1 of the License, or (at your option) any later version.
01d81faa3350 Add concise DCF support
greg
parents:
diff changeset
    12
01d81faa3350 Add concise DCF support
greg
parents:
diff changeset
    13
This library is distributed in the hope that it will be useful,
01d81faa3350 Add concise DCF support
greg
parents:
diff changeset
    14
but WITHOUT ANY WARRANTY; without even the implied warranty of
01d81faa3350 Add concise DCF support
greg
parents:
diff changeset
    15
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
01d81faa3350 Add concise DCF support
greg
parents:
diff changeset
    16
Lesser General Public License for more details.
01d81faa3350 Add concise DCF support
greg
parents:
diff changeset
    17
01d81faa3350 Add concise DCF support
greg
parents:
diff changeset
    18
You should have received a copy of the GNU Lesser General Public
01d81faa3350 Add concise DCF support
greg
parents:
diff changeset
    19
License along with this library; if not, write to the Free Software
01d81faa3350 Add concise DCF support
greg
parents:
diff changeset
    20
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
01d81faa3350 Add concise DCF support
greg
parents:
diff changeset
    21
*/
01d81faa3350 Add concise DCF support
greg
parents:
diff changeset
    22
01d81faa3350 Add concise DCF support
greg
parents:
diff changeset
    23
#include "objacces.h"
01d81faa3350 Add concise DCF support
greg
parents:
diff changeset
    24
#include "sdo.h"
01d81faa3350 Add concise DCF support
greg
parents:
diff changeset
    25
#include "dcf.h"
200
930be51ddc24 Big Endian fixes.
etisserant
parents: 191
diff changeset
    26
#include "sysdep.h"
178
01d81faa3350 Add concise DCF support
greg
parents:
diff changeset
    27
204
44ce74232ccb Some fixes for visual studio C compiler compatiblity.
etisserant
parents: 202
diff changeset
    28
44ce74232ccb Some fixes for visual studio C compiler compatiblity.
etisserant
parents: 202
diff changeset
    29
extern UNS8 _writeNetworkDict (CO_Data* d, UNS8 nodeId, UNS16 index, 
44ce74232ccb Some fixes for visual studio C compiler compatiblity.
etisserant
parents: 202
diff changeset
    30
		       UNS8 subIndex, UNS8 count, UNS8 dataType, void *data, SDOCallback_t Callback, UNS8 endianize);
44ce74232ccb Some fixes for visual studio C compiler compatiblity.
etisserant
parents: 202
diff changeset
    31
178
01d81faa3350 Add concise DCF support
greg
parents:
diff changeset
    32
const indextable *ptrTable;
01d81faa3350 Add concise DCF support
greg
parents:
diff changeset
    33
01d81faa3350 Add concise DCF support
greg
parents:
diff changeset
    34
static void CheckSDOAndContinue(CO_Data* d, UNS8 nodeId)
01d81faa3350 Add concise DCF support
greg
parents:
diff changeset
    35
{
01d81faa3350 Add concise DCF support
greg
parents:
diff changeset
    36
	UNS32 abortCode;
01d81faa3350 Add concise DCF support
greg
parents:
diff changeset
    37
	
01d81faa3350 Add concise DCF support
greg
parents:
diff changeset
    38
	if(getWriteResultNetworkDict (d, nodeId, &abortCode) != SDO_FINISHED)
191
1e6e3d261b8f CleanUp and minor fixes
etisserant
parents: 178
diff changeset
    39
	{
1e6e3d261b8f CleanUp and minor fixes
etisserant
parents: 178
diff changeset
    40
		MSG_ERR(0x1A01, "SDO error in consise DCF", abortCode);
1e6e3d261b8f CleanUp and minor fixes
etisserant
parents: 178
diff changeset
    41
		MSG_WAR(0x2A02, "server node : ", nodeId);
1e6e3d261b8f CleanUp and minor fixes
etisserant
parents: 178
diff changeset
    42
	}
1e6e3d261b8f CleanUp and minor fixes
etisserant
parents: 178
diff changeset
    43
178
01d81faa3350 Add concise DCF support
greg
parents:
diff changeset
    44
	closeSDOtransfer(d, nodeId, SDO_CLIENT);
191
1e6e3d261b8f CleanUp and minor fixes
etisserant
parents: 178
diff changeset
    45
	decompo_dcf(d,nodeId);
178
01d81faa3350 Add concise DCF support
greg
parents:
diff changeset
    46
}
01d81faa3350 Add concise DCF support
greg
parents:
diff changeset
    47
01d81faa3350 Add concise DCF support
greg
parents:
diff changeset
    48
UNS32 decompo_dcf(CO_Data* d,UNS8 nodeId)
01d81faa3350 Add concise DCF support
greg
parents:
diff changeset
    49
{
01d81faa3350 Add concise DCF support
greg
parents:
diff changeset
    50
		UNS32 errorCode;
01d81faa3350 Add concise DCF support
greg
parents:
diff changeset
    51
		UNS16 target_Index;
01d81faa3350 Add concise DCF support
greg
parents:
diff changeset
    52
		UNS8 target_Subindex;
01d81faa3350 Add concise DCF support
greg
parents:
diff changeset
    53
		UNS32 target_Size;
01d81faa3350 Add concise DCF support
greg
parents:
diff changeset
    54
		UNS32 res;
01d81faa3350 Add concise DCF support
greg
parents:
diff changeset
    55
  		ODCallback_t *Callback;
01d81faa3350 Add concise DCF support
greg
parents:
diff changeset
    56
01d81faa3350 Add concise DCF support
greg
parents:
diff changeset
    57
		ptrTable = (*d->scanIndexOD)(0x1F22, &errorCode, &Callback);
01d81faa3350 Add concise DCF support
greg
parents:
diff changeset
    58
		if (errorCode != OD_SUCCESSFUL)
01d81faa3350 Add concise DCF support
greg
parents:
diff changeset
    59
		{
01d81faa3350 Add concise DCF support
greg
parents:
diff changeset
    60
    		return errorCode;
01d81faa3350 Add concise DCF support
greg
parents:
diff changeset
    61
		}
01d81faa3350 Add concise DCF support
greg
parents:
diff changeset
    62
01d81faa3350 Add concise DCF support
greg
parents:
diff changeset
    63
		/*Loop on all Nodes supported in DCF subindexes*/
01d81faa3350 Add concise DCF support
greg
parents:
diff changeset
    64
		while (nodeId < ptrTable->bSubCount){
01d81faa3350 Add concise DCF support
greg
parents:
diff changeset
    65
			UNS32 nb_targets;
01d81faa3350 Add concise DCF support
greg
parents:
diff changeset
    66
	  		
01d81faa3350 Add concise DCF support
greg
parents:
diff changeset
    67
	  		UNS8 szData = ptrTable->pSubindex[nodeId].size;
204
44ce74232ccb Some fixes for visual studio C compiler compatiblity.
etisserant
parents: 202
diff changeset
    68
	  		UNS8* dcfend;
178
01d81faa3350 Add concise DCF support
greg
parents:
diff changeset
    69
	  		
01d81faa3350 Add concise DCF support
greg
parents:
diff changeset
    70
		  	{
204
44ce74232ccb Some fixes for visual studio C compiler compatiblity.
etisserant
parents: 202
diff changeset
    71
			  	UNS8* dcf = *((UNS8**)ptrTable->pSubindex[nodeId].pObject);
178
01d81faa3350 Add concise DCF support
greg
parents:
diff changeset
    72
		  		dcfend = dcf + szData;
01d81faa3350 Add concise DCF support
greg
parents:
diff changeset
    73
				if (!d->dcf_cursor)	{
204
44ce74232ccb Some fixes for visual studio C compiler compatiblity.
etisserant
parents: 202
diff changeset
    74
					d->dcf_cursor = (UNS8*)dcf + 4;
178
01d81faa3350 Add concise DCF support
greg
parents:
diff changeset
    75
					d->dcf_count_targets = 0;
01d81faa3350 Add concise DCF support
greg
parents:
diff changeset
    76
				}
200
930be51ddc24 Big Endian fixes.
etisserant
parents: 191
diff changeset
    77
				nb_targets = UNS32_LE(*((UNS32*)dcf));
178
01d81faa3350 Add concise DCF support
greg
parents:
diff changeset
    78
		  	}
01d81faa3350 Add concise DCF support
greg
parents:
diff changeset
    79
			
01d81faa3350 Add concise DCF support
greg
parents:
diff changeset
    80
			// condition on consise DCF string for NodeID, if big enough
204
44ce74232ccb Some fixes for visual studio C compiler compatiblity.
etisserant
parents: 202
diff changeset
    81
			if((UNS8*)d->dcf_cursor + 7 < (UNS8*)dcfend && d->dcf_count_targets < nb_targets)
178
01d81faa3350 Add concise DCF support
greg
parents:
diff changeset
    82
			{
01d81faa3350 Add concise DCF support
greg
parents:
diff changeset
    83
				// pointer to the DCF string for NodeID
200
930be51ddc24 Big Endian fixes.
etisserant
parents: 191
diff changeset
    84
				target_Index = UNS16_LE(*((UNS16*)(d->dcf_cursor))); d->dcf_cursor += 2;
204
44ce74232ccb Some fixes for visual studio C compiler compatiblity.
etisserant
parents: 202
diff changeset
    85
				target_Subindex = *((UNS8*)(((UNS8*)d->dcf_cursor)++));
200
930be51ddc24 Big Endian fixes.
etisserant
parents: 191
diff changeset
    86
				target_Size = UNS32_LE(*((UNS32*)(d->dcf_cursor))); d->dcf_cursor += 4;
202
9cfd9211616c big-endian with concise dcf fixed
greg
parents: 200
diff changeset
    87
					
191
1e6e3d261b8f CleanUp and minor fixes
etisserant
parents: 178
diff changeset
    88
					/*printf("Master : ConfigureSlaveNode %2.2x (Concise DCF)\n",nodeId);*/
202
9cfd9211616c big-endian with concise dcf fixed
greg
parents: 200
diff changeset
    89
					res = _writeNetworkDict(d, /*CO_Data* d*/
178
01d81faa3350 Add concise DCF support
greg
parents:
diff changeset
    90
							nodeId, /*UNS8 nodeId*/
01d81faa3350 Add concise DCF support
greg
parents:
diff changeset
    91
							target_Index, /*UNS16 index*/
01d81faa3350 Add concise DCF support
greg
parents:
diff changeset
    92
							target_Subindex, /*UNS8 subindex*/
01d81faa3350 Add concise DCF support
greg
parents:
diff changeset
    93
							target_Size, /*UNS8 count*/
01d81faa3350 Add concise DCF support
greg
parents:
diff changeset
    94
							0, /*UNS8 dataType*/
01d81faa3350 Add concise DCF support
greg
parents:
diff changeset
    95
							d->dcf_cursor,/*void *data*/
202
9cfd9211616c big-endian with concise dcf fixed
greg
parents: 200
diff changeset
    96
							CheckSDOAndContinue,/*SDOCallback_t Callback*/	
9cfd9211616c big-endian with concise dcf fixed
greg
parents: 200
diff changeset
    97
							0); /* no endianize		*/
178
01d81faa3350 Add concise DCF support
greg
parents:
diff changeset
    98
					/*Push d->dcf_cursor to the end of data*/
01d81faa3350 Add concise DCF support
greg
parents:
diff changeset
    99
					
01d81faa3350 Add concise DCF support
greg
parents:
diff changeset
   100
					d->dcf_cursor += target_Size;
01d81faa3350 Add concise DCF support
greg
parents:
diff changeset
   101
					d->dcf_count_targets++;
01d81faa3350 Add concise DCF support
greg
parents:
diff changeset
   102
					
01d81faa3350 Add concise DCF support
greg
parents:
diff changeset
   103
					return ;
01d81faa3350 Add concise DCF support
greg
parents:
diff changeset
   104
			}			
01d81faa3350 Add concise DCF support
greg
parents:
diff changeset
   105
				nodeId++;
01d81faa3350 Add concise DCF support
greg
parents:
diff changeset
   106
				d->dcf_cursor = NULL;
01d81faa3350 Add concise DCF support
greg
parents:
diff changeset
   107
		}
01d81faa3350 Add concise DCF support
greg
parents:
diff changeset
   108
		/* Switch Master to preOperational state */
01d81faa3350 Add concise DCF support
greg
parents:
diff changeset
   109
		(*d->preOperational)();
01d81faa3350 Add concise DCF support
greg
parents:
diff changeset
   110
		
01d81faa3350 Add concise DCF support
greg
parents:
diff changeset
   111
}