2016-12-07 11:12:40 -04:00
|
|
|
/*
|
|
|
|
* Copyright (C) 2016 Emlid Ltd. All rights reserved.
|
|
|
|
*
|
|
|
|
* 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
|
|
|
|
|
2023-02-09 21:48:02 -04:00
|
|
|
#include "AP_Compass_config.h"
|
|
|
|
|
|
|
|
#if AP_COMPASS_IST8310_ENABLED
|
|
|
|
|
2016-12-07 11:12:40 -04:00
|
|
|
#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_Backend.h"
|
|
|
|
|
2017-09-15 23:03:43 -03:00
|
|
|
#ifndef HAL_COMPASS_IST8310_I2C_ADDR
|
|
|
|
#define HAL_COMPASS_IST8310_I2C_ADDR 0x0E
|
|
|
|
#endif
|
|
|
|
|
2016-12-07 11:12:40 -04:00
|
|
|
class AP_Compass_IST8310 : 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-07 11:12:40 -04:00
|
|
|
|
|
|
|
void read() override;
|
|
|
|
|
|
|
|
static constexpr const char *name = "IST8310";
|
|
|
|
|
|
|
|
private:
|
2018-08-06 19:21:27 -03:00
|
|
|
AP_Compass_IST8310(AP_HAL::OwnPtr<AP_HAL::Device> dev,
|
2017-09-15 23:03:43 -03:00
|
|
|
bool force_external,
|
2016-12-08 20:05:57 -04:00
|
|
|
enum Rotation rotation);
|
2016-12-07 11:12:40 -04:00
|
|
|
|
2017-01-13 15:26:14 -04:00
|
|
|
void timer();
|
2016-12-07 11:12:40 -04:00
|
|
|
bool init();
|
|
|
|
void start_conversion();
|
|
|
|
|
|
|
|
AP_HAL::OwnPtr<AP_HAL::Device> _dev;
|
2017-03-01 05:33:29 -04:00
|
|
|
AP_HAL::Device::PeriodicHandle _periodic_handle;
|
2017-02-24 22:16:45 -04:00
|
|
|
|
2016-12-08 20:05:57 -04:00
|
|
|
enum Rotation _rotation;
|
|
|
|
uint8_t _instance;
|
2017-03-01 05:33:29 -04:00
|
|
|
bool _ignore_next_sample;
|
2017-09-15 23:03:43 -03:00
|
|
|
bool _force_external;
|
2016-12-07 11:12:40 -04:00
|
|
|
};
|
2023-02-09 21:48:02 -04:00
|
|
|
|
|
|
|
#endif // AP_COMPASS_IST8310_ENABLED
|