-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsend_quad_commands.cpp
423 lines (360 loc) · 9.92 KB
/
send_quad_commands.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
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
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
/** This example is public domain. */
/**
* @file
* @brief The serial interface process
*
* This process connects any external MAVLink UART device and prints data
*
* @author Lorenz Meier, <lm@inf.ethz.ch>
*
*/
#include <common/mavlink.h>
// Standard includes
#include <iostream>
#include <cstdlib>
#include <unistd.h>
#include <cmath>
#include <string.h>
#include <inttypes.h>
#include <limits.h>
#include <fstream>
// Serial includes
#include <stdio.h> /* Standard input/output definitions */
#include <string.h> /* String function definitions */
#include <unistd.h> /* UNIX standard function definitions */
#include <fcntl.h> /* File control definitions */
#include <errno.h> /* Error number definitions */
#include <termios.h> /* POSIX terminal control definitions */
#ifdef __linux
#include <sys/ioctl.h>
#endif
#include <stdio.h>
#include <signal.h>
#include <stdlib.h>
// Latency Benchmarking
#include <sys/time.h>
#include <time.h>
#ifndef INT16_MAX
#define INT16_MAX 0x7fff
#endif
#ifndef INT16_MIN
#define INT16_MIN (-INT16_MAX - 1)
#endif
#ifndef UINT16_MAX
#define UINT16_MAX 0xffff
#endif
using std::string;
using namespace std;
struct timeval tv; ///< System time
// Settings
int sysid = 1; ///< The unique system id of this MAV, 0-127. Has to be consistent across the system
int compid = 50;
int serial_compid = 0;
bool silent = false; ///< Wether console output should be enabled
bool verbose = false; ///< Enable verbose output
bool debug = false; ///< Enable debug functions and output
int fd;
void quit_handler(int sig);
void quit_handler(int sig) {
printf("Exiting on user request.\n");
exit(0);
}
/**
*
*
* Returns the file descriptor on success or -1 on error.
*/
int open_port(const char* port)
{
int fd; /* File descriptor for the port */
// Open serial port
// O_RDWR - Read and write
// O_NOCTTY - Ignore special chars like CTRL-C
fd = open(port, O_RDWR | O_NOCTTY | O_NDELAY);
if (fd == -1)
{
/* Could not open the port. */
return(-1);
}
else
{
/* Set to blocking mode */
//fcntl(fd, F_SETFL, 0);
/* set to non-blocking mode */
fcntl(fd, F_SETFL, FNDELAY);
}
return (fd);
}
bool setup_port(int fd, int baud, int data_bits, int stop_bits, bool parity, bool hardware_control)
{
//struct termios options;
struct termios config;
if(!isatty(fd))
{
fprintf(stderr, "\nERROR: file descriptor %d is NOT a serial port\n", fd);
return false;
}
if(tcgetattr(fd, &config) < 0)
{
fprintf(stderr, "\nERROR: could not read configuration of fd %d\n", fd);
return false;
}
//
// Input flags - Turn off input processing
// convert break to null byte, no CR to NL translation,
// no NL to CR translation, don't mark parity errors or breaks
// no input parity check, don't strip high bit off,
// no XON/XOFF software flow control
//
config.c_iflag &= ~(IGNBRK | BRKINT | ICRNL |
INLCR | PARMRK | INPCK | ISTRIP | IXON);
//
// Output flags - Turn off output processing
// no CR to NL translation, no NL to CR-NL translation,
// no NL to CR translation, no column 0 CR suppression,
// no Ctrl-D suppression, no fill characters, no case mapping,
// no local output processing
//
config.c_oflag &= ~(OCRNL | ONLCR | ONLRET |
ONOCR | OFILL | OPOST);
#ifdef OLCUC
config.c_oflag &= ~OLCUC;
#endif
#ifdef ONOEOT
config.c_oflag &= ~ONOEOT;
#endif
//
// No line processing:
// echo off, echo newline off, canonical mode off,
// extended input processing off, signal chars off
//
config.c_lflag &= ~(ECHO | ECHONL | ICANON | IEXTEN | ISIG);
//
// Turn off character processing
// clear current char size mask, no parity checking,
// no output processing, force 8 bit input
//
config.c_cflag &= ~(CSIZE | PARENB);
config.c_cflag |= CS8;
/* turn off hardware flow control */
config.c_cflag &= ~CRTSCTS;
//
// One input byte is enough to return from read()
// Inter-character timer off
//
config.c_cc[VMIN] = 1;
config.c_cc[VTIME] = 10; // was 0
// Get the current options for the port
//tcgetattr(fd, &options);
switch (baud)
{
case 1200:
if (cfsetispeed(&config, B1200) < 0 || cfsetospeed(&config, B1200) < 0)
{
fprintf(stderr, "\nERROR: Could not set desired baud rate of %d Baud\n", baud);
return false;
}
break;
case 1800:
cfsetispeed(&config, B1800);
cfsetospeed(&config, B1800);
break;
case 9600:
cfsetispeed(&config, B9600);
cfsetospeed(&config, B9600);
break;
case 19200:
cfsetispeed(&config, B19200);
cfsetospeed(&config, B19200);
break;
case 38400:
if (cfsetispeed(&config, B38400) < 0 || cfsetospeed(&config, B38400) < 0)
{
fprintf(stderr, "\nERROR: Could not set desired baud rate of %d Baud\n", baud);
return false;
}
break;
case 57600:
if (cfsetispeed(&config, B57600) < 0 || cfsetospeed(&config, B57600) < 0)
{
fprintf(stderr, "\nERROR: Could not set desired baud rate of %d Baud\n", baud);
return false;
}
break;
case 115200:
if (cfsetispeed(&config, B115200) < 0 || cfsetospeed(&config, B115200) < 0)
{
fprintf(stderr, "\nERROR: Could not set desired baud rate of %d Baud\n", baud);
return false;
}
break;
// These two non-standard (by the 70'ties ) rates are fully supported on
// current Debian and Mac OS versions (tested since 2010).
case 460800:
if (cfsetispeed(&config, 460800) < 0 || cfsetospeed(&config, 460800) < 0)
{
fprintf(stderr, "\nERROR: Could not set desired baud rate of %d Baud\n", baud);
return false;
}
break;
case 921600:
if (cfsetispeed(&config, 921600) < 0 || cfsetospeed(&config, 921600) < 0)
{
fprintf(stderr, "\nERROR: Could not set desired baud rate of %d Baud\n", baud);
return false;
}
break;
default:
fprintf(stderr, "ERROR: Desired baud rate %d could not be set, aborting.\n", baud);
return false;
break;
}
//
// Finally, apply the configuration
//
if(tcsetattr(fd, TCSAFLUSH, &config) < 0)
{
fprintf(stderr, "\nERROR: could not set configuration of fd %d\n", fd);
return false;
}
return true;
}
void close_port(int fd)
{
close(fd);
}
#define MAVLINK_OFFBOARD_CONTROL_MODE_NONE 0
#define MAVLINK_OFFBOARD_CONTROL_MODE_RATES 1
#define MAVLINK_OFFBOARD_CONTROL_MODE_ATTITUDE 2
#define MAVLINK_OFFBOARD_CONTROL_MODE_VELOCITY 3
#define MAVLINK_OFFBOARD_CONTROL_MODE_POSITION 4
/**
* @brief Serial function
*
* This function sends data out
* and forwards the data once received.
*/
int serial_send(int serial_fd)
{
int fd = serial_fd;
mavlink_status_t lastStatus;
lastStatus.packet_rx_drop_count = 0;
unsigned loopcounter = 0;
char buf[300];
/* send one control packet every ~20 ms (~50 Hz) */
while (1)
{
mavlink_message_t message;
mavlink_set_quad_swarm_roll_pitch_yaw_thrust_t sp;
sp.group = 0;
/* set rate mode, set zero rates and 20% throttle */
sp.mode = MAVLINK_OFFBOARD_CONTROL_MODE_ATTITUDE;
sp.roll[0] = INT16_MAX * 0.0f;
sp.pitch[0] = INT16_MAX * 0.0f;
sp.yaw[0] = INT16_MAX * 0.0f;
sp.thrust[0] = UINT16_MAX * 0.2f;
/* send from system 200 and component 0 */
mavlink_msg_set_quad_swarm_roll_pitch_yaw_thrust_encode(200, 0, &message, &sp);
unsigned len = mavlink_msg_to_send_buffer((uint8_t*)buf, &message);
printf("before write\n");
/* write packet via serial link */
write(fd, buf, len);
/* wait until all data has been written */
tcdrain(fd);
printf("after write\n");
if (loopcounter % 100 == 0) {
printf("Sent %d packets\n", loopcounter);
}
/* not exactly 20 ms, but close */
usleep(20000);
loopcounter++;
}
return 0;
}
int main(int argc, char **argv) {
/* default values for arguments */
char *uart_name = (char*)"/dev/ttyUSB0";
int baudrate = 115200;
const char *commandline_usage = "\tusage: %s -d <devicename> -b <baudrate> [-v/--verbose] [--debug]\n\t\tdefault: -d %s -b %i\n";
/* read program arguments */
int i;
for (i = 1; i < argc; i++) { /* argv[0] is "mavlink" */
if (strcmp(argv[i], "-h") == 0 || strcmp(argv[i], "--help") == 0) {
printf(commandline_usage, argv[0], uart_name, baudrate);
return 0;
}
/* UART device ID */
if (strcmp(argv[i], "-d") == 0 || strcmp(argv[i], "--device") == 0) {
if (argc > i + 1) {
uart_name = argv[i + 1];
} else {
printf(commandline_usage, argv[0], uart_name, baudrate);
return 0;
}
}
/* baud rate */
if (strcmp(argv[i], "-b") == 0 || strcmp(argv[i], "--baud") == 0) {
if (argc > i + 1) {
baudrate = atoi(argv[i + 1]);
} else {
printf(commandline_usage, argv[0], uart_name, baudrate);
return 0;
}
}
/* terminating MAVLink is allowed - yes/no */
if (strcmp(argv[i], "-v") == 0 || strcmp(argv[i], "--verbose") == 0) {
verbose = true;
}
if (strcmp(argv[i], "--debug") == 0) {
debug = true;
}
}
/* setup CTRL-C handling */
signal(SIGINT,quit_handler);
// SETUP SERIAL PORT
// Exit if opening port failed
// Open the serial port.
if (!silent) printf("Trying to connect to %s.. ", uart_name);
fflush(stdout);
fd = open_port(uart_name);
if (fd == -1)
{
if (!silent) printf("failure, could not open port.\n");
exit(EXIT_FAILURE);
}
else
{
if (!silent) printf("success.\n");
}
if (!silent) printf("Trying to configure %s.. ", uart_name);
bool setup = setup_port(fd, baudrate, 8, 1, false, false);
if (!setup)
{
if (!silent) printf("failure, could not configure port.\n");
exit(EXIT_FAILURE);
}
else
{
if (!silent) printf("success.\n");
}
int noErrors = 0;
if (fd == -1 || fd == 0)
{
if (!silent) fprintf(stderr, "Connection attempt to port %s with %d baud, 8N1 failed, exiting.\n", uart_name, baudrate);
exit(EXIT_FAILURE);
}
else
{
if (!silent) fprintf(stderr, "\nConnected to %s with %d baud, 8 data bits, no parity, 1 stop bit (8N1)\n", uart_name, baudrate);
}
if(fd < 0)
{
exit(noErrors);
}
// Run indefinitely while the serial loop handles data
if (!silent) printf("\nREADY, sending data.\n");
// while(true) wait loop
serial_send(fd);
close_port(fd);
return 0;
}