Paparazzi UAS
v5.15_devel-230-gc96ce27
Paparazzi is a free software Unmanned Aircraft System.
Main Page
Related Pages
Modules
Data Structures
Files
File List
Globals
All
Data Structures
Namespaces
Files
Functions
Variables
Typedefs
Enumerations
Enumerator
Macros
Modules
Pages
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 "
subsystems/navigation/common_flight_plan.h
"
28
29
#include "generated/flight_plan.h"
30
31
33
uint16_t
stage_time
,
block_time
;
34
35
uint8_t
nav_stage
,
nav_block
;
36
38
uint8_t
last_block
,
last_stage
;
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
}
block_time
uint16_t block_time
Definition:
common_flight_plan.c:33
uint16_t
unsigned short uint16_t
Definition:
types.h:16
last_block
uint8_t last_block
To save the current block/stage to enable return.
Definition:
common_flight_plan.c:38
InitStage
#define InitStage()
Definition:
common_flight_plan.h:44
nav_block
uint8_t nav_block
Definition:
common_flight_plan.c:35
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:33
nav_stage
uint8_t nav_stage
Definition:
common_flight_plan.c:35
uint8_t
unsigned char uint8_t
Definition:
types.h:14
last_stage
uint8_t last_stage
Definition:
common_flight_plan.c:38
common_flight_plan.h
Common flight_plan functions shared between fixedwing and rotorcraft.
nav_goto_block
void nav_goto_block(uint8_t b)
Definition:
common_flight_plan.c:51
sw
airborne
subsystems
navigation
common_flight_plan.c
Generated on Wed Feb 10 2021 04:34:23 for Paparazzi UAS by
1.8.8