mirror of
https://bitbucket.org/librepilot/librepilot.git
synced 2025-01-10 20:52:11 +01:00
179 lines
5.6 KiB
C++
179 lines
5.6 KiB
C++
/**
|
|
******************************************************************************
|
|
*
|
|
* @file levelcalibrationmodel.cpp
|
|
* @author The OpenPilot Team, http://www.openpilot.org Copyright (C) 2014.
|
|
* @addtogroup board level calibration
|
|
* @{
|
|
* @addtogroup ConfigPlugin Config Plugin
|
|
* @{
|
|
* @brief Telemetry configuration panel
|
|
*****************************************************************************/
|
|
/*
|
|
* This program 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 program 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, write to the Free Software Foundation, Inc.,
|
|
* 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
|
*/
|
|
|
|
#include "levelcalibrationmodel.h"
|
|
#include "extensionsystem/pluginmanager.h"
|
|
#include "calibration/calibrationuiutils.h"
|
|
|
|
#include <attitudestate.h>
|
|
#include <attitudesettings.h>
|
|
|
|
static const int LEVEL_SAMPLES = 100;
|
|
|
|
namespace OpenPilot {
|
|
LevelCalibrationModel::LevelCalibrationModel(QObject *parent) :
|
|
QObject(parent), m_dirty(false)
|
|
{
|
|
attitudeState = AttitudeState::GetInstance(getObjectManager());
|
|
Q_ASSERT(attitudeState);
|
|
|
|
attitudeSettings = AttitudeSettings::GetInstance(getObjectManager());
|
|
Q_ASSERT(attitudeSettings);
|
|
}
|
|
|
|
|
|
/**
|
|
* Starts an accelerometer bias calibration.
|
|
*/
|
|
void LevelCalibrationModel::start()
|
|
{
|
|
memento.attitudeStateMdata = attitudeState->getMetadata();
|
|
UAVObject::Metadata mdata = attitudeState->getMetadata();
|
|
UAVObject::SetFlightTelemetryUpdateMode(mdata, UAVObject::UPDATEMODE_PERIODIC);
|
|
mdata.flightTelemetryUpdatePeriod = 100;
|
|
attitudeState->setMetadata(mdata);
|
|
|
|
rot_data_pitch = 0;
|
|
rot_data_roll = 0;
|
|
|
|
// reset dirty state to forget previous unsaved runs
|
|
m_dirty = false;
|
|
|
|
position = 0;
|
|
|
|
started();
|
|
|
|
// Show instructions and enable controls
|
|
progressChanged(0);
|
|
displayInstructions(tr("Place horizontally and press Save Position..."), WizardModel::Prompt);
|
|
displayVisualHelp(CALIBRATION_HELPER_PLANE_PREFIX + CALIBRATION_HELPER_IMAGE_NED);
|
|
savePositionEnabledChanged(true);
|
|
}
|
|
|
|
void LevelCalibrationModel::savePosition()
|
|
{
|
|
QMutexLocker lock(&sensorsUpdateLock);
|
|
|
|
savePositionEnabledChanged(false);
|
|
|
|
rot_accum_pitch.clear();
|
|
rot_accum_roll.clear();
|
|
|
|
collectingData = true;
|
|
|
|
connect(attitudeState, SIGNAL(objectUpdated(UAVObject *)), this, SLOT(getSample(UAVObject *)));
|
|
|
|
displayInstructions(tr("Hold..."));
|
|
}
|
|
|
|
/**
|
|
Updates the accel bias raw values
|
|
*/
|
|
void LevelCalibrationModel::getSample(UAVObject *obj)
|
|
{
|
|
QMutexLocker lock(&sensorsUpdateLock);
|
|
|
|
switch (obj->getObjID()) {
|
|
case AttitudeState::OBJID:
|
|
{
|
|
AttitudeState::DataFields attitudeStateData = attitudeState->getData();
|
|
rot_accum_roll.append(attitudeStateData.Roll);
|
|
rot_accum_pitch.append(attitudeStateData.Pitch);
|
|
break;
|
|
}
|
|
default:
|
|
Q_ASSERT(0);
|
|
}
|
|
|
|
// Work out the progress based on whichever has less
|
|
double p1 = (double)rot_accum_roll.size() / (double)LEVEL_SAMPLES;
|
|
progressChanged(p1 * 100);
|
|
|
|
if (rot_accum_roll.size() >= LEVEL_SAMPLES &&
|
|
collectingData == true) {
|
|
collectingData = false;
|
|
|
|
AttitudeState *attitudeState = AttitudeState::GetInstance(getObjectManager());
|
|
|
|
disconnect(attitudeState, SIGNAL(objectUpdated(UAVObject *)), this, SLOT(getSample(UAVObject *)));
|
|
|
|
position++;
|
|
switch (position) {
|
|
case 1:
|
|
rot_data_pitch = OpenPilot::CalibrationUtils::listMean(rot_accum_pitch);
|
|
rot_data_roll = OpenPilot::CalibrationUtils::listMean(rot_accum_roll);
|
|
|
|
displayInstructions(tr("Leave horizontally, rotate 180° along yaw axis and press Save Position..."), WizardModel::Prompt);
|
|
displayVisualHelp(CALIBRATION_HELPER_PLANE_PREFIX + CALIBRATION_HELPER_IMAGE_SWD);
|
|
|
|
savePositionEnabledChanged(true);
|
|
break;
|
|
case 2:
|
|
rot_data_pitch += OpenPilot::CalibrationUtils::listMean(rot_accum_pitch);
|
|
rot_data_pitch /= 2;
|
|
rot_data_roll += OpenPilot::CalibrationUtils::listMean(rot_accum_roll);
|
|
rot_data_roll /= 2;
|
|
|
|
attitudeState->setMetadata(memento.attitudeStateMdata);
|
|
|
|
m_dirty = true;
|
|
|
|
stopped();
|
|
displayVisualHelp(CALIBRATION_HELPER_IMAGE_EMPTY);
|
|
displayInstructions(tr("Board leveling completed successfully."), WizardModel::Success);
|
|
break;
|
|
}
|
|
}
|
|
}
|
|
|
|
void LevelCalibrationModel::save()
|
|
{
|
|
if (!m_dirty) {
|
|
return;
|
|
}
|
|
AttitudeSettings::DataFields attitudeSettingsData = attitudeSettings->getData();
|
|
|
|
// Update the biases based on collected data
|
|
// "rotate" the board in the opposite direction as the calculated offset
|
|
attitudeSettingsData.BoardRotation[AttitudeSettings::BOARDROTATION_PITCH] -= rot_data_pitch;
|
|
attitudeSettingsData.BoardRotation[AttitudeSettings::BOARDROTATION_ROLL] -= rot_data_roll;
|
|
|
|
attitudeSettings->setData(attitudeSettingsData);
|
|
|
|
m_dirty = false;
|
|
}
|
|
|
|
UAVObjectManager *LevelCalibrationModel::getObjectManager()
|
|
{
|
|
ExtensionSystem::PluginManager *pm = ExtensionSystem::PluginManager::instance();
|
|
UAVObjectManager *objMngr = pm->getObject<UAVObjectManager>();
|
|
|
|
Q_ASSERT(objMngr);
|
|
return objMngr;
|
|
}
|
|
}
|