Paparazzi UAS v7.0_unstable
Paparazzi is a free software Unmanned Aircraft System.
All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Modules Pages
follow.c
Go to the documentation of this file.
1/*
2 * Copyright (C) 2014 Freek van Tienen
3 *
4 * This file is part of paparazzi.
5 *
6 * paparazzi is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 2, or (at your option)
9 * any later version.
10 *
11 * paparazzi is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
15 *
16 * You should have received a copy of the GNU General Public License
17 * along with paparazzi; see the file COPYING. If not, write to
18 * the Free Software Foundation, 59 Temple Place - Suite 330,
19 * Boston, MA 02111-1307, USA.
20 *
21 */
22
28#include "multi/follow.h"
29#include "generated/airframe.h"
30#include "generated/flight_plan.h"
31
33
34#include "state.h"
35
36/* FOLLOW_OFFSET_ X Y and Z are all in ENU frame */
37#ifndef FOLLOW_OFFSET_X
38#define FOLLOW_OFFSET_X 0.0
39#endif
40
41#ifndef FOLLOW_OFFSET_Y
42#define FOLLOW_OFFSET_Y 0.0
43#endif
44
45#ifndef FOLLOW_OFFSET_Z
46#define FOLLOW_OFFSET_Z 0.0
47#endif
48
49#ifndef FOLLOW_AC_ID
50#error "Please define FOLLOW_AC_ID"
51#endif
52
53#ifndef FOLLOW_WAYPOINT_ID
54#error "Please define FOLLOW_WAYPOINT_ID"
55#endif
56
57void follow_init(void) {}
58
59/*
60 * follow_wp(void)
61 * updates the FOLLOW_WAYPOINT_ID to a fixed offset from the last received location
62 * of other aircraft with id FOLLOW_AC_ID
63 */
void follow_wp(void)
Definition follow.c:64
#define FOLLOW_OFFSET_Y
Definition follow.c:42
#define FOLLOW_OFFSET_Z
Definition follow.c:46
void follow_init(void)
Definition follow.c:57
#define FOLLOW_OFFSET_X
Definition follow.c:38
Follow a certain AC id.
static struct EnuCoor_i * acInfoGetPositionEnu_i(uint8_t ac_id)
Get position in local ENU coordinates (int).
#define POS_BFP_OF_REAL(_af)
vector in East North Up coordinates
static struct EnuCoor_i * stateGetPositionEnu_i(void)
Get position in local ENU coordinates (int).
Definition state.h:803
uint16_t foo
Definition main_demo5.c:58
void waypoint_move_enu_i(uint8_t wp_id, struct EnuCoor_i *new_pos)
Definition waypoints.c:189
API to get/set the generic vehicle states.