drivers/can_virtual/can_virtual.c
author fbeaulier
Tue, 16 Aug 2011 14:15:52 +0200
changeset 663 70fc3603e36f
parent 654 fc9af616633d
permissions -rw-r--r--
timers_unix.c : remove sigint and sigterm catch
sdo : Allow multiple servers
The sdo transfer struct is not anymore referenced by server's node id but by
client or server number in the OD. Node id is not relevant in SDO transfert.
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
/*
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    24
	Virtual CAN driver.
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    25
*/
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    26
145
e747d2e26af0 Win32 Native support and dynamicaly loaded CAN drivers for Linux, Cygwin and Win32.
etisserant
parents: 0
diff changeset
    27
#include <stdio.h>
e747d2e26af0 Win32 Native support and dynamicaly loaded CAN drivers for Linux, Cygwin and Win32.
etisserant
parents: 0
diff changeset
    28
#include <unistd.h>
0
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    29
301
f4b64aa848e1 more fancy print_message for debug
etisserant
parents: 193
diff changeset
    30
#define NEED_PRINT_MESSAGE
145
e747d2e26af0 Win32 Native support and dynamicaly loaded CAN drivers for Linux, Cygwin and Win32.
etisserant
parents: 0
diff changeset
    31
#include "can_driver.h"
157
8b45ff4202c3 Added cosmetics with Can_Virtual
etisserant
parents: 145
diff changeset
    32
#include "def.h"
0
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    33
145
e747d2e26af0 Win32 Native support and dynamicaly loaded CAN drivers for Linux, Cygwin and Win32.
etisserant
parents: 0
diff changeset
    34
#define MAX_NB_CAN_PIPES 16
0
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    35
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    36
typedef struct {
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    37
  char used;
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    38
  int pipe[2];
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    39
} CANPipe;
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    40
145
e747d2e26af0 Win32 Native support and dynamicaly loaded CAN drivers for Linux, Cygwin and Win32.
etisserant
parents: 0
diff changeset
    41
CANPipe canpipes[MAX_NB_CAN_PIPES] = {{0,},{0,},{0,},{0,},{0,},{0,},{0,},{0,},{0,},{0,},{0,},{0,},{0,},{0,},{0,},{0,},};
0
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    42
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    43
/*********functions which permit to communicate with the board****************/
145
e747d2e26af0 Win32 Native support and dynamicaly loaded CAN drivers for Linux, Cygwin and Win32.
etisserant
parents: 0
diff changeset
    44
UNS8 canReceive_driver(CAN_HANDLE fd0, Message *m)
0
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    45
{
193
0487270d441c Fixed problems in can_virtual, loop when closing pipes.
etisserant
parents: 157
diff changeset
    46
	if(read(((CANPipe*)fd0)->pipe[0], m, sizeof(Message)) != (ssize_t)sizeof(Message))
0
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    47
	{
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    48
		return 1;
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    49
	}
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    50
	return 0;
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    51
}
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    52
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    53
/***************************************************************************/
631
08b6b903f84a Piotr Trojanek (ptroja) cleanup patche. Thanks.
edouard
parents: 384
diff changeset
    54
UNS8 canSend_driver(CAN_HANDLE fd0, Message const *m)
0
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    55
{
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    56
  int i;
157
8b45ff4202c3 Added cosmetics with Can_Virtual
etisserant
parents: 145
diff changeset
    57
  
654
fc9af616633d FIXED: - compiler warning from printf format string
Christian Taedcke <hacking@taedcke.com>
parents: 631
diff changeset
    58
  printf("%lx->[ ", (CANPipe*)fd0 - &canpipes[0]); 
157
8b45ff4202c3 Added cosmetics with Can_Virtual
etisserant
parents: 145
diff changeset
    59
  for(i=0; i < MAX_NB_CAN_PIPES; i++)
8b45ff4202c3 Added cosmetics with Can_Virtual
etisserant
parents: 145
diff changeset
    60
  {
8b45ff4202c3 Added cosmetics with Can_Virtual
etisserant
parents: 145
diff changeset
    61
  	if(canpipes[i].used && &canpipes[i] != (CANPipe*)fd0)
8b45ff4202c3 Added cosmetics with Can_Virtual
etisserant
parents: 145
diff changeset
    62
  	{
8b45ff4202c3 Added cosmetics with Can_Virtual
etisserant
parents: 145
diff changeset
    63
		printf("%x ",i);	
8b45ff4202c3 Added cosmetics with Can_Virtual
etisserant
parents: 145
diff changeset
    64
  	}
8b45ff4202c3 Added cosmetics with Can_Virtual
etisserant
parents: 145
diff changeset
    65
  }
8b45ff4202c3 Added cosmetics with Can_Virtual
etisserant
parents: 145
diff changeset
    66
  printf(" ]");	
8b45ff4202c3 Added cosmetics with Can_Virtual
etisserant
parents: 145
diff changeset
    67
  print_message(m);
8b45ff4202c3 Added cosmetics with Can_Virtual
etisserant
parents: 145
diff changeset
    68
  
0
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    69
  // Send to all readers, except myself
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    70
  for(i=0; i < MAX_NB_CAN_PIPES; i++)
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    71
  {
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    72
  	if(canpipes[i].used && &canpipes[i] != (CANPipe*)fd0)
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    73
  	{
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    74
		write(canpipes[i].pipe[1], m, sizeof(Message));
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    75
  	}
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    76
  }
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    77
  return 0;
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    78
}
384
83793fc7ce48 added canChangeBaudRate to the driver interface
groke6
parents: 301
diff changeset
    79
