examples/TestMasterSlave/TestMasterSlave.c
author etisserant
Mon, 02 Jul 2007 18:22:58 +0200
changeset 236 905677ed00f3
parent 194 90d740ff7c21
child 262 f1c892f3f93c
permissions -rw-r--r--
Full preliminary implementation of TPDO transmit type:
- SYNC (N) (1-240)
- RTR only + SYNC (252)
- RTR only (253)
- EVENT, with timer and inhibit time (254 and 255)

User app have to call sendPDOevent(d) to eventually signal mapped data changes.
Callbacks added to 0x140N, TPDO comm parameters for on the fly timers values change.
TestMasterSlave 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
145
e747d2e26af0 Win32 Native support and dynamicaly loaded CAN drivers for Linux, Cygwin and Win32.
etisserant
parents: 40
diff changeset
    23
#if defined(WIN32) && !defined(__CYGWIN__)
e747d2e26af0 Win32 Native support and dynamicaly loaded CAN drivers for Linux, Cygwin and Win32.
etisserant
parents: 40
diff changeset
    24
#include <windows.h>
e747d2e26af0 Win32 Native support and dynamicaly loaded CAN drivers for Linux, Cygwin and Win32.
etisserant
parents: 40
diff changeset
    25
#include "getopt.h"
e747d2e26af0 Win32 Native support and dynamicaly loaded CAN drivers for Linux, Cygwin and Win32.
etisserant
parents: 40
diff changeset
    26
void pause(void)
e747d2e26af0 Win32 Native support and dynamicaly loaded CAN drivers for Linux, Cygwin and Win32.
etisserant
parents: 40
diff changeset
    27
{
e747d2e26af0 Win32 Native support and dynamicaly loaded CAN drivers for Linux, Cygwin and Win32.
etisserant
parents: 40
diff changeset
    28
	system("PAUSE");
e747d2e26af0 Win32 Native support and dynamicaly loaded CAN drivers for Linux, Cygwin and Win32.
etisserant
parents: 40
diff changeset
    29
}
e747d2e26af0 Win32 Native support and dynamicaly loaded CAN drivers for Linux, Cygwin and Win32.
etisserant
parents: 40
diff changeset
    30
#else
0
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    31
#include <stdio.h>
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    32
#include <string.h>
169
90c0a676e631 Removed compilation warnings with some GCC. + Fixed test for baudrate = none
etisserant
parents: 161
diff changeset
    33
#include <unistd.h>
0
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    34
#include <stdlib.h>
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    35
#include <signal.h>
145
e747d2e26af0 Win32 Native support and dynamicaly loaded CAN drivers for Linux, Cygwin and Win32.
etisserant
parents: 40
diff changeset
    36
#endif
0
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    37
156
515d11cb496e Removed dead code.
etisserant
parents: 149
diff changeset
    38
#include "canfestival.h"
515d11cb496e Removed dead code.
etisserant
parents: 149
diff changeset
    39
//#include <can_driver.h>
515d11cb496e Removed dead code.
etisserant
parents: 149
diff changeset
    40
//#include <timers_driver.h>
0
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    41
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    42
#include "Master.h"
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    43
#include "Slave.h"
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    44
#include "TestMasterSlave.h"
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    45
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    46
UNS32 OnMasterMap1Update(CO_Data* d, const indextable * unsused_indextable, UNS8 unsused_bSubindex)
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    47
{
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    48
	eprintf("OnSlaveMap1Update:%d\n", SlaveMap1);
31
a82b70738e5c Code clean-up and fixed xenomai compile problem
lbessard
parents: 0
diff changeset
    49
	return 0;
0
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    50
}
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    51
179
763b6d32c1a6 Master configure slave's heartbeat producer time by concise DCF.
greg
parents: 172
diff changeset
    52
s_BOARD SlaveBoard = {"0", "125K"};
763b6d32c1a6 Master configure slave's heartbeat producer time by concise DCF.
greg
parents: 172
diff changeset
    53
s_BOARD MasterBoard = {"1", "125K"};
145
e747d2e26af0 Win32 Native support and dynamicaly loaded CAN drivers for Linux, Cygwin and Win32.
etisserant
parents: 40
diff changeset
    54
e747d2e26af0 Win32 Native support and dynamicaly loaded CAN drivers for Linux, Cygwin and Win32.
etisserant
parents: 40
diff changeset
    55
