[FIXEDWING] convert gls (gps landing) to a module

This commit is contained in:
Loic Drumettaz
2013-08-22 12:45:59 +02:00
committed by Felix Ruess
parent f5a8565cc9
commit 00b872ed00
4 changed files with 20 additions and 3 deletions
@@ -14,6 +14,5 @@ $(TARGET).srcs += $(SRC_SUBSYSTEMS)/navigation/nav_survey_rectangle.c $(SRC_SUBS
$(TARGET).srcs += $(SRC_SUBSYSTEMS)/navigation/OSAMNav.c $(TARGET).srcs += $(SRC_SUBSYSTEMS)/navigation/OSAMNav.c
$(TARGET).srcs += $(SRC_SUBSYSTEMS)/navigation/snav.c $(TARGET).srcs += $(SRC_SUBSYSTEMS)/navigation/snav.c
$(TARGET).srcs += $(SRC_SUBSYSTEMS)/navigation/poly_survey_adv.c $(TARGET).srcs += $(SRC_SUBSYSTEMS)/navigation/poly_survey_adv.c
$(TARGET).srcs += $(SRC_SUBSYSTEMS)/navigation/gls.c
$(TARGET).srcs += $(SRC_SUBSYSTEMS)/navigation/border_line.c $(TARGET).srcs += $(SRC_SUBSYSTEMS)/navigation/border_line.c
+18
View File
@@ -0,0 +1,18 @@
<!DOCTYPE module SYSTEM "module.dtd">
<module name="nav_gls" dir="nav">
<doc>
<description>
gps landing system
* -automatic calculation of top of decent for const app angle
* -smooth intercept posible
* -landing direction is set by app fix / also possible in flight!!!
</description>
</doc>
<header>
<file name="nav_gls.h"/>
</header>
<makefile>
<file name="nav_gls.c"/>
</makefile>
</module>
@@ -46,7 +46,7 @@
#include "generated/airframe.h" #include "generated/airframe.h"
#include "state.h" #include "state.h"
#include "subsystems/navigation/gls.h" #include "modules/nav/nav_gls.h"
#include "subsystems/nav.h" #include "subsystems/nav.h"
#include "generated/flight_plan.h" #include "generated/flight_plan.h"
@@ -20,7 +20,7 @@
*/ */
/** /**
* @file subsystems/navigation/gls.h * @file modules/nav/nav_gls.h
* @brief gps landing system * @brief gps landing system
*/ */