aboutsummaryrefslogtreecommitdiff
path: root/apps/fixedwing_control/fixedwing_control.c
blob: beabc1142d07aa4b8172a735a39f4fab48eee0b2 (plain) (blame)
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
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
/****************************************************************************
 *
 *   Copyright (C) 2012 PX4 Development Team. All rights reserved.
 *   Author: @author Ivan Ovinnikov <oivan@ethz.ch>
 *
 * Redistribution and use in source and binary forms, with or without
 * modification, are permitted provided that the following conditions
 * are met:
 *
 * 1. Redistributions of source code must retain the above copyright
 *    notice, this list of conditions and the following disclaimer.
 * 2. Redistributions in binary form must reproduce the above copyright
 *    notice, this list of conditions and the following disclaimer in
 *    the documentation and/or other materials provided with the
 *    distribution.
 * 3. Neither the name PX4 nor the names of its contributors may be
 *    used to endorse or promote products derived from this software
 *    without specific prior written permission.
 *
 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
 * FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
 * COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
 * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS
 * OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
 * AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
 * ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
 * POSSIBILITY OF SUCH DAMAGE.
 *
 ****************************************************************************/

/**
 * @file fixedwing_control.c
 * Implementation of a fixed wing attitude and position controller.
 */

#include <nuttx/config.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <unistd.h>
#include <fcntl.h>
#include <errno.h>
#include <math.h>
#include <poll.h>
#include <time.h>
#include <arch/board/up_hrt.h>
#include <arch/board/board.h>
#include <uORB/uORB.h>
#include <uORB/topics/vehicle_global_position.h>
#include <uORB/topics/vehicle_global_position_setpoint.h>
#include <uORB/topics/vehicle_attitude.h>
#include <uORB/topics/vehicle_status.h>
#include <uORB/topics/vehicle_attitude_setpoint.h>
#include <uORB/topics/manual_control_setpoint.h>
#include <uORB/topics/actuator_controls.h>
#include <systemlib/param/param.h>
#include <systemlib/pid/pid.h>
#include <systemlib/geo/geo.h>
#include <uORB/topics/debug_key_value.h>

static bool thread_should_exit = false;		/**< Deamon exit flag */
static bool thread_running = false;		/**< Deamon status flag */
static int deamon_task;				/**< Handle of deamon task / thread */

/**
 * Deamon management function.
 */
__EXPORT int fixedwing_control_main(int argc, char *argv[]);

/**
 * Mainloop of deamon.
 */
int fixedwing_control_thread_main(int argc, char *argv[]);

/**
 * Print the correct usage.
 */
static void usage(const char *reason);

/*
 * Controller parameters, accessible via MAVLink
 *
 */
PARAM_DEFINE_FLOAT(FW_ROLL_POS_P, 0.3f);
PARAM_DEFINE_FLOAT(FW_ROLL_POS_I, 0.002f);
PARAM_DEFINE_FLOAT(FW_ROLL_POS_AWU, 0.2f);
PARAM_DEFINE_FLOAT(FW_ROLL_POS_LIM, 0.6f);

struct fw_att_control_params {
	float roll_pos_p;
	float roll_pos_i;
	float roll_pos_awu;
	float roll_pos_lim;
};

struct fw_att_control_param_handles {
	param_t roll_pos_p;
	param_t roll_pos_i;
	param_t roll_pos_awu;
	param_t roll_pos_lim;
};


// XXX outsource position control to a separate app some time

PARAM_DEFINE_FLOAT(FW_HEADING_P, 0.1f);
PARAM_DEFINE_FLOAT(FW_HEADING_LIM, 0.15f);

struct fw_pos_control_params {
	float heading_p;
	float heading_lim;
};

struct fw_pos_control_param_handles {
	param_t heading_p;
	param_t heading_lim;
};

/**
 * Initialize all parameter handles and values
 *
 */
static int att_parameters_init(struct fw_att_control_param_handles *h);

/**
 * Update all parameters
 *
 */
static int att_parameters_update(const struct fw_att_control_param_handles *h, struct fw_att_control_params *p);