#if !defined(WIN32) || defined(__CYGWIN__)
0
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    56
void catch_signal(int sig)
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    57
{
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    58
  signal(SIGTERM, catch_signal);
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    59
  signal(SIGINT, catch_signal);
32
8afa33692372 SDO callbacks.
etisserant
parents: 31
diff changeset
    60
  eprintf("Got Signal %d\n",sig);
8afa33692372 SDO callbacks.
etisserant
parents: 31
diff changeset
    61
}
145
e747d2e26af0 Win32 Native support and dynamicaly loaded CAN drivers for Linux, Cygwin and Win32.
etisserant
parents: 40
diff changeset
    62
#endif
0
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    63
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    64
void help()
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    65
{
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    66
  printf("**************************************************************\n");
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    67
  printf("*  TestMasterSlave                                           *\n");
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    68
  printf("*                                                            *\n");
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    69
  printf("*  A simple example for PC. It does implement 2 CanOpen      *\n");
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    70
  printf("*  nodes in the same process. A master and a slave. Both     *\n");
36
ff3ba4a90548 Added bauderate/disable option to TestMasterSlave Master and Slave nodes.
etisserant
parents: 32
diff changeset
    71
  printf("*  communicate together, exchanging periodically NMT, SYNC,  *\n");
179
763b6d32c1a6 Master configure slave's heartbeat producer time by concise DCF.
greg
parents: 172
diff changeset
    72
  printf("*  SDO and PDO. Master configure heartbeat producer time     *\n");
763b6d32c1a6 Master configure slave's heartbeat producer time by concise DCF.
greg
parents: 172
diff changeset
    73
  printf("*  at 1000 ms for slave node-id 0x02 by concise DCF.         *\n");                                  
36
ff3ba4a90548 Added bauderate/disable option to TestMasterSlave Master and Slave nodes.
etisserant
parents: 32
diff changeset
    74
  printf("*                                                            *\n");
ff3ba4a90548 Added bauderate/disable option to TestMasterSlave Master and Slave nodes.
etisserant
parents: 32
diff changeset
    75
  printf("*   Usage:                                                   *\n");
ff3ba4a90548 Added bauderate/disable option to TestMasterSlave Master and Slave nodes.
etisserant
parents: 32
diff changeset
    76
  printf("*   ./TestMasterSlave  [OPTIONS]                             *\n");
ff3ba4a90548 Added bauderate/disable option to TestMasterSlave Master and Slave nodes.
etisserant
parents: 32
diff changeset
    77
  printf("*                                                            *\n");
ff3ba4a90548 Added bauderate/disable option to TestMasterSlave Master and Slave nodes.
etisserant
parents: 32
diff changeset
    78
  printf("*   OPTIONS:                                                 *\n");
145
e747d2e26af0 Win32 Native support and dynamicaly loaded CAN drivers for Linux, Cygwin and Win32.
etisserant
parents: 40
diff changeset
    79
  printf("*     -l : Can library [\"libcanfestival_can_virtual.so\"]     *\n");
e747d2e26af0 Win32 Native support and dynamicaly loaded CAN drivers for Linux, Cygwin and Win32.
etisserant
parents: 40
diff changeset
    80
  printf("*                                                            *\n");
36
ff3ba4a90548 Added bauderate/disable option to TestMasterSlave Master and Slave nodes.
etisserant
parents: 32
diff changeset
    81
  printf("*    Slave:                                                  *\n");
ff3ba4a90548 Added bauderate/disable option to TestMasterSlave Master and Slave nodes.
etisserant
parents: 32
diff changeset
    82
  printf("*     -s : bus name [\"0\"]                                    *\n");
ff3ba4a90548 Added bauderate/disable option to TestMasterSlave Master and Slave nodes.
etisserant
parents: 32
diff changeset
    83
  printf("*     -S : 1M,500K,250K,125K,100K,50K,20K,10K,none(disable)  *\n");
ff3ba4a90548 Added bauderate/disable option to TestMasterSlave Master and Slave nodes.
etisserant
parents: 32
diff changeset
    84
  printf("*                                                            *\n");
ff3ba4a90548 Added bauderate/disable option to TestMasterSlave Master and Slave nodes.
etisserant
parents: 32
diff changeset
    85
  printf("*    Master:                                                 *\n");
ff3ba4a90548 Added bauderate/disable option to TestMasterSlave Master and Slave nodes.
etisserant
parents: 32
diff changeset
    86
  printf("*     -m : bus name [\"1\"]                                    *\n");
ff3ba4a90548 Added bauderate/disable option to TestMasterSlave Master and Slave nodes.
etisserant
parents: 32
diff changeset
    87
  printf("*     -M : 1M,500K,250K,125K,100K,50K,20K,10K,none(disable)  *\n");
0
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    88
  printf("*                                                            *\n");
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    89
  printf("**************************************************************\n");
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    90
}
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    91
36
ff3ba4a90548 Added bauderate/disable option to TestMasterSlave Master and Slave nodes.
etisserant
parents: 32
diff changeset
    92
