Skip to content

Commit

Permalink
Moved gps_conversion to common/ directory
Browse files Browse the repository at this point in the history
  • Loading branch information
martinbudden authored and borisbstyle committed Jan 31, 2017
1 parent 3e85d1f commit ca11e3d
Show file tree
Hide file tree
Showing 5 changed files with 19 additions and 19 deletions.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -650,14 +650,14 @@ HIGHEND_SRC = \
cms/cms_menu_osd.c \
cms/cms_menu_vtx.c \
common/colorconversion.c \
common/gps_conversion.c \
drivers/display_ug2864hsweg01.c \
drivers/light_ws2811strip.c \
drivers/serial_escserial.c \
drivers/serial_softserial.c \
drivers/sonar_hcsr04.c \
drivers/vtx_common.c \
flight/navigation.c \
flight/gps_conversion.c \
io/dashboard.c \
io/displayport_max7456.c \
io/displayport_msp.c \
Expand Down
File renamed without changes.
File renamed without changes.
16 changes: 8 additions & 8 deletions src/main/flight/navigation.c
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@
#include "build/debug.h"

#include "common/axis.h"
#include "common/gps_conversion.h"
#include "common/maths.h"
#include "common/time.h"

Expand All @@ -36,21 +37,20 @@
#include "fc/rc_controls.h"
#include "fc/runtime_config.h"

#include "sensors/sensors.h"
#include "sensors/boardalignment.h"
#include "sensors/acceleration.h"
#include "flight/imu.h"
#include "flight/navigation.h"
#include "flight/pid.h"

#include "io/beeper.h"
#include "io/serial.h"
#include "io/gps.h"

#include "flight/pid.h"
#include "flight/navigation.h"
#include "flight/gps_conversion.h"
#include "flight/imu.h"

#include "rx/rx.h"

#include "sensors/acceleration.h"
#include "sensors/boardalignment.h"
#include "sensors/sensors.h"


extern int16_t magHold;

Expand Down
20 changes: 10 additions & 10 deletions src/main/io/gps.c
Original file line number Diff line number Diff line change
Expand Up @@ -29,27 +29,27 @@
#include "build/build_config.h"
#include "build/debug.h"

#include "common/maths.h"
#include "common/axis.h"
#include "common/gps_conversion.h"
#include "common/maths.h"
#include "common/utils.h"

#include "drivers/system.h"
#include "drivers/light_led.h"
#include "config/feature.h"

#include "sensors/sensors.h"
#include "drivers/light_led.h"
#include "drivers/system.h"

#include "io/serial.h"
#include "io/dashboard.h"
#include "io/gps.h"

#include "flight/gps_conversion.h"
#include "flight/pid.h"
#include "flight/navigation.h"
#include "io/serial.h"

#include "fc/config.h"
#include "fc/runtime_config.h"

#include "config/feature.h"
#include "flight/navigation.h"
#include "flight/pid.h"

#include "sensors/sensors.h"

#define LOG_ERROR '?'
#define LOG_IGNORED '!'
Expand Down

0 comments on commit ca11e3d

Please sign in to comment.