83793fc7ce48 added canChangeBaudRate to the driver interface
groke6
parents: 301
diff changeset
    80
/***************************************************************************/
83793fc7ce48 added canChangeBaudRate to the driver interface
groke6
parents: 301
diff changeset
    81
int TranslateBaudRate(char* optarg){
83793fc7ce48 added canChangeBaudRate to the driver interface
groke6
parents: 301
diff changeset
    82
	if(!strcmp( optarg, "1M")) return (int)1000;
83793fc7ce48 added canChangeBaudRate to the driver interface
groke6
parents: 301
diff changeset
    83
	if(!strcmp( optarg, "500K")) return (int)500;
83793fc7ce48 added canChangeBaudRate to the driver interface
groke6
parents: 301
diff changeset
    84
	if(!strcmp( optarg, "250K")) return (int)250;
83793fc7ce48 added canChangeBaudRate to the driver interface
groke6
parents: 301
diff changeset
    85
	if(!strcmp( optarg, "125K")) return (int)125;
83793fc7ce48 added canChangeBaudRate to the driver interface
groke6
parents: 301
diff changeset
    86
	if(!strcmp( optarg, "100K")) return (int)100;
83793fc7ce48 added canChangeBaudRate to the driver interface
groke6
parents: 301
diff changeset
    87
	if(!strcmp( optarg, "50K")) return (int)50;
83793fc7ce48 added canChangeBaudRate to the driver interface
groke6
parents: 301
diff changeset
    88
	if(!strcmp( optarg, "20K")) return (int)20;
83793fc7ce48 added canChangeBaudRate to the driver interface
groke6
parents: 301
diff changeset
    89
	if(!strcmp( optarg, "10K")) return (int)10;
83793fc7ce48 added canChangeBaudRate to the driver interface
groke6
parents: 301
diff changeset
    90
	if(!strcmp( optarg, "5K")) return (int)5;
145
e747d2e26af0 Win32 Native support and dynamicaly loaded CAN drivers for Linux, Cygwin and Win32.
etisserant
parents: 0
diff changeset
    91
	if(!strcmp( optarg, "none")) return 0;
384
83793fc7ce48 added canChangeBaudRate to the driver interface
groke6
parents: 301
diff changeset
    92
	return 0x0000;
83793fc7ce48 added canChangeBaudRate to the driver interface
groke6
parents: 301
diff changeset
    93
}
83793fc7ce48 added canChangeBaudRate to the driver interface
groke6
parents: 301
diff changeset
    94
83793fc7ce48 added canChangeBaudRate to the driver interface
groke6
parents: 301
diff changeset
    95
UNS8 canChangeBaudRate_driver( CAN_HANDLE fd0, char* baud)
83793fc7ce48 added canChangeBaudRate to the driver interface
groke6
parents: 301
diff changeset
    96
{
654
fc9af616633d FIXED: - compiler warning from printf format string
Christian Taedcke <hacking@taedcke.com>
parents: 631
diff changeset
    97
    printf("%lx-> changing to baud rate %s[%d]\n", (CANPipe*)fd0 - &canpipes[0],baud,TranslateBaudRate(baud)); 
384
83793fc7ce48 added canChangeBaudRate to the driver interface
groke6
parents: 301
diff changeset
    98
    return 0;
83793fc7ce48 added canChangeBaudRate to the driver interface
groke6
parents: 301
diff changeset
    99
}
83793fc7ce48 added canChangeBaudRate to the driver interface
groke6
parents: 301
diff changeset
   100
0
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   101
/***************************************************************************/
145
e747d2e26af0 Win32 Native support and dynamicaly loaded CAN drivers for Linux, Cygwin and Win32.
etisserant
parents: 0
diff changeset
   102
CAN_HANDLE canOpen_driver(s_BOARD *board)
0
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   103
{
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   104
  int i;  
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   105
  for(i=0; i < MAX_NB_CAN_PIPES; i++)
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   106
  {
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   107
  	if(!canpipes[i].used)
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   108
	  	break;
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   109
  }
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   110
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   111
  /* Create the pipe.  */
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   112
  if (i==MAX_NB_CAN_PIPES || pipe(canpipes[i].pipe))
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   113
    {
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   114
      fprintf (stderr, "Open failed.\n");
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   115
      return (CAN_HANDLE)NULL;
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   116
    }
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   117
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   118
   canpipes[i].used = 1;
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   119
   return (CAN_HANDLE) &canpipes[i];
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   120
}
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   121
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   122
/***************************************************************************/
145
e747d2e26af0 Win32 Native support and dynamicaly loaded CAN drivers for Linux, Cygwin and Win32.
etisserant
parents: 0
diff changeset
   123
int canClose_driver(CAN_HANDLE fd0)
0
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   124
{
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   125
  close(((CANPipe*)fd0)->pipe[0]);
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   126
  close(((CANPipe*)fd0)->pipe[1]);
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   127
  ((CANPipe*)fd0)->used = 0;
145
e747d2e26af0 Win32 Native support and dynamicaly loaded CAN drivers for Linux, Cygwin and Win32.
etisserant
parents: 0
diff changeset
   128
  return 0;
0
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   129
}
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   130
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   131