/***************************  INIT  *****************************************/
ff3ba4a90548 Added bauderate/disable option to TestMasterSlave Master and Slave nodes.
etisserant
parents: 32
diff changeset
    93
void InitNodes(CO_Data* d, UNS32 id)
ff3ba4a90548 Added bauderate/disable option to TestMasterSlave Master and Slave nodes.
etisserant
parents: 32
diff changeset
    94
{
ff3ba4a90548 Added bauderate/disable option to TestMasterSlave Master and Slave nodes.
etisserant
parents: 32
diff changeset
    95
	/****************************** INITIALISATION SLAVE *******************************/
179
763b6d32c1a6 Master configure slave's heartbeat producer time by concise DCF.
greg
parents: 172
diff changeset
    96
	if(strcmp(SlaveBoard.baudrate, "none")) {
36
ff3ba4a90548 Added bauderate/disable option to TestMasterSlave Master and Slave nodes.
etisserant
parents: 32
diff changeset
    97
		/* Defining the node Id */
ff3ba4a90548 Added bauderate/disable option to TestMasterSlave Master and Slave nodes.
etisserant
parents: 32
diff changeset
    98
		setNodeId(&TestSlave_Data, 0x02);
ff3ba4a90548 Added bauderate/disable option to TestMasterSlave Master and Slave nodes.
etisserant
parents: 32
diff changeset
    99
		/* init */
ff3ba4a90548 Added bauderate/disable option to TestMasterSlave Master and Slave nodes.
etisserant
parents: 32
diff changeset
   100
		setState(&TestSlave_Data, Initialisation);
ff3ba4a90548 Added bauderate/disable option to TestMasterSlave Master and Slave nodes.
etisserant
parents: 32
diff changeset
   101
	}
ff3ba4a90548 Added bauderate/disable option to TestMasterSlave Master and Slave nodes.
etisserant
parents: 32
diff changeset
   102
ff3ba4a90548 Added bauderate/disable option to TestMasterSlave Master and Slave nodes.
etisserant
parents: 32
diff changeset
   103
	/****************************** INITIALISATION MASTER *******************************/
179
763b6d32c1a6 Master configure slave's heartbeat producer time by concise DCF.
greg
parents: 172
diff changeset
   104
	if(strcmp(MasterBoard.baudrate, "none")){
36
ff3ba4a90548 Added bauderate/disable option to TestMasterSlave Master and Slave nodes.
etisserant
parents: 32
diff changeset
   105
 		RegisterSetODentryCallBack(&TestMaster_Data, 0x2000, 0, &OnMasterMap1Update);
179
763b6d32c1a6 Master configure slave's heartbeat producer time by concise DCF.
greg
parents: 172
diff changeset
   106
		
36
ff3ba4a90548 Added bauderate/disable option to TestMasterSlave Master and Slave nodes.
etisserant
parents: 32
diff changeset
   107
		/* Defining the node Id */
ff3ba4a90548 Added bauderate/disable option to TestMasterSlave Master and Slave nodes.
etisserant
parents: 32
diff changeset
   108
		setNodeId(&TestMaster_Data, 0x01);
ff3ba4a90548 Added bauderate/disable option to TestMasterSlave Master and Slave nodes.
etisserant
parents: 32
diff changeset
   109
ff3ba4a90548 Added bauderate/disable option to TestMasterSlave Master and Slave nodes.
etisserant
parents: 32
diff changeset
   110
		/* init */
ff3ba4a90548 Added bauderate/disable option to TestMasterSlave Master and Slave nodes.
etisserant
parents: 32
diff changeset
   111
		setState(&TestMaster_Data, Initialisation);
179
763b6d32c1a6 Master configure slave's heartbeat producer time by concise DCF.
greg
parents: 172
diff changeset
   112
			
36
ff3ba4a90548 Added bauderate/disable option to TestMasterSlave Master and Slave nodes.
etisserant
parents: 32
diff changeset
   113
	}
ff3ba4a90548 Added bauderate/disable option to TestMasterSlave Master and Slave nodes.
etisserant
parents: 32
diff changeset
   114
}
ff3ba4a90548 Added bauderate/disable option to TestMasterSlave Master and Slave nodes.
etisserant
parents: 32
diff changeset
   115
