src/lifegrd.c
author lbessard
Mon, 22 Jan 2007 12:06:29 +0100
changeset 69 c5495b101f57
parent 53 73bc47a0db55
child 71 95cd3376cc9f
permissions -rw-r--r--
DS-401 and DS-418 updated
0
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
     1
/*
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
     2
This file is part of CanFestival, a library implementing CanOpen Stack. 
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
     3
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
     4
Copyright (C): Edouard TISSERANT and Francis DUPIN
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
     5
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
     6
See COPYING file for copyrights details.
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
     7
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
     8
This library is free software; you can redistribute it and/or
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
     9
modify it under the terms of the GNU Lesser General Public
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    10
License as published by the Free Software Foundation; either
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    11
version 2.1 of the License, or (at your option) any later version.
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    12
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    13
This library is distributed in the hope that it will be useful,
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    14
but WITHOUT ANY WARRANTY; without even the implied warranty of
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    15
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    16
Lesser General Public License for more details.
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    17
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    18
You should have received a copy of the GNU Lesser General Public
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    19
License along with this library; if not, write to the Free Software
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    20
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    21
*/
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    22
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    23
#include <data.h>
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    24
#include "lifegrd.h"
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    25
53
73bc47a0db55 Add prototypes
frdupin
parents: 0
diff changeset
    26
// Prototypes for internals functions
73bc47a0db55 Add prototypes
frdupin
parents: 0
diff changeset
    27
void ConsumerHearbeatAlarm(CO_Data* d, UNS32 id);
73bc47a0db55 Add prototypes
frdupin
parents: 0
diff changeset
    28
void ProducerHearbeatAlarm(CO_Data* d, UNS32 id);
73bc47a0db55 Add prototypes
frdupin
parents: 0
diff changeset
    29
73bc47a0db55 Add prototypes
frdupin
parents: 0
diff changeset
    30
73bc47a0db55 Add prototypes
frdupin
parents: 0
diff changeset
    31
/*****************************************************************************/
0
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    32
e_nodeState getNodeState (CO_Data* d, UNS8 nodeId)
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    33
{
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    34
	e_nodeState networkNodeState = d->NMTable[nodeId];
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    35
	return networkNodeState;
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    36
}
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    37
53
73bc47a0db55 Add prototypes
frdupin
parents: 0
diff changeset
    38
/*****************************************************************************/
0
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    39
// The Consumer Timer Callback
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    40
void ConsumerHearbeatAlarm(CO_Data* d, UNS32 id)
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    41
{
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    42
        //MSG_WAR(0x00, "ConsumerHearbeatAlarm", 0x00);
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    43
	
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    44
	// call heartbeat error with NodeId
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    45
	(*d->heartbeatError)((UNS8)( ((d->ConsumerHeartbeatEntries[id]) & (UNS32)0x00FF0000) >> (UNS8)16 ));
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    46
}
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    47
53
73bc47a0db55 Add prototypes
frdupin
parents: 0
diff changeset
    48
/*****************************************************************************/
0
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    49
void proceedNODE_GUARD(CO_Data* d, Message* m )
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    50
{
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    51
  UNS8 nodeId = (UNS8) GET_NODE_ID((*m));
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    52
  
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    53
  if((m->rtr == 1) ) /* Notice that only the master can have sent this node guarding request */
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    54
  { // Receiving a NMT NodeGuarding (request of the state by the master)
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    55
    //  only answer to the NMT NodeGuarding request, the master is not checked (not implemented)
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    56
    if (nodeId == *d->bDeviceNodeId )
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    57
    {
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    58
      Message msg;
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    59
      msg.cob_id.w = *d->bDeviceNodeId + 0x700;
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    60
      msg.len = (UNS8)0x01;
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    61
      msg.rtr = 0;
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    62
      msg.data[0] = d->nodeState; 
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    63
      if (d->toggle)
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    64
      {
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    65
        msg.data[0] |= 0x80 ;
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    66
        d->toggle = 0 ;
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    67
      }
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    68
      else
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    69
        d->toggle = 1 ; 
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    70
      // send the nodeguard response.
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    71
      MSG_WAR(0x3130, "Sending NMT Nodeguard to master, state: ", d->nodeState);
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    72
      (*d->canSend)(&msg );
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    73
    }  
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    74
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    75
  }else{ // Not a request CAN  
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    76
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    77
    MSG_WAR(0x3110, "Received NMT nodeId : ", nodeId);
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    78
    /* the slave's state receievd is stored in the NMTable */
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    79
      // The state is stored on 7 bit
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    80
    d->NMTable[nodeId] = (e_nodeState) ((*m).data[0] & 0x7F) ;
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    81
    
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    82
    /* Boot-Up frame reception */
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    83
    if ( d->NMTable[nodeId] == Initialisation)
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    84
      {
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    85
        // The device send the boot-up message (Initialisation)
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    86
        // to indicate the master that it is entered in pre_operational mode
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    87
        // Because the  device enter automaticaly in pre_operational mode,
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    88
        // the pre_operational mode is stored 
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    89
//        NMTable[bus_id][nodeId] = Pre_operational;
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    90
        MSG_WAR(0x3100, "The NMT is a bootup from node : ", nodeId);
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    91
      }
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    92
      
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    93
    if( d->NMTable[nodeId] != Unknown_state ) {
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    94
        UNS8 index, ConsummerHeartBeat_nodeId ;
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    95
        for( index = (UNS8)0x00; index < *d->ConsumerHeartbeatCount; index++ )
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    96
        {
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    97
            ConsummerHeartBeat_nodeId = (UNS8)( ((d->ConsumerHeartbeatEntries[index]) & (UNS32)0x00FF0000) >> (UNS8)16 );
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    98
            if ( nodeId == ConsummerHeartBeat_nodeId )
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    99
            {
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   100
                TIMEVAL time = ( (d->ConsumerHeartbeatEntries[index]) & (UNS32)0x0000FFFF ) ;
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   101
            	// Renew alarm for next heartbeat.
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   102
            	DelAlarm(d->ConsumerHeartBeatTimers[index]);
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   103
            	d->ConsumerHeartBeatTimers[index] = SetAlarm(d, index, &ConsumerHearbeatAlarm, MS_TO_TIMEVAL(time), 0);
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   104
            }
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   105
        }
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   106
    }
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   107
  }
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   108
}
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   109
53
73bc47a0db55 Add prototypes
frdupin
parents: 0
diff changeset
   110
