2015-01-02 18:44:28 -04:00
|
|
|
#include <math.h>
|
2014-04-28 15:29:45 -03:00
|
|
|
#include <stdio.h>
|
2015-03-02 15:32:39 -04:00
|
|
|
#include <stdlib.h>
|
2014-04-28 15:29:45 -03:00
|
|
|
#include <string.h>
|
2015-01-02 18:44:28 -04:00
|
|
|
#include <unistd.h>
|
|
|
|
|
2014-04-28 15:29:45 -03:00
|
|
|
#include <drivers/drv_hrt.h>
|
2014-04-28 15:42:46 -03:00
|
|
|
#include <geo/geo.h>
|
2015-01-02 18:44:28 -04:00
|
|
|
#include <px4iofirmware/px4io.h>
|
|
|
|
#include <systemlib/err.h>
|
|
|
|
#include <systemlib/mixer/mixer.h>
|
2014-04-28 15:29:45 -03:00
|
|
|
|
2015-01-02 18:44:28 -04:00
|
|
|
#include "gtest/gtest.h"
|
2014-12-20 13:51:31 -04:00
|
|
|
|
2015-03-02 15:32:39 -04:00
|
|
|
TEST(AutoDeclinationTest, AutoDeclination)
|
|
|
|
{
|
2015-01-02 18:44:28 -04:00
|
|
|
ASSERT_NEAR(get_mag_declination(47.0, 8.0), 0.6, 0.5) << "declination differs more than 1 degree";
|
2014-05-03 07:40:11 -03:00
|
|
|
}
|