/**
 * Initialize all parameter handles and values
 *
 */
static int pos_parameters_init(struct fw_pos_control_param_handles *h);

/**
 * Update all parameters
 *
 */
static int pos_parameters_update(const struct fw_pos_control_param_handles *h, struct fw_pos_control_params *p);


/**
 * The fixed wing control main loop.
 *
 * This loop executes continously and calculates the control
 * response.
 *
 * @param argc number of arguments
 * @param argv argument array
 *
 * @return 0
 *
 */
int fixedwing_control_thread_main(int argc, char *argv[])
{
	/* read arguments */
	bool verbose = false;

	for (int i = 1; i < argc; i++) {
		if (strcmp(argv[i], "-v") == 0 || strcmp(argv[i], "--verbose") == 0) {
			verbose = true;
		}
	}

	/* welcome user */
	printf("[fixedwing control] started\n");

	/* output structs */
	struct actuator_controls_s actuators;
	struct vehicle_attitude_setpoint_s att_sp;
	memset(&att_sp, 0, sizeof(att_sp));

	/* publish actuator controls */
	for (unsigned i = 0; i < NUM_ACTUATOR_CONTROLS; i++)
		actuators.control[i] = 0.0f;
	orb_advert_t actuator_pub = orb_advertise(ORB_ID_VEHICLE_ATTITUDE_CONTROLS, &actuators);
	orb_advert_t att_sp_pub = orb_advertise(ORB_ID(vehicle_attitude_setpoint), &att_sp);

	/* Subscribe to global position, attitude and rc */
	/* declare and safely initialize all structs */
	struct vehicle_status_s state;
	memset(&state, 0, sizeof(state));
	struct vehicle_attitude_s att;
	memset(&att_sp, 0, sizeof(att_sp));
	struct manual_control_setpoint_s manual;
	memset(&manual, 0, sizeof(manual));

	/* subscribe to attitude, motor setpoints and system state */
	struct vehicle_global_position_s global_pos;
	int global_pos_sub = orb_subscribe(ORB_ID(vehicle_global_position));
	struct vehicle_global_position_setpoint_s global_setpoint;
	int global_setpoint_sub = orb_subscribe(ORB_ID(vehicle_global_position_setpoint));
	int att_sub = orb_subscribe(ORB_ID(vehicle_attitude));
	int att_setpoint_sub = orb_subscribe(ORB_ID(vehicle_attitude_setpoint));
	int state_sub = orb_subscribe(ORB_ID(vehicle_status));
	int manual_sub = orb_subscribe(ORB_ID(manual_control_setpoint));

	/* Mainloop setup */
	unsigned int loopcounter = 0;

	uint64_t last_run = 0;
	uint64_t last_run_pos = 0;

	bool global_sp_updated_set_once = false;

	struct fw_att_control_params p;
	struct fw_att_control_param_handles h;

	struct fw_pos_control_params ppos;
	struct fw_pos_control_param_handles hpos;

	/* initialize the pid controllers */
	att_parameters_init(&h);
	att_parameters_update(&h, &p);

	pos_parameters_init(&hpos);
	pos_parameters_update(&hpos, &ppos);

	PID_t roll_pos_controller;
	pid_init(&roll_pos_controller, p.roll_pos_p, p.roll_pos_i, 0.0f, p.roll_pos_awu,
			PID_MODE_DERIVATIV_SET);

	PID_t heading_controller;
	pid_init(&heading_controller, ppos.heading_p, 0.0f, 0.0f, 0.0f,
			PID_MODE_DERIVATIV_SET);

	// XXX remove in production
	/* advertise debug value */
	struct debug_key_value_s dbg = { .key = "", .value = 0.0f };
	orb_advert_t pub_dbg = orb_advertise(ORB_ID(debug_key_value), &dbg);

	while(!thread_should_exit) {

		struct pollfd fds[1] = {
			{ .fd = att_sub,   .events = POLLIN },
		};
		int ret = poll(fds, 1, 1000);

		if (ret < 0) {
			/* XXX this is seriously bad - should be an emergency */
		} else if (ret == 0) {
			/* XXX this means no sensor data - should be critical or emergency */
			printf("[fixedwing control] WARNING: Not getting attitude - estimator running?\n");
		} else {

			// FIXME SUBSCRIBE
			if (loopcounter % 20 == 0) {
				att_parameters_update(&h, &p);
				pos_parameters_update(&hpos, &ppos);
				pid_set_parameters(&roll_pos_controller, p.roll_pos_p, p.roll_pos_i, 0.0f, p.roll_pos_awu);
				pid_set_parameters(&heading_controller, ppos.heading_p, 0.0f, 0.0f, 0.0f);
			}

			/* if position updated, run position control loop */
			bool pos_updated;
			orb_check(global_pos_sub, &pos_updated);
			bool global_sp_updated;
			orb_check(global_setpoint_sub, &global_sp_updated);
			if (global_sp_updated) {
				global_sp_updated_set_once = true;
			}
			/* checking has to happen before the read, as the read clears the changed flag */

			/* get a local copy of system state */
			orb_copy(ORB_ID(vehicle_status), state_sub, &state);
			/* get a local copy of manual setpoint */
			orb_copy(ORB_ID(manual_control_setpoint), manual_sub, &manual);
			/* get a local copy of attitude */
			orb_copy(ORB_ID(vehicle_attitude), att_sub, &att);
			/* get a local copy of attitude setpoint */
			//orb_copy(ORB_ID(vehicle_attitude_setpoint), att_setpoint_sub, &att_sp);
			// XXX update to switch between external attitude reference and the
			// attitude calculated here

			char name[10];

			if (pos_updated) {

				/* get position */
				orb_copy(ORB_ID(vehicle_global_position), global_pos_sub, &global_pos);
				
				if (global_sp_updated_set_once) {
					orb_copy(ORB_ID(vehicle_global_position_setpoint), global_setpoint_sub, &global_setpoint);
				
			
					/* calculate delta T */
					const float deltaT = (hrt_absolute_time() - last_run) / 1000000.0f;
					last_run = hrt_absolute_time();

					/* calculate bearing error */
					float target_bearing = get_bearing_to_next_waypoint(global_pos.lat / (double)1e7d, global_pos.lon / (double)1e7d,
						global_setpoint.lat / (double)1e7d, global_setpoint.lon / (double)1e7d);

					/* shift error to prevent wrapping issues */
					float bearing_error = target_bearing - att.yaw;

					if (loopcounter % 2 == 0) {
						sprintf(name, "hdng err1");
						memcpy(dbg.key, name, sizeof(name));
						dbg.value = bearing_error;
						orb_publish(ORB_ID(debug_key_value), pub_dbg, &dbg);
					}

					if (bearing_error < M_PI_F) {
						bearing_error += 2.0f * M_PI_F;
					}

					if (bearing_error > M_PI_F) {
						bearing_error -= 2.0f * M_PI_F;
					}

					if (loopcounter % 2 != 0) {
						sprintf(name, "hdng err2");
						memcpy(dbg.key, name, sizeof(name));
						dbg.value = bearing_error;
						orb_publish(ORB_ID(debug_key_value), pub_dbg, &dbg);
					}

					/* calculate roll setpoint, do this artificially around zero */
					att_sp.roll_body = pid_calculate(&heading_controller, bearing_error,
					0.0f, att.yawspeed, deltaT);

					/* limit roll angle output */
					if (att_sp.roll_body > ppos.heading_lim) {
						att_sp.roll_body = ppos.heading_lim;
						heading_controller.saturated = 1;
					}

					if (att_sp.roll_body < -ppos.heading_lim) {
						att_sp.roll_body = -ppos.heading_lim;
						heading_controller.saturated = 1;
					}

					att_sp.pitch_body = 0.0f;
					att_sp.yaw_body = 0.0f;

				} else {
					/* no setpoint, maintain level flight */
					att_sp.roll_body = 0.0f;
					att_sp.pitch_body = 0.0f;
					att_sp.yaw_body = 0.0f;
				}

				att_sp.thrust = 0.7f;
			}

			/* calculate delta T */
			const float deltaTpos = (hrt_absolute_time() - last_run_pos) / 1000000.0f;
			last_run_pos = hrt_absolute_time();

			if (verbose && (loopcounter % 20 == 0)) {
				printf("[fixedwing control] roll sp: %8.4f, \n", att_sp.roll_body);
			}

			// actuators.control[0] = pid_calculate(&roll_pos_controller, att_sp.roll_body,
			// 		att.roll, att.rollspeed, deltaTpos);
						actuators.control[0] = pid_calculate(&roll_pos_controller, att_sp.roll_body,
					att.roll, att.rollspeed, deltaTpos);
			actuators.control[1] = 0;
			actuators.control[2] = 0;
			actuators.control[3] = att_sp.thrust;

			/* publish attitude setpoint (for MAVLink) */
			orb_publish(ORB_ID(vehicle_attitude_setpoint), att_sp_pub, &att_sp);

			/* publish actuator setpoints (for mixer) */
			orb_publish(ORB_ID_VEHICLE_ATTITUDE_CONTROLS, actuator_pub, &actuators);

			loopcounter++;

		}
	}

	printf("[fixedwing_control] exiting.\n");
	thread_running = false;

	return 0;
}

