2017-06-16 02:52:02 -03: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-19 21:05:13 -04:00
|
|
|
#include "AP_Compass_config.h"
|
|
|
|
|
|
|
|
#if AP_COMPASS_QMC5883L_ENABLED
|
|
|
|
|
2017-06-16 02:52:02 -03: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.h"
|
|
|
|
#include "AP_Compass_Backend.h"
|
|
|
|
|
|
|
|
#ifndef HAL_COMPASS_QMC5883L_I2C_ADDR
|
|
|
|
#define HAL_COMPASS_QMC5883L_I2C_ADDR 0x0D
|
|
|
|
#endif
|
|
|
|
|
2018-07-30 03:34:08 -03:00
|
|
|
/*
|
|
|
|
setup default orientations
|
|
|
|
*/
|
|
|
|
#ifndef HAL_COMPASS_QMC5883L_ORIENTATION_EXTERNAL
|
|
|
|
#define HAL_COMPASS_QMC5883L_ORIENTATION_EXTERNAL ROTATION_ROLL_180
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifndef HAL_COMPASS_QMC5883L_ORIENTATION_INTERNAL
|
|
|
|
#define HAL_COMPASS_QMC5883L_ORIENTATION_INTERNAL ROTATION_ROLL_180_YAW_270
|
|
|
|
#endif
|
|
|
|
|
2017-06-16 02:52:02 -03:00
|
|
|
class AP_Compass_QMC5883L : 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,
|
2017-06-22 03:37:00 -03:00
|
|
|
bool force_external,
|
2019-09-01 19:17:05 -03:00
|
|
|
enum Rotation rotation);
|
2017-06-16 02:52:02 -03:00
|
|
|
|
|
|
|
void read() override;
|
|
|
|
|
|
|
|
static constexpr const char *name = "QMC5883L";
|
|
|
|
|
|
|
|
private:
|
2018-08-06 19:21:27 -03:00
|
|
|
AP_Compass_QMC5883L(AP_HAL::OwnPtr<AP_HAL::Device> dev,
|
|
|
|
bool force_external,
|
|
|
|
enum Rotation rotation);
|
2017-06-16 02:52:02 -03:00
|
|
|
|
2017-07-28 03:34:23 -03:00
|
|
|
void _dump_registers();
|
2017-07-25 07:33:26 -03:00
|
|
|
bool _check_whoami();
|
2017-06-16 02:52:02 -03:00
|
|
|
void timer();
|
|
|
|
bool init();
|
|
|
|
|
|
|
|
AP_HAL::OwnPtr<AP_HAL::Device> _dev;
|
|
|
|
|
|
|
|
enum Rotation _rotation;
|
|
|
|
uint8_t _instance;
|
2017-06-22 03:37:00 -03:00
|
|
|
bool _force_external:1;
|
2017-06-16 02:52:02 -03:00
|
|
|
};
|
2023-02-19 21:05:13 -04:00
|
|
|
|
|
|
|
#endif // AP_COMPASS_QMC5883L_ENABLED
|