2011-03-28 21:16:38 +02:00
|
|
|
/**
|
|
|
|
******************************************************************************
|
|
|
|
*
|
|
|
|
* @file configccattitudewidget.cpp
|
|
|
|
* @author The OpenPilot Team, http://www.openpilot.org Copyright (C) 2010.
|
|
|
|
* @addtogroup GCSPlugins GCS Plugins
|
|
|
|
* @{
|
|
|
|
* @addtogroup ConfigPlugin Config Plugin
|
|
|
|
* @{
|
|
|
|
* @brief Configure Attitude module on CopterControl
|
|
|
|
*****************************************************************************/
|
|
|
|
/*
|
|
|
|
* 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 "configccattitudewidget.h"
|
|
|
|
#include "ui_ccattitude.h"
|
2011-04-15 08:37:16 +02:00
|
|
|
#include "utils/coordinateconversions.h"
|
2011-06-24 02:19:11 +02:00
|
|
|
#include "attitudesettings.h"
|
2011-03-28 21:16:38 +02:00
|
|
|
#include <QMutexLocker>
|
2011-04-26 18:02:32 +02:00
|
|
|
#include <QMessageBox>
|
2011-03-28 21:16:38 +02:00
|
|
|
#include <QDebug>
|
2011-05-31 09:16:01 +02:00
|
|
|
#include <QDesktopServices>
|
|
|
|
#include <QUrl>
|
2011-03-28 21:16:38 +02:00
|
|
|
|
|
|
|
ConfigCCAttitudeWidget::ConfigCCAttitudeWidget(QWidget *parent) :
|
|
|
|
ConfigTaskWidget(parent),
|
|
|
|
ui(new Ui_ccattitude)
|
|
|
|
{
|
|
|
|
ui->setupUi(this);
|
|
|
|
connect(ui->zeroBias,SIGNAL(clicked()),this,SLOT(startAccelCalibration()));
|
2011-05-05 23:02:42 +02:00
|
|
|
|
2011-06-07 16:56:16 +02:00
|
|
|
|
2011-08-02 18:06:17 +02:00
|
|
|
setupButtons(ui->applyButton,ui->saveButton);
|
|
|
|
addUAVObject("AttitudeSettings");
|
|
|
|
|
2011-05-31 09:16:01 +02:00
|
|
|
// Connect the help button
|
|
|
|
connect(ui->ccAttitudeHelp, SIGNAL(clicked()), this, SLOT(openHelp()));
|
2011-08-15 15:12:54 +02:00
|
|
|
addUAVObjectToWidgetRelation("AttitudeSettings","ZeroDuringArming",ui->zeroGyroBiasOnArming);
|
|
|
|
|
|
|
|
addUAVObjectToWidgetRelation("AttitudeSettings","BoardRotation",ui->rollBias,AttitudeSettings::BOARDROTATION_ROLL);
|
|
|
|
addUAVObjectToWidgetRelation("AttitudeSettings","BoardRotation",ui->pitchBias,AttitudeSettings::BOARDROTATION_PITCH);
|
|
|
|
addUAVObjectToWidgetRelation("AttitudeSettings","BoardRotation",ui->yawBias,AttitudeSettings::BOARDROTATION_YAW);
|
2011-08-02 18:06:17 +02:00
|
|
|
addWidget(ui->zeroBias);
|
2011-03-28 21:16:38 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
ConfigCCAttitudeWidget::~ConfigCCAttitudeWidget()
|
|
|
|
{
|
|
|
|
delete ui;
|
|
|
|
}
|
|
|
|
|
|
|
|
void ConfigCCAttitudeWidget::attitudeRawUpdated(UAVObject * obj) {
|
|
|
|
QMutexLocker locker(&startStop);
|
|
|
|
|
|
|
|
ui->zeroBiasProgress->setValue((float) updates / NUM_ACCEL_UPDATES * 100);
|
|
|
|
|
|
|
|
if(updates < NUM_ACCEL_UPDATES) {
|
|
|
|
updates++;
|
|
|
|
UAVObjectField * field = obj->getField(QString("accels"));
|
|
|
|
x_accum.append(field->getDouble(0));
|
|
|
|
y_accum.append(field->getDouble(1));
|
|
|
|
z_accum.append(field->getDouble(2));
|
2011-06-24 02:03:35 +02:00
|
|
|
field = obj->getField(QString("gyros"));
|
|
|
|
x_gyro_accum.append(field->getDouble(0));
|
|
|
|
y_gyro_accum.append(field->getDouble(1));
|
|
|
|
z_gyro_accum.append(field->getDouble(2));;
|
2011-05-09 11:55:05 +02:00
|
|
|
} else if ( updates == NUM_ACCEL_UPDATES ) {
|
|
|
|
updates++;
|
2011-03-28 21:16:38 +02:00
|
|
|
timer.stop();
|
|
|
|
disconnect(obj,SIGNAL(objectUpdated(UAVObject*)),this,SLOT(attitudeRawUpdated(UAVObject*)));
|
|
|
|
disconnect(&timer,SIGNAL(timeout()),this,SLOT(timeout()));
|
|
|
|
|
|
|
|
float x_bias = listMean(x_accum) / ACCEL_SCALE;
|
|
|
|
float y_bias = listMean(y_accum) / ACCEL_SCALE;
|
|
|
|
float z_bias = (listMean(z_accum) + 9.81) / ACCEL_SCALE;
|
|
|
|
|
2011-06-24 17:51:07 +02:00
|
|
|
float x_gyro_bias = listMean(x_gyro_accum) * 100.0f;
|
|
|
|
float y_gyro_bias = listMean(y_gyro_accum) * 100.0f;
|
|
|
|
float z_gyro_bias = listMean(z_gyro_accum) * 100.0f;
|
2011-03-28 21:16:38 +02:00
|
|
|
obj->setMetadata(initialMdata);
|
|
|
|
|
2011-06-24 02:19:11 +02:00
|
|
|
AttitudeSettings::DataFields attitudeSettingsData = AttitudeSettings::GetInstance(getObjectManager())->getData();
|
|
|
|
// We offset the gyro bias by current bias to help precision
|
|
|
|
attitudeSettingsData.AccelBias[0] += x_bias;
|
|
|
|
attitudeSettingsData.AccelBias[1] += y_bias;
|
|
|
|
attitudeSettingsData.AccelBias[2] += z_bias;
|
|
|
|
attitudeSettingsData.GyroBias[0] = -x_gyro_bias;
|
|
|
|
attitudeSettingsData.GyroBias[1] = -y_gyro_bias;
|
|
|
|
attitudeSettingsData.GyroBias[2] = -z_gyro_bias;
|
2011-10-08 21:15:48 +02:00
|
|
|
attitudeSettingsData.BiasCorrectGyro = AttitudeSettings::BIASCORRECTGYRO_TRUE;
|
2011-06-24 02:19:11 +02:00
|
|
|
AttitudeSettings::GetInstance(getObjectManager())->setData(attitudeSettingsData);
|
|
|
|
|
2011-05-09 11:55:05 +02:00
|
|
|
} else {
|
|
|
|
// Possible to get here if weird threading stuff happens. Just ignore updates.
|
|
|
|
qDebug("Unexpected accel update received.");
|
2011-03-28 21:16:38 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void ConfigCCAttitudeWidget::timeout() {
|
|
|
|
QMutexLocker locker(&startStop);
|
|
|
|
UAVDataObject * obj = dynamic_cast<UAVDataObject*>(getObjectManager()->getObject(QString("AttitudeRaw")));
|
|
|
|
disconnect(obj,SIGNAL(objectUpdated(UAVObject*)),this,SLOT(attitudeRawUpdated(UAVObject*)));
|
|
|
|
disconnect(&timer,SIGNAL(timeout()),this,SLOT(timeout()));
|
|
|
|
|
2011-04-26 18:02:32 +02:00
|
|
|
QMessageBox msgBox;
|
|
|
|
msgBox.setText(tr("Calibration timed out before receiving required updates."));
|
|
|
|
msgBox.setStandardButtons(QMessageBox::Ok);
|
|
|
|
msgBox.setDefaultButton(QMessageBox::Ok);
|
|
|
|
msgBox.exec();
|
|
|
|
|
2011-03-28 21:16:38 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
void ConfigCCAttitudeWidget::startAccelCalibration() {
|
|
|
|
QMutexLocker locker(&startStop);
|
|
|
|
|
|
|
|
updates = 0;
|
|
|
|
x_accum.clear();
|
|
|
|
y_accum.clear();
|
|
|
|
z_accum.clear();
|
2011-06-24 02:03:35 +02:00
|
|
|
x_gyro_accum.clear();
|
|
|
|
y_gyro_accum.clear();
|
|
|
|
z_gyro_accum.clear();
|
2011-03-28 21:16:38 +02:00
|
|
|
|
2011-06-24 02:03:35 +02:00
|
|
|
// Disable gyro bias correction to see raw data
|
2011-06-24 02:19:11 +02:00
|
|
|
AttitudeSettings::DataFields attitudeSettingsData = AttitudeSettings::GetInstance(getObjectManager())->getData();
|
|
|
|
attitudeSettingsData.BiasCorrectGyro = AttitudeSettings::BIASCORRECTGYRO_FALSE;
|
|
|
|
AttitudeSettings::GetInstance(getObjectManager())->setData(attitudeSettingsData);
|
2011-06-24 02:03:35 +02:00
|
|
|
|
2011-03-28 21:16:38 +02:00
|
|
|
// Set up to receive updates
|
|
|
|
UAVDataObject * obj = dynamic_cast<UAVDataObject*>(getObjectManager()->getObject(QString("AttitudeRaw")));
|
|
|
|
connect(obj,SIGNAL(objectUpdated(UAVObject*)),this,SLOT(attitudeRawUpdated(UAVObject*)));
|
|
|
|
|
|
|
|
// Set up timeout timer
|
2011-05-09 11:55:05 +02:00
|
|
|
timer.start(10000);
|
2011-03-28 21:16:38 +02:00
|
|
|
connect(&timer,SIGNAL(timeout()),this,SLOT(timeout()));
|
|
|
|
|
|
|
|
// Speed up updates
|
|
|
|
initialMdata = obj->getMetadata();
|
|
|
|
UAVObject::Metadata mdata = initialMdata;
|
|
|
|
mdata.flightTelemetryUpdateMode = UAVObject::UPDATEMODE_PERIODIC;
|
|
|
|
mdata.flightTelemetryUpdatePeriod = 100;
|
|
|
|
obj->setMetadata(mdata);
|
|
|
|
|
|
|
|
}
|
2011-03-28 23:31:44 +02:00
|
|
|
|
2011-05-31 09:16:01 +02:00
|
|
|
void ConfigCCAttitudeWidget::openHelp()
|
|
|
|
{
|
|
|
|
|
|
|
|
QDesktopServices::openUrl( QUrl("http://wiki.openpilot.org/display/Doc/CopterControl+Attitude+Configuration", QUrl::StrictMode) );
|
|
|
|
}
|
|
|
|
|
2011-08-17 13:43:08 +02:00
|
|
|
void ConfigCCAttitudeWidget::enableControls(bool enable)
|
|
|
|
{
|
|
|
|
if(ui->zeroBias)
|
|
|
|
ui->zeroBias->setEnabled(enable);
|
|
|
|
ConfigTaskWidget::enableControls(enable);
|
|
|
|
|
|
|
|
}
|