author | greg |
Wed, 16 Sep 2009 15:16:19 +0200 | |
changeset 588 | ee181b4f177b |
parent 454 | bc000083297a |
child 596 | cb69a65bb88d |
permissions | -rw-r--r-- |
47
8a1047ab51f4
SOCKET-CAN support added. Many thanks to Jan Kiszka !
etisserant
parents:
diff
changeset
|
1 |
/* |
8a1047ab51f4
SOCKET-CAN support added. Many thanks to Jan Kiszka !
etisserant
parents:
diff
changeset
|
2 |
This file is part of CanFestival, a library implementing CanOpen Stack. |
8a1047ab51f4
SOCKET-CAN support added. Many thanks to Jan Kiszka !
etisserant
parents:
diff
changeset
|
3 |
|
8a1047ab51f4
SOCKET-CAN support added. Many thanks to Jan Kiszka !
etisserant
parents:
diff
changeset
|
4 |
Copyright (C): Edouard TISSERANT and Francis DUPIN |
8a1047ab51f4
SOCKET-CAN support added. Many thanks to Jan Kiszka !
etisserant
parents:
diff
changeset
|
5 |
|
8a1047ab51f4
SOCKET-CAN support added. Many thanks to Jan Kiszka !
etisserant
parents:
diff
changeset
|
6 |
See COPYING file for copyrights details. |
8a1047ab51f4
SOCKET-CAN support added. Many thanks to Jan Kiszka !
etisserant
parents:
diff
changeset
|
7 |
|
8a1047ab51f4
SOCKET-CAN support added. Many thanks to Jan Kiszka !
etisserant
parents:
diff
changeset
|
8 |
This library is free software; you can redistribute it and/or |
8a1047ab51f4
SOCKET-CAN support added. Many thanks to Jan Kiszka !
etisserant
parents:
diff
changeset
|
9 |
modify it under the terms of the GNU Lesser General Public |
8a1047ab51f4
SOCKET-CAN support added. Many thanks to Jan Kiszka !
etisserant
parents:
diff
changeset
|
10 |
License as published by the Free Software Foundation; either |
8a1047ab51f4
SOCKET-CAN support added. Many thanks to Jan Kiszka !
etisserant
parents:
diff
changeset
|
11 |
version 2.1 of the License, or (at your option) any later version. |
8a1047ab51f4
SOCKET-CAN support added. Many thanks to Jan Kiszka !
etisserant
parents:
diff
changeset
|
12 |
|
8a1047ab51f4
SOCKET-CAN support added. Many thanks to Jan Kiszka !
etisserant
parents:
diff
changeset
|
13 |
This library is distributed in the hope that it will be useful, |
8a1047ab51f4
SOCKET-CAN support added. Many thanks to Jan Kiszka !
etisserant
parents:
diff
changeset
|
14 |
but WITHOUT ANY WARRANTY; without even the implied warranty of |
8a1047ab51f4
SOCKET-CAN support added. Many thanks to Jan Kiszka !
etisserant
parents:
diff
changeset
|
15 |
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
8a1047ab51f4
SOCKET-CAN support added. Many thanks to Jan Kiszka !
etisserant
parents:
diff
changeset
|
16 |
Lesser General Public License for more details. |
8a1047ab51f4
SOCKET-CAN support added. Many thanks to Jan Kiszka !
etisserant
parents:
diff
changeset
|
17 |
|
8a1047ab51f4
SOCKET-CAN support added. Many thanks to Jan Kiszka !
etisserant
parents:
diff
changeset
|
18 |
You should have received a copy of the GNU Lesser General Public |
8a1047ab51f4
SOCKET-CAN support added. Many thanks to Jan Kiszka !
etisserant
parents:
diff
changeset
|
19 |
License along with this library; if not, write to the Free Software |
8a1047ab51f4
SOCKET-CAN support added. Many thanks to Jan Kiszka !
etisserant
parents:
diff
changeset
|
20 |
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA |
8a1047ab51f4
SOCKET-CAN support added. Many thanks to Jan Kiszka !
etisserant
parents:
diff
changeset
|
21 |
*/ |
8a1047ab51f4
SOCKET-CAN support added. Many thanks to Jan Kiszka !
etisserant
parents:
diff
changeset
|
22 |
|
8a1047ab51f4
SOCKET-CAN support added. Many thanks to Jan Kiszka !
etisserant
parents:
diff
changeset
|
23 |
#include <stdio.h> |
8a1047ab51f4
SOCKET-CAN support added. Many thanks to Jan Kiszka !
etisserant
parents:
diff
changeset
|
24 |
#include <string.h> |
8a1047ab51f4
SOCKET-CAN support added. Many thanks to Jan Kiszka !
etisserant
parents:
diff
changeset
|
25 |
#include <stdlib.h> |
196
65aa7a664f6f
Applied wolfgang changes, and re-indented socket_can.c file
etisserant
parents:
192
diff
changeset
|
26 |
#include <stddef.h> /* for NULL */ |
192 | 27 |
#include <errno.h> |
47
8a1047ab51f4
SOCKET-CAN support added. Many thanks to Jan Kiszka !
etisserant
parents:
diff
changeset
|
28 |
|
8a1047ab51f4
SOCKET-CAN support added. Many thanks to Jan Kiszka !
etisserant
parents:
diff
changeset
|
29 |
#include "config.h" |
8a1047ab51f4
SOCKET-CAN support added. Many thanks to Jan Kiszka !
etisserant
parents:
diff
changeset
|
30 |
|
8a1047ab51f4
SOCKET-CAN support added. Many thanks to Jan Kiszka !
etisserant
parents:
diff
changeset
|
31 |
#ifdef RTCAN_SOCKET |
8a1047ab51f4
SOCKET-CAN support added. Many thanks to Jan Kiszka !
etisserant
parents:
diff
changeset
|
32 |
#include "rtdm/rtcan.h" |
8a1047ab51f4
SOCKET-CAN support added. Many thanks to Jan Kiszka !
etisserant
parents:
diff
changeset
|
33 |
#define CAN_IFNAME "rtcan%s" |
8a1047ab51f4
SOCKET-CAN support added. Many thanks to Jan Kiszka !
etisserant
parents:
diff
changeset
|
34 |
#define CAN_SOCKET rt_dev_socket |
8a1047ab51f4
SOCKET-CAN support added. Many thanks to Jan Kiszka !
etisserant
parents:
diff
changeset
|
35 |
#define CAN_CLOSE rt_dev_close |
8a1047ab51f4
SOCKET-CAN support added. Many thanks to Jan Kiszka !
etisserant
parents:
diff
changeset
|
36 |
#define CAN_RECV rt_dev_recv |
8a1047ab51f4
SOCKET-CAN support added. Many thanks to Jan Kiszka !
etisserant
parents:
diff
changeset
|
37 |
#define CAN_SEND rt_dev_send |
8a1047ab51f4
SOCKET-CAN support added. Many thanks to Jan Kiszka !
etisserant
parents:
diff
changeset
|
38 |
#define CAN_BIND rt_dev_bind |
8a1047ab51f4
SOCKET-CAN support added. Many thanks to Jan Kiszka !
etisserant
parents:
diff
changeset
|
39 |
#define CAN_IOCTL rt_dev_ioctl |
196
65aa7a664f6f
Applied wolfgang changes, and re-indented socket_can.c file
etisserant
parents:
192
diff
changeset
|
40 |
#define CAN_ERRNO(err) (-err) |
47
8a1047ab51f4
SOCKET-CAN support added. Many thanks to Jan Kiszka !
etisserant
parents:
diff
changeset
|
41 |
#else |
187 | 42 |
#include <sys/socket.h> |
43 |
#include <sys/ioctl.h> |
|
44 |
#include "linux/can.h" |
|
45 |
#include "linux/can/raw.h" |
|
46 |
#include "net/if.h" |
|
47 |
#define PF_CAN 29 |
|
48 |
#define AF_CAN PF_CAN |
|
49 |
//#include "af_can.h" |
|
47
8a1047ab51f4
SOCKET-CAN support added. Many thanks to Jan Kiszka !
etisserant
parents:
diff
changeset
|
50 |
#define CAN_IFNAME "can%s" |
8a1047ab51f4
SOCKET-CAN support added. Many thanks to Jan Kiszka !
etisserant
parents:
diff
changeset
|
51 |
#define CAN_SOCKET socket |
8a1047ab51f4
SOCKET-CAN support added. Many thanks to Jan Kiszka !
etisserant
parents:
diff
changeset
|
52 |
#define CAN_CLOSE close |
8a1047ab51f4
SOCKET-CAN support added. Many thanks to Jan Kiszka !
etisserant
parents:
diff
changeset
|
53 |
#define CAN_RECV recv |
8a1047ab51f4
SOCKET-CAN support added. Many thanks to Jan Kiszka !
etisserant
parents:
diff
changeset
|
54 |
#define CAN_SEND send |
8a1047ab51f4
SOCKET-CAN support added. Many thanks to Jan Kiszka !
etisserant
parents:
diff
changeset
|
55 |
#define CAN_BIND bind |
8a1047ab51f4
SOCKET-CAN support added. Many thanks to Jan Kiszka !
etisserant
parents:
diff
changeset
|
56 |
#define CAN_IOCTL ioctl |
196
65aa7a664f6f
Applied wolfgang changes, and re-indented socket_can.c file
etisserant
parents:
192
diff
changeset
|
57 |
#define CAN_ERRNO(err) errno |
47
8a1047ab51f4
SOCKET-CAN support added. Many thanks to Jan Kiszka !
etisserant
parents:
diff
changeset
|
58 |
#endif |
8a1047ab51f4
SOCKET-CAN support added. Many thanks to Jan Kiszka !
etisserant
parents:
diff
changeset
|
59 |
|
8a1047ab51f4
SOCKET-CAN support added. Many thanks to Jan Kiszka !
etisserant
parents:
diff
changeset
|
60 |
#include "can_driver.h" |
8a1047ab51f4
SOCKET-CAN support added. Many thanks to Jan Kiszka !
etisserant
parents:
diff
changeset
|
61 |
|
8a1047ab51f4
SOCKET-CAN support added. Many thanks to Jan Kiszka !
etisserant
parents:
diff
changeset
|
62 |
/*********functions which permit to communicate with the board****************/ |
196
65aa7a664f6f
Applied wolfgang changes, and re-indented socket_can.c file
etisserant
parents:
192
diff
changeset
|
63 |
UNS8 |
65aa7a664f6f
Applied wolfgang changes, and re-indented socket_can.c file
etisserant
parents:
192
diff
changeset
|
64 |
canReceive_driver (CAN_HANDLE fd0, Message * m) |
65aa7a664f6f
Applied wolfgang changes, and re-indented socket_can.c file
etisserant
parents:
192
diff
changeset
|
65 |
{ |
65aa7a664f6f
Applied wolfgang changes, and re-indented socket_can.c file
etisserant
parents:
192
diff
changeset
|
66 |
int res; |
65aa7a664f6f
Applied wolfgang changes, and re-indented socket_can.c file
etisserant
parents:
192
diff
changeset
|
67 |
struct can_frame frame; |
65aa7a664f6f
Applied wolfgang changes, and re-indented socket_can.c file
etisserant
parents:
192
diff
changeset
|
68 |
|
65aa7a664f6f
Applied wolfgang changes, and re-indented socket_can.c file
etisserant
parents:
192
diff
changeset
|
69 |
res = CAN_RECV (*(int *) fd0, &frame, sizeof (frame), 0); |
65aa7a664f6f
Applied wolfgang changes, and re-indented socket_can.c file
etisserant
parents:
192
diff
changeset
|
70 |
if (res < 0) |
65aa7a664f6f
Applied wolfgang changes, and re-indented socket_can.c file
etisserant
parents:
192
diff
changeset
|
71 |
{ |
65aa7a664f6f
Applied wolfgang changes, and re-indented socket_can.c file
etisserant
parents:
192
diff
changeset
|
72 |
fprintf (stderr, "Recv failed: %s\n", strerror (CAN_ERRNO (res))); |
65aa7a664f6f
Applied wolfgang changes, and re-indented socket_can.c file
etisserant
parents:
192
diff
changeset
|
73 |
return 1; |
65aa7a664f6f
Applied wolfgang changes, and re-indented socket_can.c file
etisserant
parents:
192
diff
changeset
|
74 |
} |
65aa7a664f6f
Applied wolfgang changes, and re-indented socket_can.c file
etisserant
parents:
192
diff
changeset
|
75 |
|
365 | 76 |
m->cob_id = frame.can_id & CAN_EFF_MASK; |
196
65aa7a664f6f
Applied wolfgang changes, and re-indented socket_can.c file
etisserant
parents:
192
diff
changeset
|
77 |
m->len = frame.can_dlc; |
65aa7a664f6f
Applied wolfgang changes, and re-indented socket_can.c file
etisserant
parents:
192
diff
changeset
|
78 |
if (frame.can_id & CAN_RTR_FLAG) |
65aa7a664f6f
Applied wolfgang changes, and re-indented socket_can.c file
etisserant
parents:
192
diff
changeset
|
79 |
m->rtr = 1; |
65aa7a664f6f
Applied wolfgang changes, and re-indented socket_can.c file
etisserant
parents:
192
diff
changeset
|
80 |
else |
65aa7a664f6f
Applied wolfgang changes, and re-indented socket_can.c file
etisserant
parents:
192
diff
changeset
|
81 |
m->rtr = 0; |
65aa7a664f6f
Applied wolfgang changes, and re-indented socket_can.c file
etisserant
parents:
192
diff
changeset
|
82 |
memcpy (m->data, frame.data, 8); |
65aa7a664f6f
Applied wolfgang changes, and re-indented socket_can.c file
etisserant
parents:
192
diff
changeset
|
83 |
|
330 | 84 |
#if defined DEBUG_MSG_CONSOLE_ON |
454 | 85 |
MSG("in : "); |
290
43c3b2bf3e32
Added debug message printing. Added socket option : CAN_RAW_LOOPBACK=1 and CAN_RAW_RECV_OWN_MSGS=0.
etisserant
parents:
196
diff
changeset
|
86 |
print_message(m); |
43c3b2bf3e32
Added debug message printing. Added socket option : CAN_RAW_LOOPBACK=1 and CAN_RAW_RECV_OWN_MSGS=0.
etisserant
parents:
196
diff
changeset
|
87 |
#endif |
196
65aa7a664f6f
Applied wolfgang changes, and re-indented socket_can.c file
etisserant
parents:
192
diff
changeset
|
88 |
return 0; |
65aa7a664f6f
Applied wolfgang changes, and re-indented socket_can.c file
etisserant
parents:
192
diff
changeset
|
89 |
} |
65aa7a664f6f
Applied wolfgang changes, and re-indented socket_can.c file
etisserant
parents:
192
diff
changeset
|
90 |
|
65aa7a664f6f
Applied wolfgang changes, and re-indented socket_can.c file
etisserant
parents:
192
diff
changeset
|
91 |
|
65aa7a664f6f
Applied wolfgang changes, and re-indented socket_can.c file
etisserant
parents:
192
diff
changeset
|
92 |
/***************************************************************************/ |
65aa7a664f6f
Applied wolfgang changes, and re-indented socket_can.c file
etisserant
parents:
192
diff
changeset
|
93 |
UNS8 |
65aa7a664f6f
Applied wolfgang changes, and re-indented socket_can.c file
etisserant
parents:
192
diff
changeset
|
94 |
canSend_driver (CAN_HANDLE fd0, Message * m) |
65aa7a664f6f
Applied wolfgang changes, and re-indented socket_can.c file
etisserant
parents:
192
diff
changeset
|
95 |
{ |
65aa7a664f6f
Applied wolfgang changes, and re-indented socket_can.c file
etisserant
parents:
192
diff
changeset
|
96 |
int res; |
65aa7a664f6f
Applied wolfgang changes, and re-indented socket_can.c file
etisserant
parents:
192
diff
changeset
|
97 |
struct can_frame frame; |
65aa7a664f6f
Applied wolfgang changes, and re-indented socket_can.c file
etisserant
parents:
192
diff
changeset
|
98 |
|
365 | 99 |
frame.can_id = m->cob_id; |
196
65aa7a664f6f
Applied wolfgang changes, and re-indented socket_can.c file
etisserant
parents:
192
diff
changeset
|
100 |
if (frame.can_id >= 0x800) |
65aa7a664f6f
Applied wolfgang changes, and re-indented socket_can.c file
etisserant
parents:
192
diff
changeset
|
101 |
frame.can_id |= CAN_EFF_FLAG; |
65aa7a664f6f
Applied wolfgang changes, and re-indented socket_can.c file
etisserant
parents:
192
diff
changeset
|
102 |
frame.can_dlc = m->len; |
65aa7a664f6f
Applied wolfgang changes, and re-indented socket_can.c file
etisserant
parents:
192
diff
changeset
|
103 |
if (m->rtr) |
65aa7a664f6f
Applied wolfgang changes, and re-indented socket_can.c file
etisserant
parents:
192
diff
changeset
|
104 |
frame.can_id |= CAN_RTR_FLAG; |
65aa7a664f6f
Applied wolfgang changes, and re-indented socket_can.c file
etisserant
parents:
192
diff
changeset
|
105 |
else |
65aa7a664f6f
Applied wolfgang changes, and re-indented socket_can.c file
etisserant
parents:
192
diff
changeset
|
106 |
memcpy (frame.data, m->data, 8); |
65aa7a664f6f
Applied wolfgang changes, and re-indented socket_can.c file
etisserant
parents:
192
diff
changeset
|
107 |
|
330 | 108 |
#if defined DEBUG_MSG_CONSOLE_ON |
454 | 109 |
MSG("out : "); |
290
43c3b2bf3e32
Added debug message printing. Added socket option : CAN_RAW_LOOPBACK=1 and CAN_RAW_RECV_OWN_MSGS=0.
etisserant
parents:
196
diff
changeset
|
110 |
print_message(m); |
43c3b2bf3e32
Added debug message printing. Added socket option : CAN_RAW_LOOPBACK=1 and CAN_RAW_RECV_OWN_MSGS=0.
etisserant
parents:
196
diff
changeset
|
111 |
#endif |
196
65aa7a664f6f
Applied wolfgang changes, and re-indented socket_can.c file
etisserant
parents:
192
diff
changeset
|
112 |
res = CAN_SEND (*(int *) fd0, &frame, sizeof (frame), 0); |
65aa7a664f6f
Applied wolfgang changes, and re-indented socket_can.c file
etisserant
parents:
192
diff
changeset
|
113 |
if (res < 0) |
65aa7a664f6f
Applied wolfgang changes, and re-indented socket_can.c file
etisserant
parents:
192
diff
changeset
|
114 |
{ |
65aa7a664f6f
Applied wolfgang changes, and re-indented socket_can.c file
etisserant
parents:
192
diff
changeset
|
115 |
fprintf (stderr, "Send failed: %s\n", strerror (CAN_ERRNO (res))); |
65aa7a664f6f
Applied wolfgang changes, and re-indented socket_can.c file
etisserant
parents:
192
diff
changeset
|
116 |
return 1; |
65aa7a664f6f
Applied wolfgang changes, and re-indented socket_can.c file
etisserant
parents:
192
diff
changeset
|
117 |
} |
65aa7a664f6f
Applied wolfgang changes, and re-indented socket_can.c file
etisserant
parents:
192
diff
changeset
|
118 |
|
65aa7a664f6f
Applied wolfgang changes, and re-indented socket_can.c file
etisserant
parents:
192
diff
changeset
|
119 |
return 0; |
65aa7a664f6f
Applied wolfgang changes, and re-indented socket_can.c file
etisserant
parents:
192
diff
changeset
|
120 |
} |
65aa7a664f6f
Applied wolfgang changes, and re-indented socket_can.c file
etisserant
parents:
192
diff
changeset
|
121 |
|
65aa7a664f6f
Applied wolfgang changes, and re-indented socket_can.c file
etisserant
parents:
192
diff
changeset
|
122 |
/***************************************************************************/ |
65aa7a664f6f
Applied wolfgang changes, and re-indented socket_can.c file
etisserant
parents:
192
diff
changeset
|
123 |
#ifdef RTCAN_SOCKET |
65aa7a664f6f
Applied wolfgang changes, and re-indented socket_can.c file
etisserant
parents:
192
diff
changeset
|
124 |
int |
65aa7a664f6f
Applied wolfgang changes, and re-indented socket_can.c file
etisserant
parents:
192
diff
changeset
|
125 |
TranslateBaudRate (const char *optarg) |
65aa7a664f6f
Applied wolfgang changes, and re-indented socket_can.c file
etisserant
parents:
192
diff
changeset
|
126 |
{ |
65aa7a664f6f
Applied wolfgang changes, and re-indented socket_can.c file
etisserant
parents:
192
diff
changeset
|
127 |
int baudrate; |
65aa7a664f6f
Applied wolfgang changes, and re-indented socket_can.c file
etisserant
parents:
192
diff
changeset
|
128 |
int val, len; |
65aa7a664f6f
Applied wolfgang changes, and re-indented socket_can.c file
etisserant
parents:
192
diff
changeset
|
129 |
char *pos = NULL; |
65aa7a664f6f
Applied wolfgang changes, and re-indented socket_can.c file
etisserant
parents:
192
diff
changeset
|
130 |
|
65aa7a664f6f
Applied wolfgang changes, and re-indented socket_can.c file
etisserant
parents:
192
diff
changeset
|
131 |
len = strlen (optarg); |
65aa7a664f6f
Applied wolfgang changes, and re-indented socket_can.c file
etisserant
parents:
192
diff
changeset
|
132 |
if (!len) |
65aa7a664f6f
Applied wolfgang changes, and re-indented socket_can.c file
etisserant
parents:
192
diff
changeset
|
133 |
return 0; |
65aa7a664f6f
Applied wolfgang changes, and re-indented socket_can.c file
etisserant
parents:
192
diff
changeset
|
134 |
|
65aa7a664f6f
Applied wolfgang changes, and re-indented socket_can.c file
etisserant
parents:
192
diff
changeset
|
135 |
switch ((int) optarg[len - 1]) |
65aa7a664f6f
Applied wolfgang changes, and re-indented socket_can.c file
etisserant
parents:
192
diff
changeset
|
136 |
{ |
65aa7a664f6f
Applied wolfgang changes, and re-indented socket_can.c file
etisserant
parents:
192
diff
changeset
|
137 |
case 'M': |
65aa7a664f6f
Applied wolfgang changes, and re-indented socket_can.c file
etisserant
parents:
192
diff
changeset
|
138 |
baudrate = 1000000; |
65aa7a664f6f
Applied wolfgang changes, and re-indented socket_can.c file
etisserant
parents:
192
diff
changeset
|
139 |
break; |
65aa7a664f6f
Applied wolfgang changes, and re-indented socket_can.c file
etisserant
parents:
192
diff
changeset
|
140 |
case 'K': |
65aa7a664f6f
Applied wolfgang changes, and re-indented socket_can.c file
etisserant
parents:
192
diff
changeset
|
141 |
baudrate = 1000; |
65aa7a664f6f
Applied wolfgang changes, and re-indented socket_can.c file
etisserant
parents:
192
diff
changeset
|
142 |
break; |
65aa7a664f6f
Applied wolfgang changes, and re-indented socket_can.c file
etisserant
parents:
192
diff
changeset
|
143 |
default: |
65aa7a664f6f
Applied wolfgang changes, and re-indented socket_can.c file
etisserant
parents:
192
diff
changeset
|
144 |
baudrate = 1; |
65aa7a664f6f
Applied wolfgang changes, and re-indented socket_can.c file
etisserant
parents:
192
diff
changeset
|
145 |
break; |
65aa7a664f6f
Applied wolfgang changes, and re-indented socket_can.c file
etisserant
parents:
192
diff
changeset
|
146 |
} |
65aa7a664f6f
Applied wolfgang changes, and re-indented socket_can.c file
etisserant
parents:
192
diff
changeset
|
147 |
if ((sscanf (optarg, "%i", &val)) == 1) |
65aa7a664f6f
Applied wolfgang changes, and re-indented socket_can.c file
etisserant
parents:
192
diff
changeset
|
148 |
baudrate *= val; |
65aa7a664f6f
Applied wolfgang changes, and re-indented socket_can.c file
etisserant
parents:
192
diff
changeset
|
149 |
else |
65aa7a664f6f
Applied wolfgang changes, and re-indented socket_can.c file
etisserant
parents:
192
diff
changeset
|
150 |
baudrate = 0;; |
65aa7a664f6f
Applied wolfgang changes, and re-indented socket_can.c file
etisserant
parents:
192
diff
changeset
|
151 |
|
65aa7a664f6f
Applied wolfgang changes, and re-indented socket_can.c file
etisserant
parents:
192
diff
changeset
|
152 |
return baudrate; |
65aa7a664f6f
Applied wolfgang changes, and re-indented socket_can.c file
etisserant
parents:
192
diff
changeset
|
153 |
} |
65aa7a664f6f
Applied wolfgang changes, and re-indented socket_can.c file
etisserant
parents:
192
diff
changeset
|
154 |
#endif |
65aa7a664f6f
Applied wolfgang changes, and re-indented socket_can.c file
etisserant
parents:
192
diff
changeset
|
155 |
|
384 | 156 |
UNS8 canChangeBaudRate_driver( CAN_HANDLE fd, char* baud) |
157 |
{ |
|
158 |
printf("canChangeBaudRate not yet supported by this driver\n"); |
|
159 |
return 0; |
|
160 |
} |
|
161 |
||
196
65aa7a664f6f
Applied wolfgang changes, and re-indented socket_can.c file
etisserant
parents:
192
diff
changeset
|
162 |
/***************************************************************************/ |
65aa7a664f6f
Applied wolfgang changes, and re-indented socket_can.c file
etisserant
parents:
192
diff
changeset
|
163 |
CAN_HANDLE |
65aa7a664f6f
Applied wolfgang changes, and re-indented socket_can.c file
etisserant
parents:
192
diff
changeset
|
164 |
canOpen_driver (s_BOARD * board) |
65aa7a664f6f
Applied wolfgang changes, and re-indented socket_can.c file
etisserant
parents:
192
diff
changeset
|
165 |
{ |
65aa7a664f6f
Applied wolfgang changes, and re-indented socket_can.c file
etisserant
parents:
192
diff
changeset
|
166 |
struct ifreq ifr; |
65aa7a664f6f
Applied wolfgang changes, and re-indented socket_can.c file
etisserant
parents:
192
diff
changeset
|
167 |
struct sockaddr_can addr; |
65aa7a664f6f
Applied wolfgang changes, and re-indented socket_can.c file
etisserant
parents:
192
diff
changeset
|
168 |
int err; |
65aa7a664f6f
Applied wolfgang changes, and re-indented socket_can.c file
etisserant
parents:
192
diff
changeset
|
169 |
CAN_HANDLE fd0 = malloc (sizeof (int)); |
65aa7a664f6f
Applied wolfgang changes, and re-indented socket_can.c file
etisserant
parents:
192
diff
changeset
|
170 |
#ifdef RTCAN_SOCKET |
65aa7a664f6f
Applied wolfgang changes, and re-indented socket_can.c file
etisserant
parents:
192
diff
changeset
|
171 |
can_baudrate_t *baudrate; |
65aa7a664f6f
Applied wolfgang changes, and re-indented socket_can.c file
etisserant
parents:
192
diff
changeset
|
172 |
can_mode_t *mode; |
65aa7a664f6f
Applied wolfgang changes, and re-indented socket_can.c file
etisserant
parents:
192
diff
changeset
|
173 |
#endif |
65aa7a664f6f
Applied wolfgang changes, and re-indented socket_can.c file
etisserant
parents:
192
diff
changeset
|
174 |
|
65aa7a664f6f
Applied wolfgang changes, and re-indented socket_can.c file
etisserant
parents:
192
diff
changeset
|
175 |
*(int *) fd0 = CAN_SOCKET (PF_CAN, SOCK_RAW, CAN_RAW); |
65aa7a664f6f
Applied wolfgang changes, and re-indented socket_can.c file
etisserant
parents:
192
diff
changeset
|
176 |
if (*(int *) fd0 < 0) |
65aa7a664f6f
Applied wolfgang changes, and re-indented socket_can.c file
etisserant
parents:
192
diff
changeset
|
177 |
{ |
65aa7a664f6f
Applied wolfgang changes, and re-indented socket_can.c file
etisserant
parents:
192
diff
changeset
|
178 |
fprintf (stderr, "Socket creation failed: %s\n", |
65aa7a664f6f
Applied wolfgang changes, and re-indented socket_can.c file
etisserant
parents:
192
diff
changeset
|
179 |
strerror (CAN_ERRNO (*(int *) fd0))); |
65aa7a664f6f
Applied wolfgang changes, and re-indented socket_can.c file
etisserant
parents:
192
diff
changeset
|
180 |
goto error_ret; |
65aa7a664f6f
Applied wolfgang changes, and re-indented socket_can.c file
etisserant
parents:
192
diff
changeset
|
181 |
} |
65aa7a664f6f
Applied wolfgang changes, and re-indented socket_can.c file
etisserant
parents:
192
diff
changeset
|
182 |
|
65aa7a664f6f
Applied wolfgang changes, and re-indented socket_can.c file
etisserant
parents:
192
diff
changeset
|
183 |
if (*board->busname >= '0' && *board->busname <= '9') |
65aa7a664f6f
Applied wolfgang changes, and re-indented socket_can.c file
etisserant
parents:
192
diff
changeset
|
184 |
snprintf (ifr.ifr_name, IFNAMSIZ, CAN_IFNAME, board->busname); |
65aa7a664f6f
Applied wolfgang changes, and re-indented socket_can.c file
etisserant
parents:
192
diff
changeset
|
185 |
else |
65aa7a664f6f
Applied wolfgang changes, and re-indented socket_can.c file
etisserant
parents:
192
diff
changeset
|
186 |
strncpy (ifr.ifr_name, board->busname, IFNAMSIZ); |
65aa7a664f6f
Applied wolfgang changes, and re-indented socket_can.c file
etisserant
parents:
192
diff
changeset
|
187 |
err = CAN_IOCTL (*(int *) fd0, SIOCGIFINDEX, &ifr); |
65aa7a664f6f
Applied wolfgang changes, and re-indented socket_can.c file
etisserant
parents:
192
diff
changeset
|
188 |
if (err) |
65aa7a664f6f
Applied wolfgang changes, and re-indented socket_can.c file
etisserant
parents:
192
diff
changeset
|
189 |
{ |
65aa7a664f6f
Applied wolfgang changes, and re-indented socket_can.c file
etisserant
parents:
192
diff
changeset
|
190 |
fprintf (stderr, "Getting IF index for %s failed: %s\n", |
65aa7a664f6f
Applied wolfgang changes, and re-indented socket_can.c file
etisserant
parents:
192
diff
changeset
|
191 |
ifr.ifr_name, strerror (CAN_ERRNO (err))); |
65aa7a664f6f
Applied wolfgang changes, and re-indented socket_can.c file
etisserant
parents:
192
diff
changeset
|
192 |
goto error_close; |
65aa7a664f6f
Applied wolfgang changes, and re-indented socket_can.c file
etisserant
parents:
192
diff
changeset
|
193 |
} |
290
43c3b2bf3e32
Added debug message printing. Added socket option : CAN_RAW_LOOPBACK=1 and CAN_RAW_RECV_OWN_MSGS=0.
etisserant
parents:
196
diff
changeset
|
194 |
|
43c3b2bf3e32
Added debug message printing. Added socket option : CAN_RAW_LOOPBACK=1 and CAN_RAW_RECV_OWN_MSGS=0.
etisserant
parents:
196
diff
changeset
|
195 |
{ |
43c3b2bf3e32
Added debug message printing. Added socket option : CAN_RAW_LOOPBACK=1 and CAN_RAW_RECV_OWN_MSGS=0.
etisserant
parents:
196
diff
changeset
|
196 |
int loopback = 1; |
43c3b2bf3e32
Added debug message printing. Added socket option : CAN_RAW_LOOPBACK=1 and CAN_RAW_RECV_OWN_MSGS=0.
etisserant
parents:
196
diff
changeset
|
197 |
setsockopt(*(int *)fd0, SOL_CAN_RAW, CAN_RAW_LOOPBACK, |
43c3b2bf3e32
Added debug message printing. Added socket option : CAN_RAW_LOOPBACK=1 and CAN_RAW_RECV_OWN_MSGS=0.
etisserant
parents:
196
diff
changeset
|
198 |
&loopback, sizeof(loopback)); |
43c3b2bf3e32
Added debug message printing. Added socket option : CAN_RAW_LOOPBACK=1 and CAN_RAW_RECV_OWN_MSGS=0.
etisserant
parents:
196
diff
changeset
|
199 |
} |
43c3b2bf3e32
Added debug message printing. Added socket option : CAN_RAW_LOOPBACK=1 and CAN_RAW_RECV_OWN_MSGS=0.
etisserant
parents:
196
diff
changeset
|
200 |
|
43c3b2bf3e32
Added debug message printing. Added socket option : CAN_RAW_LOOPBACK=1 and CAN_RAW_RECV_OWN_MSGS=0.
etisserant
parents:
196
diff
changeset
|
201 |
{ |
43c3b2bf3e32
Added debug message printing. Added socket option : CAN_RAW_LOOPBACK=1 and CAN_RAW_RECV_OWN_MSGS=0.
etisserant
parents:
196
diff
changeset
|
202 |
int recv_own_msgs = 0; /* 0 = disabled (default), 1 = enabled */ |
43c3b2bf3e32
Added debug message printing. Added socket option : CAN_RAW_LOOPBACK=1 and CAN_RAW_RECV_OWN_MSGS=0.
etisserant
parents:
196
diff
changeset
|
203 |
|
43c3b2bf3e32
Added debug message printing. Added socket option : CAN_RAW_LOOPBACK=1 and CAN_RAW_RECV_OWN_MSGS=0.
etisserant
parents:
196
diff
changeset
|
204 |
setsockopt(*(int *)fd0, SOL_CAN_RAW, CAN_RAW_RECV_OWN_MSGS, |
43c3b2bf3e32
Added debug message printing. Added socket option : CAN_RAW_LOOPBACK=1 and CAN_RAW_RECV_OWN_MSGS=0.
etisserant
parents:
196
diff
changeset
|
205 |
&recv_own_msgs, sizeof(recv_own_msgs)); |
43c3b2bf3e32
Added debug message printing. Added socket option : CAN_RAW_LOOPBACK=1 and CAN_RAW_RECV_OWN_MSGS=0.
etisserant
parents:
196
diff
changeset
|
206 |
} |
43c3b2bf3e32
Added debug message printing. Added socket option : CAN_RAW_LOOPBACK=1 and CAN_RAW_RECV_OWN_MSGS=0.
etisserant
parents:
196
diff
changeset
|
207 |
|
196
65aa7a664f6f
Applied wolfgang changes, and re-indented socket_can.c file
etisserant
parents:
192
diff
changeset
|
208 |
addr.can_family = AF_CAN; |
65aa7a664f6f
Applied wolfgang changes, and re-indented socket_can.c file
etisserant
parents:
192
diff
changeset
|
209 |
addr.can_ifindex = ifr.ifr_ifindex; |
65aa7a664f6f
Applied wolfgang changes, and re-indented socket_can.c file
etisserant
parents:
192
diff
changeset
|
210 |
err = CAN_BIND (*(int *) fd0, (struct sockaddr *) &addr, sizeof (addr)); |
65aa7a664f6f
Applied wolfgang changes, and re-indented socket_can.c file
etisserant
parents:
192
diff
changeset
|
211 |
if (err) |
65aa7a664f6f
Applied wolfgang changes, and re-indented socket_can.c file
etisserant
parents:
192
diff
changeset
|
212 |
{ |
65aa7a664f6f
Applied wolfgang changes, and re-indented socket_can.c file
etisserant
parents:
192
diff
changeset
|
213 |
fprintf (stderr, "Binding failed: %s\n", strerror (CAN_ERRNO (err))); |
65aa7a664f6f
Applied wolfgang changes, and re-indented socket_can.c file
etisserant
parents:
192
diff
changeset
|
214 |
goto error_close; |
65aa7a664f6f
Applied wolfgang changes, and re-indented socket_can.c file
etisserant
parents:
192
diff
changeset
|
215 |
} |
65aa7a664f6f
Applied wolfgang changes, and re-indented socket_can.c file
etisserant
parents:
192
diff
changeset
|
216 |
|
65aa7a664f6f
Applied wolfgang changes, and re-indented socket_can.c file
etisserant
parents:
192
diff
changeset
|
217 |
#ifdef RTCAN_SOCKET |
65aa7a664f6f
Applied wolfgang changes, and re-indented socket_can.c file
etisserant
parents:
192
diff
changeset
|
218 |
baudrate = (can_baudrate_t *) & ifr.ifr_ifru; |
65aa7a664f6f
Applied wolfgang changes, and re-indented socket_can.c file
etisserant
parents:
192
diff
changeset
|
219 |
*baudrate = TranslateBaudRate (board->baudrate); |
65aa7a664f6f
Applied wolfgang changes, and re-indented socket_can.c file
etisserant
parents:
192
diff
changeset
|
220 |
if (!*baudrate) |
65aa7a664f6f
Applied wolfgang changes, and re-indented socket_can.c file
etisserant
parents:
192
diff
changeset
|
221 |
goto error_close; |
65aa7a664f6f
Applied wolfgang changes, and re-indented socket_can.c file
etisserant
parents:
192
diff
changeset
|
222 |
|
65aa7a664f6f
Applied wolfgang changes, and re-indented socket_can.c file
etisserant
parents:
192
diff
changeset
|
223 |
err = CAN_IOCTL (*(int *) fd0, SIOCSCANBAUDRATE, &ifr); |
65aa7a664f6f
Applied wolfgang changes, and re-indented socket_can.c file
etisserant
parents:
192
diff
changeset
|
224 |
if (err) |
65aa7a664f6f
Applied wolfgang changes, and re-indented socket_can.c file
etisserant
parents:
192
diff
changeset
|
225 |
{ |
65aa7a664f6f
Applied wolfgang changes, and re-indented socket_can.c file
etisserant
parents:
192
diff
changeset
|
226 |
fprintf (stderr, |
65aa7a664f6f
Applied wolfgang changes, and re-indented socket_can.c file
etisserant
parents:
192
diff
changeset
|
227 |
"Setting baudrate %d failed: %s\n", |
65aa7a664f6f
Applied wolfgang changes, and re-indented socket_can.c file
etisserant
parents:
192
diff
changeset
|
228 |
*baudrate, strerror (CAN_ERRNO (err))); |
65aa7a664f6f
Applied wolfgang changes, and re-indented socket_can.c file
etisserant
parents:
192
diff
changeset
|
229 |
goto error_close; |
65aa7a664f6f
Applied wolfgang changes, and re-indented socket_can.c file
etisserant
parents:
192
diff
changeset
|
230 |
} |
65aa7a664f6f
Applied wolfgang changes, and re-indented socket_can.c file
etisserant
parents:
192
diff
changeset
|
231 |
|
65aa7a664f6f
Applied wolfgang changes, and re-indented socket_can.c file
etisserant
parents:
192
diff
changeset
|
232 |
mode = (can_mode_t *) & ifr.ifr_ifru; |
65aa7a664f6f
Applied wolfgang changes, and re-indented socket_can.c file
etisserant
parents:
192
diff
changeset
|
233 |
*mode = CAN_MODE_START; |
65aa7a664f6f
Applied wolfgang changes, and re-indented socket_can.c file
etisserant
parents:
192
diff
changeset
|
234 |
err = CAN_IOCTL (*(int *) fd0, SIOCSCANMODE, &ifr); |
65aa7a664f6f
Applied wolfgang changes, and re-indented socket_can.c file
etisserant
parents:
192
diff
changeset
|
235 |
if (err) |
65aa7a664f6f
Applied wolfgang changes, and re-indented socket_can.c file
etisserant
parents:
192
diff
changeset
|
236 |
{ |
65aa7a664f6f
Applied wolfgang changes, and re-indented socket_can.c file
etisserant
parents:
192
diff
changeset
|
237 |
fprintf (stderr, "Starting CAN device failed: %s\n", |
65aa7a664f6f
Applied wolfgang changes, and re-indented socket_can.c file
etisserant
parents:
192
diff
changeset
|
238 |
strerror (CAN_ERRNO (err))); |
65aa7a664f6f
Applied wolfgang changes, and re-indented socket_can.c file
etisserant
parents:
192
diff
changeset
|
239 |
goto error_close; |
65aa7a664f6f
Applied wolfgang changes, and re-indented socket_can.c file
etisserant
parents:
192
diff
changeset
|
240 |
} |
65aa7a664f6f
Applied wolfgang changes, and re-indented socket_can.c file
etisserant
parents:
192
diff
changeset
|
241 |
#endif |
65aa7a664f6f
Applied wolfgang changes, and re-indented socket_can.c file
etisserant
parents:
192
diff
changeset
|
242 |
|
65aa7a664f6f
Applied wolfgang changes, and re-indented socket_can.c file
etisserant
parents:
192
diff
changeset
|
243 |
return fd0; |
65aa7a664f6f
Applied wolfgang changes, and re-indented socket_can.c file
etisserant
parents:
192
diff
changeset
|
244 |
|
65aa7a664f6f
Applied wolfgang changes, and re-indented socket_can.c file
etisserant
parents:
192
diff
changeset
|
245 |
error_close: |
65aa7a664f6f
Applied wolfgang changes, and re-indented socket_can.c file
etisserant
parents:
192
diff
changeset
|
246 |
CAN_CLOSE (*(int *) fd0); |
65aa7a664f6f
Applied wolfgang changes, and re-indented socket_can.c file
etisserant
parents:
192
diff
changeset
|
247 |
|
65aa7a664f6f
Applied wolfgang changes, and re-indented socket_can.c file
etisserant
parents:
192
diff
changeset
|
248 |
error_ret: |
65aa7a664f6f
Applied wolfgang changes, and re-indented socket_can.c file
etisserant
parents:
192
diff
changeset
|
249 |
free (fd0); |
65aa7a664f6f
Applied wolfgang changes, and re-indented socket_can.c file
etisserant
parents:
192
diff
changeset
|
250 |
return NULL; |
65aa7a664f6f
Applied wolfgang changes, and re-indented socket_can.c file
etisserant
parents:
192
diff
changeset
|
251 |
} |
65aa7a664f6f
Applied wolfgang changes, and re-indented socket_can.c file
etisserant
parents:
192
diff
changeset
|
252 |
|
65aa7a664f6f
Applied wolfgang changes, and re-indented socket_can.c file
etisserant
parents:
192
diff
changeset
|
253 |
/***************************************************************************/ |
65aa7a664f6f
Applied wolfgang changes, and re-indented socket_can.c file
etisserant
parents:
192
diff
changeset
|
254 |
int |
65aa7a664f6f
Applied wolfgang changes, and re-indented socket_can.c file
etisserant
parents:
192
diff
changeset
|
255 |
canClose_driver (CAN_HANDLE fd0) |
65aa7a664f6f
Applied wolfgang changes, and re-indented socket_can.c file
etisserant
parents:
192
diff
changeset
|
256 |
{ |
65aa7a664f6f
Applied wolfgang changes, and re-indented socket_can.c file
etisserant
parents:
192
diff
changeset
|
257 |
if (fd0) |
65aa7a664f6f
Applied wolfgang changes, and re-indented socket_can.c file
etisserant
parents:
192
diff
changeset
|
258 |
{ |
65aa7a664f6f
Applied wolfgang changes, and re-indented socket_can.c file
etisserant
parents:
192
diff
changeset
|
259 |
CAN_CLOSE (*(int *) fd0); |
65aa7a664f6f
Applied wolfgang changes, and re-indented socket_can.c file
etisserant
parents:
192
diff
changeset
|
260 |
free (fd0); |
65aa7a664f6f
Applied wolfgang changes, and re-indented socket_can.c file
etisserant
parents:
192
diff
changeset
|
261 |
} |
65aa7a664f6f
Applied wolfgang changes, and re-indented socket_can.c file
etisserant
parents:
192
diff
changeset
|
262 |
return 0; |
65aa7a664f6f
Applied wolfgang changes, and re-indented socket_can.c file
etisserant
parents:
192
diff
changeset
|
263 |
} |