2016-12-19 02:53:48 -04:00
|
|
|
/*
|
|
|
|
* This file is free software: you can redistribute it and/or modify it
|
|
|
|
* under the terms of the GNU General Public License as published by the
|
|
|
|
* Free Software Foundation, either version 3 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This file is distributed in the hope that it will be useful, but
|
|
|
|
* WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
|
|
|
|
* See the GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License along
|
|
|
|
* with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include <AP_Common/AP_Common.h>
|
|
|
|
#include <AP_HAL/AP_HAL.h>
|
|
|
|
#include <AP_HAL/I2CDevice.h>
|
|
|
|
#include <AP_Math/AP_Math.h>
|
|
|
|
|
|
|
|
#include "AP_Compass.h"
|
|
|
|
#include "AP_Compass_Backend.h"
|
|
|
|
|
|
|
|
#ifndef HAL_COMPASS_MMC3416_I2C_ADDR
|
|
|
|
# define HAL_COMPASS_MMC3416_I2C_ADDR 0x30
|
|
|
|
#endif
|
|
|
|
|
|
|
|
class AP_Compass_MMC3416 : public AP_Compass_Backend
|
|
|
|
{
|
|
|
|
public:
|
2018-08-06 19:21:27 -03:00
|
|
|
static AP_Compass_Backend *probe(AP_HAL::OwnPtr<AP_HAL::I2CDevice> dev,
|
2019-09-01 19:17:05 -03:00
|
|
|
bool force_external,
|
|
|
|
enum Rotation rotation);
|
2016-12-19 02:53:48 -04:00
|
|
|
|
|
|
|
void read() override;
|
|
|
|
|
|
|
|
static constexpr const char *name = "MMC3416";
|
|
|
|
|
|
|
|
private:
|
2018-08-06 19:21:27 -03:00
|
|
|
AP_Compass_MMC3416(AP_HAL::OwnPtr<AP_HAL::Device> dev,
|
2016-12-19 02:53:48 -04:00
|
|
|
bool force_external,
|
|
|
|
enum Rotation rotation);
|
|
|
|
|
|
|
|
AP_HAL::OwnPtr<AP_HAL::Device> dev;
|
2016-12-19 03:55:29 -04:00
|
|
|
|
|
|
|
enum {
|
|
|
|
STATE_REFILL1,
|
|
|
|
STATE_REFILL1_WAIT,
|
|
|
|
STATE_MEASURE_WAIT1,
|
|
|
|
STATE_REFILL2_WAIT,
|
|
|
|
STATE_MEASURE_WAIT2,
|
2016-12-19 06:11:00 -04:00
|
|
|
STATE_MEASURE_WAIT3,
|
2016-12-19 03:55:29 -04:00
|
|
|
} state;
|
2016-12-19 02:53:48 -04:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Device periodic callback to read data from the sensor.
|
|
|
|
*/
|
|
|
|
bool init();
|
2017-06-08 02:12:15 -03:00
|
|
|
void timer();
|
2016-12-19 06:11:00 -04:00
|
|
|
void accumulate_field(Vector3f &field);
|
2016-12-19 02:53:48 -04:00
|
|
|
|
|
|
|
uint8_t compass_instance;
|
|
|
|
bool force_external;
|
2016-12-19 06:11:00 -04:00
|
|
|
Vector3f offset;
|
2016-12-19 18:12:37 -04:00
|
|
|
uint16_t measure_count;
|
2016-12-19 06:11:00 -04:00
|
|
|
bool have_initial_offset;
|
2016-12-19 18:12:37 -04:00
|
|
|
uint32_t refill_start_ms;
|
|
|
|
uint32_t last_sample_ms;
|
|
|
|
|
2016-12-19 03:55:29 -04:00
|
|
|
uint16_t data0[3];
|
|
|
|
|
2016-12-19 02:53:48 -04:00
|
|
|
enum Rotation rotation;
|
|
|
|
};
|