static void
usage(const char *reason)
{
	if (reason)
		fprintf(stderr, "%s\n", reason);
	fprintf(stderr, "usage: fixedwing_control {start|stop|status}\n\n");
	exit(1);
}

/**
 * The deamon app only briefly exists to start
 * the background job. The stack size assigned in the
 * Makefile does only apply to this management task.
 * 
 * The actual stack size should be set in the call
 * to task_create().
 */
int fixedwing_control_main(int argc, char *argv[])
{
	if (argc < 1)
		usage("missing command");

	if (!strcmp(argv[1], "start")) {

		if (thread_running) {
			printf("fixedwing_control already running\n");
			/* this is not an error */
			exit(0);
		}

		thread_should_exit = false;
		deamon_task = task_create("fixedwing_control", SCHED_PRIORITY_MAX - 20, 4096, fixedwing_control_thread_main, (argv) ? (const char **)&argv[2] : (const char **)NULL);
		thread_running = true;
		exit(0);
	}

	if (!strcmp(argv[1], "stop")) {
		thread_should_exit = true;
		exit(0);
	}

	if (!strcmp(argv[1], "status")) {
		if (thread_running) {
			printf("\tfixedwing_control is running\n");
		} else {
			printf("\tfixedwing_control not started\n");
		}
		exit(0);
	}

	usage("unrecognized command");
	exit(1);
}

