2019-08-06 12:55:25 -04:00
|
|
|
/****************************************************************************
|
|
|
|
|
*
|
|
|
|
|
* Copyright (c) 2019 PX4 Development Team. All rights reserved.
|
|
|
|
|
*
|
|
|
|
|
* Redistribution and use in source and binary forms, with or without
|
|
|
|
|
* modification, are permitted provided that the following conditions
|
|
|
|
|
* are met:
|
|
|
|
|
*
|
|
|
|
|
* 1. Redistributions of source code must retain the above copyright
|
|
|
|
|
* notice, this list of conditions and the following disclaimer.
|
|
|
|
|
* 2. Redistributions in binary form must reproduce the above copyright
|
|
|
|
|
* notice, this list of conditions and the following disclaimer in
|
|
|
|
|
* the documentation and/or other materials provided with the
|
|
|
|
|
* distribution.
|
|
|
|
|
* 3. Neither the name PX4 nor the names of its contributors may be
|
|
|
|
|
* used to endorse or promote products derived from this software
|
|
|
|
|
* without specific prior written permission.
|
|
|
|
|
*
|
|
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
|
|
|
|
* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
|
|
|
|
* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
|
|
|
|
|
* FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
|
|
|
|
|
* COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
|
|
|
|
|
* INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
|
|
|
|
|
* BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS
|
|
|
|
|
* OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
|
|
|
|
|
* AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
|
|
|
|
|
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
|
|
|
|
|
* ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
|
|
|
|
|
* POSSIBILITY OF SUCH DAMAGE.
|
|
|
|
|
*
|
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
2019-08-07 05:05:48 -04:00
|
|
|
#include <lib/conversion/rotation.h>
|
|
|
|
|
#include <lib/mathlib/math/Limits.hpp>
|
|
|
|
|
#include <lib/matrix/matrix/math.hpp>
|
2019-10-25 10:56:32 +02:00
|
|
|
#include <px4_platform_common/px4_config.h>
|
|
|
|
|
#include <px4_platform_common/log.h>
|
|
|
|
|
#include <px4_platform_common/module_params.h>
|
2019-08-27 10:57:38 +02:00
|
|
|
#include <px4_platform_common/px4_work_queue/WorkItem.hpp>
|
2019-08-06 12:55:25 -04:00
|
|
|
#include <uORB/Publication.hpp>
|
|
|
|
|
#include <uORB/Subscription.hpp>
|
|
|
|
|
#include <uORB/SubscriptionCallback.hpp>
|
|
|
|
|
#include <uORB/topics/parameter_update.h>
|
|
|
|
|
#include <uORB/topics/sensor_bias.h>
|
|
|
|
|
#include <uORB/topics/sensor_correction.h>
|
2019-08-06 13:28:06 -04:00
|
|
|
#include <uORB/topics/sensor_selection.h>
|
2019-08-06 12:55:25 -04:00
|
|
|
|
2019-08-07 05:05:48 -04:00
|
|
|
#include <uORB/topics/sensor_gyro.h>
|
|
|
|
|
#include <uORB/topics/vehicle_angular_velocity.h>
|
2019-08-06 12:55:25 -04:00
|
|
|
|
|
|
|
|
class VehicleAngularVelocity : public ModuleParams, public px4::WorkItem
|
|
|
|
|
{
|
|
|
|
|
public:
|
|
|
|
|
|
|
|
|
|
VehicleAngularVelocity();
|
2020-01-18 01:15:00 -05:00
|
|
|
~VehicleAngularVelocity() override;
|
2019-08-06 12:55:25 -04:00
|
|
|
|
|
|
|
|
void Run() override;
|
|
|
|
|
|
|
|
|
|
bool Start();
|
|
|
|
|
void Stop();
|
|
|
|
|
|
|
|
|
|
void PrintStatus();
|
|
|
|
|
|
|
|
|
|
private:
|
2020-01-18 01:15:00 -05:00
|
|
|
void ParametersUpdate(bool force = false);
|
|
|
|
|
void SensorBiasUpdate(bool force = false);
|
|
|
|
|
void SensorCorrectionsUpdate(bool force = false);
|
|
|
|
|
bool SensorSelectionUpdate(bool force = false);
|
2019-08-06 12:55:25 -04:00
|
|
|
|
2019-08-07 05:05:48 -04:00
|
|
|
static constexpr int MAX_SENSOR_COUNT = 3;
|
2019-08-06 12:55:25 -04:00
|
|
|
|
|
|
|
|
DEFINE_PARAMETERS(
|
|
|
|
|
(ParamInt<px4::params::SENS_BOARD_ROT>) _param_sens_board_rot,
|
|
|
|
|
|
|
|
|
|
(ParamFloat<px4::params::SENS_BOARD_X_OFF>) _param_sens_board_x_off,
|
|
|
|
|
(ParamFloat<px4::params::SENS_BOARD_Y_OFF>) _param_sens_board_y_off,
|
|
|
|
|
(ParamFloat<px4::params::SENS_BOARD_Z_OFF>) _param_sens_board_z_off
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
uORB::Publication<vehicle_angular_velocity_s> _vehicle_angular_velocity_pub{ORB_ID(vehicle_angular_velocity)};
|
|
|
|
|
|
2019-08-06 13:28:06 -04:00
|
|
|
uORB::Subscription _params_sub{ORB_ID(parameter_update)}; /**< parameter updates subscription */
|
|
|
|
|
uORB::Subscription _sensor_bias_sub{ORB_ID(sensor_bias)}; /**< sensor in-run bias correction subscription */
|
|
|
|
|
uORB::Subscription _sensor_correction_sub{ORB_ID(sensor_correction)}; /**< sensor thermal correction subscription */
|
2019-08-06 12:55:25 -04:00
|
|
|
|
2019-08-06 13:28:06 -04:00
|
|
|
uORB::SubscriptionCallbackWorkItem _sensor_selection_sub{this, ORB_ID(sensor_selection)}; /**< selected primary sensor subscription */
|
2019-08-07 05:05:48 -04:00
|
|
|
uORB::SubscriptionCallbackWorkItem _sensor_sub[MAX_SENSOR_COUNT] { /**< sensor data subscription */
|
2019-08-06 12:55:25 -04:00
|
|
|
{this, ORB_ID(sensor_gyro), 0},
|
|
|
|
|
{this, ORB_ID(sensor_gyro), 1},
|
|
|
|
|
{this, ORB_ID(sensor_gyro), 2}
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
matrix::Dcmf _board_rotation; /**< rotation matrix for the orientation that the board is mounted */
|
|
|
|
|
|
2020-01-18 01:15:00 -05:00
|
|
|
matrix::Vector3f _bias{0.f, 0.f, 0.f};
|
|
|
|
|
matrix::Vector3f _offset{0.f, 0.f, 0.f};
|
|
|
|
|
matrix::Vector3f _scale{1.f, 1.f, 1.f};
|
2019-08-06 12:55:25 -04:00
|
|
|
|
2019-08-16 13:53:59 -04:00
|
|
|
uint32_t _selected_sensor_device_id{0};
|
2020-01-18 01:15:00 -05:00
|
|
|
uint8_t _selected_sensor_sub_index{0};
|
|
|
|
|
int8_t _corrections_selected_instance{-1};
|
2019-08-06 12:55:25 -04:00
|
|
|
};
|