/* * 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 . */ #pragma once #include #include #include #include #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: static AP_Compass_Backend *probe(Compass &compass, AP_HAL::OwnPtr dev, bool force_external = false, enum Rotation rotation = ROTATION_NONE); void read() override; static constexpr const char *name = "MMC3416"; private: AP_Compass_MMC3416(Compass &compass, AP_HAL::OwnPtr dev, bool force_external, enum Rotation rotation); AP_HAL::OwnPtr dev; enum { STATE_REFILL1, STATE_REFILL1_WAIT, STATE_MEASURE_WAIT1, STATE_REFILL2_WAIT, STATE_MEASURE_WAIT2, STATE_MEASURE_WAIT3, } state; /** * Device periodic callback to read data from the sensor. */ bool init(); void timer(); void accumulate_field(Vector3f &field); uint8_t compass_instance; Vector3f accum; uint16_t accum_count; bool force_external; Vector3f offset; uint16_t measure_count; bool have_initial_offset; uint32_t refill_start_ms; uint32_t last_sample_ms; uint16_t data0[3]; enum Rotation rotation; };