static int att_parameters_init(struct fw_att_control_param_handles *h)
{
	/* PID parameters */
	h->roll_pos_p 	=	param_find("FW_ROLL_POS_P");
	h->roll_pos_i 	=	param_find("FW_ROLL_POS_I");
	h->roll_pos_lim =	param_find("FW_ROLL_POS_LIM");
	h->roll_pos_awu =	param_find("FW_ROLL_POS_AWU");

	return OK;
}

static int att_parameters_update(const struct fw_att_control_param_handles *h, struct fw_att_control_params *p)
{
	param_get(h->roll_pos_p, &(p->roll_pos_p));
	param_get(h->roll_pos_i, &(p->roll_pos_i));
	param_get(h->roll_pos_lim, &(p->roll_pos_lim));
	param_get(h->roll_pos_awu, &(p->roll_pos_awu));

	return OK;
}

static int pos_parameters_init(struct fw_pos_control_param_handles *h)
{
	/* PID parameters */
	h->heading_p 	=	param_find("FW_HEADING_P");
	h->heading_lim 	=	param_find("FW_HEADING_LIM");

	return OK;
}

static int pos_parameters_update(const struct fw_pos_control_param_handles *h, struct fw_pos_control_params *p)
{
	param_get(h->heading_p, &(p->heading_p));
	param_get(h->heading_lim, &(p->heading_lim));

	return OK;
}