Paparazzi UAS
v7.0_unstable
Paparazzi is a free software Unmanned Aircraft System.
common_flight_plan.c
Go to the documentation of this file.
1
/*
2
* Copyright (C) 2007-2009 ENAC, Pascal Brisset, Antoine Drouin
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
27
#include "
modules/nav/common_flight_plan.h
"
28
29
#include "generated/flight_plan.h"
30
32
uint16_t
stage_time
,
block_time
;
33
34
uint8_t
nav_stage
,
nav_block
;
35
37
uint8_t
last_block
,
last_stage
;
38
uint8_t
last_wp
UNUSED
;
39
40
41
void
nav_init_block
(
void
)
42
{
43
if
(
nav_block
>= NB_BLOCK) {
44
nav_block
= NB_BLOCK - 1;
45
}
46
nav_stage
= 0;
47
block_time
= 0;
48
InitStage
();
49
}
50
51
void
nav_goto_block
(
uint8_t
b
)
52
{
53
if
(
b
!=
nav_block
) {
/* To avoid a loop in a the current block */
54
last_block
=
nav_block
;
55
last_stage
=
nav_stage
;
56
}
57
nav_block
=
b
;
58
nav_init_block
();
59
}
60
nav_stage
uint8_t nav_stage
Definition:
common_flight_plan.c:34
last_block
uint8_t last_block
To save the current block/stage to enable return.
Definition:
common_flight_plan.c:37
last_stage
uint8_t last_stage
Definition:
common_flight_plan.c:37
UNUSED
uint8_t last_wp UNUSED
Definition:
common_flight_plan.c:38
nav_block
uint8_t nav_block
Definition:
common_flight_plan.c:34
nav_init_block
void nav_init_block(void)
Definition:
common_flight_plan.c:41
stage_time
uint16_t stage_time
In s.
Definition:
common_flight_plan.c:32
nav_goto_block
void nav_goto_block(uint8_t b)
Definition:
common_flight_plan.c:51
block_time
uint16_t block_time
Definition:
common_flight_plan.c:32
common_flight_plan.h
Common flight_plan functions shared between fixedwing and rotorcraft.
last_wp
uint8_t last_wp
InitStage
#define InitStage()
Definition:
common_flight_plan.h:45
uint16_t
unsigned short uint16_t
Typedef defining 16 bit unsigned short type.
Definition:
vl53l1_types.h:88
uint8_t
unsigned char uint8_t
Typedef defining 8 bit unsigned char type.
Definition:
vl53l1_types.h:98
b
float b
Definition:
wedgebug.c:202
sw
airborne
modules
nav
common_flight_plan.c
Generated on Thu Sep 5 2024 08:47:56 for Paparazzi UAS by
1.9.1