0
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   116
/****************************************************************************/
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   117
/***************************  MAIN  *****************************************/
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   118
/****************************************************************************/
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   119
int main(int argc,char **argv)
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   120
{
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   121
191
1e6e3d261b8f CleanUp and minor fixes
etisserant
parents: 179
diff changeset
   122
  int c;
0
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   123
  extern char *optarg;
145
e747d2e26af0 Win32 Native support and dynamicaly loaded CAN drivers for Linux, Cygwin and Win32.
etisserant
parents: 40
diff changeset
   124
  char* LibraryPath="libcanfestival_can_virtual.so";
e747d2e26af0 Win32 Native support and dynamicaly loaded CAN drivers for Linux, Cygwin and Win32.
etisserant
parents: 40
diff changeset
   125
e747d2e26af0 Win32 Native support and dynamicaly loaded CAN drivers for Linux, Cygwin and Win32.
etisserant
parents: 40
diff changeset
   126
  while ((c = getopt(argc, argv, "-m:s:M:S:l:")) != EOF)
0
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   127
  {
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   128
    switch(c)
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   129
    {
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   130
      case 's' :
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   131
        if (optarg[0] == 0)
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   132
        {
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   133
          help();
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   134
          exit(1);
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   135
        }
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   136
        SlaveBoard.busname = optarg;
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   137
        break;
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   138
      case 'm' :
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   139
        if (optarg[0] == 0)
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   140
        {
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   141
          help();
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   142
          exit(1);
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   143
        }
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   144
        MasterBoard.busname = optarg;
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   145
        break;
36
ff3ba4a90548 Added bauderate/disable option to TestMasterSlave Master and Slave nodes.
etisserant
parents: 32
diff changeset
   146
      case 'S' :
ff3ba4a90548 Added bauderate/disable option to TestMasterSlave Master and Slave nodes.
etisserant
parents: 32
diff changeset
   147
        if (optarg[0] == 0)
ff3ba4a90548 Added bauderate/disable option to TestMasterSlave Master and Slave nodes.
etisserant
parents: 32
diff changeset
   148
        {
ff3ba4a90548 Added bauderate/disable option to TestMasterSlave Master and Slave nodes.
etisserant
parents: 32
diff changeset
   149
          help();
ff3ba4a90548 Added bauderate/disable option to TestMasterSlave Master and Slave nodes.
etisserant
parents: 32
diff changeset
   150
          exit(1);
ff3ba4a90548 Added bauderate/disable option to TestMasterSlave Master and Slave nodes.
etisserant
parents: 32
diff changeset
   151
        }
145
e747d2e26af0 Win32 Native support and dynamicaly loaded CAN drivers for Linux, Cygwin and Win32.
etisserant
parents: 40
diff changeset
   152
        SlaveBoard.baudrate = optarg;
36
ff3ba4a90548 Added bauderate/disable option to TestMasterSlave Master and Slave nodes.
etisserant
parents: 32
diff changeset
   153
        break;
ff3ba4a90548 Added bauderate/disable option to TestMasterSlave Master and Slave nodes.
etisserant
parents: 32
diff changeset
   154
      case 'M' :
ff3ba4a90548 Added bauderate/disable option to TestMasterSlave Master and Slave nodes.
etisserant
parents: 32
diff changeset
   155
        if (optarg[0] == 0)
ff3ba4a90548 Added bauderate/disable option to TestMasterSlave Master and Slave nodes.
etisserant
parents: 32
diff changeset
   156
        {
ff3ba4a90548 Added bauderate/disable option to TestMasterSlave Master and Slave nodes.
etisserant
parents: 32
diff changeset
   157
          help();
ff3ba4a90548 Added bauderate/disable option to TestMasterSlave Master and Slave nodes.
etisserant
parents: 32
diff changeset
   158
          exit(1);
ff3ba4a90548 Added bauderate/disable option to TestMasterSlave Master and Slave nodes.
etisserant
parents: 32
diff changeset
   159
        }
145
e747d2e26af0 Win32 Native support and dynamicaly loaded CAN drivers for Linux, Cygwin and Win32.
etisserant
parents: 40
diff changeset
   160
        MasterBoard.baudrate = optarg;
e747d2e26af0 Win32 Native support and dynamicaly loaded CAN drivers for Linux, Cygwin and Win32.
etisserant
parents: 40
diff changeset
   161
        break;
e747d2e26af0 Win32 Native support and dynamicaly loaded CAN drivers for Linux, Cygwin and Win32.
etisserant
parents: 40
diff changeset
   162
      case 'l' :
e747d2e26af0 Win32 Native support and dynamicaly loaded CAN drivers for Linux, Cygwin and Win32.
etisserant
parents: 40
diff changeset
   163
        if (optarg[0] == 0)
e747d2e26af0 Win32 Native support and dynamicaly loaded CAN drivers for Linux, Cygwin and Win32.
etisserant
parents: 40
diff changeset
   164
        {
e747d2e26af0 Win32 Native support and dynamicaly loaded CAN drivers for Linux, Cygwin and Win32.
etisserant
parents: 40
diff changeset
   165
          help();
e747d2e26af0 Win32 Native support and dynamicaly loaded CAN drivers for Linux, Cygwin and Win32.
etisserant
parents: 40
diff changeset
   166
          exit(1);
e747d2e26af0 Win32 Native support and dynamicaly loaded CAN drivers for Linux, Cygwin and Win32.
etisserant
parents: 40
diff changeset
   167
        }
e747d2e26af0 Win32 Native support and dynamicaly loaded CAN drivers for Linux, Cygwin and Win32.
etisserant
parents: 40
diff changeset
   168
        LibraryPath = optarg;
36
ff3ba4a90548 Added bauderate/disable option to TestMasterSlave Master and Slave nodes.
etisserant
parents: 32
diff changeset
   169
        break;
0
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   170
      default:
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   171
        help();
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   172
        exit(1);
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   173
    }
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   174
  }
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   175
145
e747d2e26af0 Win32 Native support and dynamicaly loaded CAN drivers for Linux, Cygwin and Win32.
etisserant
parents: 40
diff changeset
   176
#if !defined(WIN32) || defined(__CYGWIN__)
e747d2e26af0 Win32 Native support and dynamicaly loaded CAN drivers for Linux, Cygwin and Win32.
etisserant
parents: 40
diff changeset
   177
  /* install signal handler for manual break */
0
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   178
	signal(SIGTERM, catch_signal);
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   179
	signal(SIGINT, catch_signal);
145
e747d2e26af0 Win32 Native support and dynamicaly loaded CAN drivers for Linux, Cygwin and Win32.
etisserant
parents: 40
diff changeset
   180
#endif
e747d2e26af0 Win32 Native support and dynamicaly loaded CAN drivers for Linux, Cygwin and Win32.
etisserant
parents: 40
diff changeset
   181
e747d2e26af0 Win32 Native support and dynamicaly loaded CAN drivers for Linux, Cygwin and Win32.
etisserant
parents: 40
diff changeset
   182
#ifndef NOT_USE_DYNAMIC_LOADING
e747d2e26af0 Win32 Native support and dynamicaly loaded CAN drivers for Linux, Cygwin and Win32.
etisserant
parents: 40
diff changeset
   183
	LoadCanDriver(LibraryPath);
e747d2e26af0 Win32 Native support and dynamicaly loaded CAN drivers for Linux, Cygwin and Win32.
etisserant
parents: 40
diff changeset
   184
#endif		
0
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   185
	// Open CAN devices
179
763b6d32c1a6 Master configure slave's heartbeat producer time by concise DCF.
greg
parents: 172
diff changeset
   186
763b6d32c1a6 Master configure slave's heartbeat producer time by concise DCF.
greg
parents: 172
diff changeset
   187
	if(strcmp(SlaveBoard.baudrate, "none")){
149
fe50ada8020b Changes in the API:
etisserant
parents: 145
diff changeset
   188
		
fe50ada8020b Changes in the API:
etisserant
parents: 145
diff changeset
   189
		TestSlave_Data.heartbeatError = TestSlave_heartbeatError;
fe50ada8020b Changes in the API:
etisserant
parents: 145
diff changeset
   190
		TestSlave_Data.initialisation = TestSlave_initialisation;
fe50ada8020b Changes in the API:
etisserant
parents: 145
diff changeset
   191
		TestSlave_Data.preOperational = TestSlave_preOperational;
fe50ada8020b Changes in the API:
etisserant
parents: 145
diff changeset
   192
		TestSlave_Data.operational = TestSlave_operational;
fe50ada8020b Changes in the API:
etisserant
parents: 145
diff changeset
   193
		TestSlave_Data.stopped = TestSlave_stopped;
fe50ada8020b Changes in the API:
etisserant
parents: 145
diff changeset
   194
		TestSlave_Data.post_sync = TestSlave_post_sync;
fe50ada8020b Changes in the API:
etisserant
parents: 145
diff changeset
   195
		TestSlave_Data.post_TPDO = TestSlave_post_TPDO;
161
c4908cc776a9 SetODEntry now call CO_data->storeODSubEntry(Index,SubIndex) for variables to be Stored (when column Save==True in GUI)
etisserant
parents: 156
diff changeset
   196
		TestSlave_Data.storeODSubIndex = TestSlave_storeODSubIndex;		
149
fe50ada8020b Changes in the API:
etisserant
parents: 145
diff changeset
   197
fe50ada8020b Changes in the API:
etisserant
parents: 145
diff changeset
   198
		if(!canOpen(&SlaveBoard,&TestSlave_Data)){
145
e747d2e26af0 Win32 Native support and dynamicaly loaded CAN drivers for Linux, Cygwin and Win32.
etisserant
parents: 40
diff changeset
   199
			eprintf("Cannot open Slave Board (%s,%s)\n",SlaveBoard.busname, SlaveBoard.baudrate);
e747d2e26af0 Win32 Native support and dynamicaly loaded CAN drivers for Linux, Cygwin and Win32.
etisserant
parents: 40
diff changeset
   200
			goto fail_slave;
e747d2e26af0 Win32 Native support and dynamicaly loaded CAN drivers for Linux, Cygwin and Win32.
etisserant
parents: 40
diff changeset
   201
		}
e747d2e26af0 Win32 Native support and dynamicaly loaded CAN drivers for Linux, Cygwin and Win32.
etisserant
parents: 40
diff changeset
   202
	}
179
763b6d32c1a6 Master configure slave's heartbeat producer time by concise DCF.
greg
parents: 172
diff changeset
   203
	if(strcmp(MasterBoard.baudrate, "none")){
149
fe50ada8020b Changes in the API:
etisserant
parents: 145
diff changeset
   204
		
fe50ada8020b Changes in the API:
etisserant
parents: 145
diff changeset
   205
		TestMaster_Data.heartbeatError = TestMaster_heartbeatError;
fe50ada8020b Changes in the API:
etisserant
parents: 145
diff changeset
   206
		TestMaster_Data.initialisation = TestMaster_initialisation;
fe50ada8020b Changes in the API:
etisserant
parents: 145
diff changeset
   207
		TestMaster_Data.preOperational = TestMaster_preOperational;
fe50ada8020b Changes in the API:
etisserant
parents: 145
diff changeset
   208
		TestMaster_Data.operational = TestMaster_operational;
fe50ada8020b Changes in the API:
etisserant
parents: 145
diff changeset
   209
		TestMaster_Data.stopped = TestMaster_stopped;
fe50ada8020b Changes in the API:
etisserant
parents: 145
diff changeset
   210
		TestMaster_Data.post_sync = TestMaster_post_sync;
fe50ada8020b Changes in the API:
etisserant
parents: 145
diff changeset
   211
		TestMaster_Data.post_TPDO = TestMaster_post_TPDO;
fe50ada8020b Changes in the API:
etisserant
parents: 145
diff changeset
   212
		
fe50ada8020b Changes in the API:
etisserant
parents: 145
diff changeset
   213
		if(!canOpen(&MasterBoard,&TestMaster_Data)){
179
763b6d32c1a6 Master configure slave's heartbeat producer time by concise DCF.
greg
parents: 172
diff changeset
   214
			eprintf("Cannot open Master Board (%s,%s)\n",MasterBoard.busname, MasterBoard.baudrate);
145
e747d2e26af0 Win32 Native support and dynamicaly loaded CAN drivers for Linux, Cygwin and Win32.
etisserant
parents: 40
diff changeset
   215
			goto fail_master;
e747d2e26af0 Win32 Native support and dynamicaly loaded CAN drivers for Linux, Cygwin and Win32.
etisserant
parents: 40
diff changeset
   216
		}
e747d2e26af0 Win32 Native support and dynamicaly loaded CAN drivers for Linux, Cygwin and Win32.
etisserant
parents: 40
diff changeset
   217
	}
194
90d740ff7c21 Removed dummy sleep.
etisserant
parents: 191
diff changeset
   218
32
8afa33692372 SDO callbacks.
etisserant
parents: 31
diff changeset
   219
	// Start timer thread
8afa33692372 SDO callbacks.
etisserant
parents: 31
diff changeset
   220
	StartTimerLoop(&InitNodes);
8afa33692372 SDO callbacks.
etisserant
parents: 31
diff changeset
   221
8afa33692372 SDO callbacks.
etisserant
parents: 31
diff changeset
   222
	// wait Ctrl-C
179
763b6d32c1a6 Master configure slave's heartbeat producer time by concise DCF.
greg
parents: 172
diff changeset
   223
	
32
8afa33692372 SDO callbacks.
etisserant
parents: 31
diff changeset
   224
	pause();
8afa33692372 SDO callbacks.
etisserant
parents: 31
diff changeset
   225
	eprintf("Finishing.\n");
8afa33692372 SDO callbacks.
etisserant
parents: 31
diff changeset
   226
	
179
763b6d32c1a6 Master configure slave's heartbeat producer time by concise DCF.
greg
parents: 172
diff changeset
   227
	masterSendNMTstateChange (&TestMaster_Data, 0x02, NMT_Reset_Node);
763b6d32c1a6 Master configure slave's heartbeat producer time by concise DCF.
greg
parents: 172
diff changeset
   228
	eprintf("reset\n");
763b6d32c1a6 Master configure slave's heartbeat producer time by concise DCF.
greg
parents: 172
diff changeset
   229
	// Stop master
763b6d32c1a6 Master configure slave's heartbeat producer time by concise DCF.
greg
parents: 172
diff changeset
   230
	setState(&TestMaster_Data, Stopped);
763b6d32c1a6 Master configure slave's heartbeat producer time by concise DCF.
greg
parents: 172
diff changeset
   231
	
32
8afa33692372 SDO callbacks.
etisserant
parents: 31
diff changeset
   232
	// Stop timer thread
8afa33692372 SDO callbacks.
etisserant
parents: 31
diff changeset
   233
	StopTimerLoop();
8afa33692372 SDO callbacks.
etisserant
parents: 31
diff changeset
   234
	
8afa33692372 SDO callbacks.
etisserant
parents: 31
diff changeset
   235
	// Close CAN devices (and can threads)
179
763b6d32c1a6 Master configure slave's heartbeat producer time by concise DCF.
greg
parents: 172
diff changeset
   236
	if(strcmp(SlaveBoard.baudrate, "none")) canClose(&TestSlave_Data);
36
ff3ba4a90548 Added bauderate/disable option to TestMasterSlave Master and Slave nodes.
etisserant
parents: 32
diff changeset
   237
fail_master:
179
763b6d32c1a6 Master configure slave's heartbeat producer time by concise DCF.
greg
parents: 172
diff changeset
   238
	if(strcmp(MasterBoard.baudrate, "none")) canClose(&TestMaster_Data);	
36
ff3ba4a90548 Added bauderate/disable option to TestMasterSlave Master and Slave nodes.
etisserant
parents: 32
diff changeset
   239
fail_slave:
179
763b6d32c1a6 Master configure slave's heartbeat producer time by concise DCF.
greg
parents: 172
diff changeset
   240
	return 0;
763b6d32c1a6 Master configure slave's heartbeat producer time by concise DCF.
greg
parents: 172
diff changeset
   241
}