/*****************************************************************************/
0
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   111
// The Consumer Timer Callback
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   112
void ProducerHearbeatAlarm(CO_Data* d, UNS32 id)
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   113
{
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   114
	if(*d->ProducerHeartBeatTime)
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   115
	{
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   116
		Message msg;
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   117
		// Time expired, the heartbeat must be sent immediately
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   118
		// generate the correct node-id: this is done by the offset 1792
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   119
		// (decimal) and additionaly
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   120
		// the node-id of this device.
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   121
		msg.cob_id.w = *d->bDeviceNodeId + 0x700;
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   122
		msg.len = (UNS8)0x01;
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   123
		msg.rtr = 0;
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   124
		msg.data[0] = d->nodeState; // No toggle for heartbeat !
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   125
		// send the heartbeat
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   126
      		MSG_WAR(0x3130, "Producing heartbeat: ", d->nodeState);
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   127
      		(*d->canSend)(&msg );
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   128
	}else{
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   129
		d->ProducerHeartBeatTimer = DelAlarm(d->ProducerHeartBeatTimer);
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
53
73bc47a0db55 Add prototypes
frdupin
parents: 0
diff changeset
   133
/*****************************************************************************/
0
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   134
void heartbeatInit(CO_Data* d)
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   135
{
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   136
    UNS8 index; // Index to scan the table of heartbeat consumers
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   137
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   138
    d->toggle = 0;
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   139
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   140
    for( index = (UNS8)0x00; index < *d->ConsumerHeartbeatCount; index++ )
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   141
    {
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   142
        TIMEVAL time = (UNS16) ( (d->ConsumerHeartbeatEntries[index]) & (UNS32)0x0000FFFF ) ;
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   143
        //MSG_WAR(0x3121, "should_time : ", should_time ) ;
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   144
        if ( time )
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   145
        {
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   146
            	d->ConsumerHeartBeatTimers[index] = SetAlarm(d, index, &ConsumerHearbeatAlarm, MS_TO_TIMEVAL(time), 0);
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   147
        }
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   148
    }
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   149
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   150
    if ( *d->ProducerHeartBeatTime )
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   151
    {
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   152
    	TIMEVAL time = *d->ProducerHeartBeatTime;
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   153
    	d->ProducerHeartBeatTimer = SetAlarm(d, 0, &ProducerHearbeatAlarm, MS_TO_TIMEVAL(time), MS_TO_TIMEVAL(time));
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   154
    }
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   155
}
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   156
53
73bc47a0db55 Add prototypes
frdupin
parents: 0
diff changeset
   157
/*****************************************************************************/
0
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   158
void heartbeatStop(CO_Data* d)
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   159
{
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   160
    UNS8 index;
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   161
    for( index = (UNS8)0x00; index < *d->ConsumerHeartbeatCount; index++ )
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   162
    {
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   163
        d->ConsumerHeartBeatTimers[index + 1] = DelAlarm(d->ConsumerHeartBeatTimers[index + 1]);;
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   164
    }
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   165
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   166
    d->ProducerHeartBeatTimer = DelAlarm(d->ProducerHeartBeatTimer);;
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   167
}
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   168