Newer
Older
/*
* PortHandlerLinux.cpp
*
* Created on: 2016. 1. 26.
* Author: zerom
*/
#include <stdio.h>
#include <fcntl.h>
#include <string.h>
#include <unistd.h>
#include <termios.h>
#include <time.h>
#include <sys/time.h>
#include <sys/ioctl.h>
#include <linux/serial.h>
#include "dynamixel_sdk_linux/PortHandlerLinux.h"
#define LATENCY_TIMER 4 // msec (USB latency timer)
using namespace ROBOTIS;
PortHandlerLinux::PortHandlerLinux(const char *port_name)
: socket_fd_(-1),
baudrate_(DEFAULT_BAUDRATE),
packet_start_time_(0.0),
packet_timeout_(0.0),
tx_time_per_byte(0.0)
{
is_using = false;
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
SetPortName(port_name);
}
bool PortHandlerLinux::OpenPort()
{
return SetBaudRate(baudrate_);
}
void PortHandlerLinux::ClosePort()
{
if(socket_fd_ != -1)
close(socket_fd_);
socket_fd_ = -1;
}
void PortHandlerLinux::ClearPort()
{
tcflush(socket_fd_, TCIOFLUSH);
}
void PortHandlerLinux::SetPortName(const char *port_name)
{
strcpy(port_name_, port_name);
}
char *PortHandlerLinux::GetPortName()
{
return port_name_;
}
// TODO: baud number ??
bool PortHandlerLinux::SetBaudRate(const int baudrate)
{
int _baud = GetCFlagBaud(baudrate);
ClosePort();
if(_baud <= 0) // custom baudrate
{
SetupPort(B38400);
baudrate_ = baudrate;
return SetCustomBaudrate(baudrate);
}
else
{
baudrate_ = baudrate;
return SetupPort(_baud);
}
}
int PortHandlerLinux::GetBaudRate()
{
return baudrate_;
}
int PortHandlerLinux::GetBytesAvailable()
{
int _bytes_available;
ioctl(socket_fd_, FIONREAD, &_bytes_available);
return _bytes_available;
}
int PortHandlerLinux::ReadPort(UINT8_T *packet, int length)
{
return read(socket_fd_, packet, length);
}
int PortHandlerLinux::WritePort(UINT8_T *packet, int length)
{
return write(socket_fd_, packet, length);
}
void PortHandlerLinux::SetPacketTimeout(UINT16_T packet_length)
{
packet_start_time_ = GetCurrentTime();
packet_timeout_ = (tx_time_per_byte * (double)packet_length) + (LATENCY_TIMER * 2.0) + 2.0;
}
void PortHandlerLinux::SetPacketTimeout(double msec)
{
packet_start_time_ = GetCurrentTime();
packet_timeout_ = msec;
}
bool PortHandlerLinux::IsPacketTimeout()
{
if(GetTimeSinceStart() > packet_timeout_)
{
packet_timeout_ = 0;
return true;
}
return false;
}
double PortHandlerLinux::GetCurrentTime()
{
struct timespec _tv;
clock_gettime( CLOCK_REALTIME, &_tv);
return ((double)_tv.tv_sec*1000.0 + (double)_tv.tv_nsec*0.001*0.001);
}
double PortHandlerLinux::GetTimeSinceStart()
{
double _time;
_time = GetCurrentTime() - packet_start_time_;
if(_time < 0.0)
packet_start_time_ = GetCurrentTime();
return _time;
}
bool PortHandlerLinux::SetupPort(int cflag_baud)
{
struct termios newtio;
socket_fd_ = open(port_name_, O_RDWR|O_NOCTTY|O_NONBLOCK);
if(socket_fd_ < 0)
{
printf("[PortHandlerLinux::SetupPort] Error opening serial port!\n");
return false;
}
bzero(&newtio, sizeof(newtio)); // clear struct for new port settings
newtio.c_cflag = cflag_baud | CS8 | CLOCAL | CREAD;
newtio.c_iflag = IGNPAR;
newtio.c_oflag = 0;
newtio.c_lflag = 0;
newtio.c_cc[VTIME] = 0;
newtio.c_cc[VMIN] = 0;
// clean the buffer and activate the settings for the port
tcflush(socket_fd_, TCIFLUSH);
tcsetattr(socket_fd_, TCSANOW, &newtio);
tx_time_per_byte = (1000.0 / (double)baudrate_) * 10.0;
return true;
}
bool PortHandlerLinux::SetCustomBaudrate(int speed)
{
// try to set a custom divisor
struct serial_struct ss;
if(ioctl(socket_fd_, TIOCGSERIAL, &ss) != 0)
{
printf("[PortHandlerLinux::SetCustomBaudrate] TIOCGSERIAL failed!\n");
return false;
}
ss.flags = (ss.flags & ~ASYNC_SPD_MASK) | ASYNC_SPD_CUST;
ss.custom_divisor = (ss.baud_base + (speed / 2)) / speed;
int closest_speed = ss.baud_base / ss.custom_divisor;
if(closest_speed < speed * 98 / 100 || closest_speed > speed * 102 / 100)
{
printf("[PortHandlerLinux::SetCustomBaudrate] Cannot set speed to %d, closest is %d \n", speed, closest_speed);
return false;
}
if(ioctl(socket_fd_, TIOCSSERIAL, &ss) < 0)
{
printf("[PortHandlerLinux::SetCustomBaudrate] TIOCSSERIAL failed!\n");
return false;
}
tx_time_per_byte = (1000.0 / (double)speed) * 10.0;
return true;
}
int PortHandlerLinux::GetCFlagBaud(int baudrate)
{
switch(baudrate)
{
case 9600:
return B9600;
case 19200:
return B19200;
case 38400:
return B38400;
case 57600:
return B57600;
case 115200:
return B115200;
case 230400:
return B230400;
case 460800:
return B460800;
case 500000:
return B500000;
case 576000:
return B576000;
case 921600:
return B921600;
case 1000000:
return B1000000;
case 1152000:
return B1152000;
case 1500000:
return B1500000;
case 2000000:
return B2000000;
case 2500000:
return B2500000;
case 3000000:
return B3000000;
case 3500000:
return B3500000;
case 4000000:
return B4000000;
default:
return -1;
}
}