QGCVehicleConfig.cc 20.9 KB
Newer Older
Bryant's avatar
Bryant committed
1 2 3 4 5 6
// On Windows (for VS2010) stdint.h contains the limits normally contained in limits.h
// It also needs the __STDC_LIMIT_MACROS macro defined in order to include them (done
// in qgroundcontrol.pri).
#ifdef WIN32
#include <stdint.h>
#else
7
#include <limits.h>
Bryant's avatar
Bryant committed
8
#endif
9 10 11

#include <QTimer>

12
#include "QGCVehicleConfig.h"
13
#include "UASManager.h"
14
#include "QGC.h"
15
#include "QGCToolWidget.h"
16 17 18 19
#include "ui_QGCVehicleConfig.h"

QGCVehicleConfig::QGCVehicleConfig(QWidget *parent) :
    QWidget(parent),
20
    mav(NULL),
21
    chanCount(0),
22 23 24 25 26 27 28 29
    rcRoll(0.0f),
    rcPitch(0.0f),
    rcYaw(0.0f),
    rcThrottle(0.0f),
    rcMode(0.0f),
    rcAux1(0.0f),
    rcAux2(0.0f),
    rcAux3(0.0f),
30 31
    changed(true),
    rc_mode(RC_MODE_2),
32
    calibrationEnabled(false),
33 34
    ui(new Ui::QGCVehicleConfig)
{
35
    setObjectName("QGC_VEHICLECONFIG");
36
    ui->setupUi(this);
37 38 39 40

    requestCalibrationRC();
    if (mav) mav->requestParameter(0, "RC_TYPE");

41 42
    ui->rcModeComboBox->setCurrentIndex((int)rc_mode - 1);

43
    ui->rcCalibrationButton->setCheckable(true);
44 45
    connect(ui->rcCalibrationButton, SIGNAL(clicked(bool)), this, SLOT(toggleCalibrationRC(bool)));
    connect(ui->storeButton, SIGNAL(clicked()), this, SLOT(writeParameters()));
46
    connect(ui->rcModeComboBox, SIGNAL(currentIndexChanged(int)), this, SLOT(setRCModeIndex(int)));
47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67
    connect(ui->setTrimButton, SIGNAL(clicked()), this, SLOT(setTrimPositions()));

    /* Connect RC mapping assignments */
    connect(ui->rollSpinBox, SIGNAL(valueChanged(int)), this, SLOT(setRollChan(int)));
    connect(ui->pitchSpinBox, SIGNAL(valueChanged(int)), this, SLOT(setPitchChan(int)));
    connect(ui->yawSpinBox, SIGNAL(valueChanged(int)), this, SLOT(setYawChan(int)));
    connect(ui->throttleSpinBox, SIGNAL(valueChanged(int)), this, SLOT(setThrottleChan(int)));
    connect(ui->modeSpinBox, SIGNAL(valueChanged(int)), this, SLOT(setModeChan(int)));
    connect(ui->aux1SpinBox, SIGNAL(valueChanged(int)), this, SLOT(setAux1Chan(int)));
    connect(ui->aux2SpinBox, SIGNAL(valueChanged(int)), this, SLOT(setAux2Chan(int)));
    connect(ui->aux3SpinBox, SIGNAL(valueChanged(int)), this, SLOT(setAux3Chan(int)));

    // Connect RC reverse assignments
    connect(ui->invertCheckBox, SIGNAL(clicked(bool)), this, SLOT(setRollInverted(bool)));
    connect(ui->invertCheckBox_2, SIGNAL(clicked(bool)), this, SLOT(setPitchInverted(bool)));
    connect(ui->invertCheckBox_3, SIGNAL(clicked(bool)), this, SLOT(setYawInverted(bool)));
    connect(ui->invertCheckBox_4, SIGNAL(clicked(bool)), this, SLOT(setThrottleInverted(bool)));
    connect(ui->invertCheckBox_5, SIGNAL(clicked(bool)), this, SLOT(setModeInverted(bool)));
    connect(ui->invertCheckBox_6, SIGNAL(clicked(bool)), this, SLOT(setAux1Inverted(bool)));
    connect(ui->invertCheckBox_7, SIGNAL(clicked(bool)), this, SLOT(setAux2Inverted(bool)));
    connect(ui->invertCheckBox_8, SIGNAL(clicked(bool)), this, SLOT(setAux3Inverted(bool)));
68 69 70 71 72

    connect(UASManager::instance(), SIGNAL(activeUASSet(UASInterface*)), this, SLOT(setActiveUAS(UASInterface*)));

    setActiveUAS(UASManager::instance()->getActiveUAS());

73
    for (unsigned int i = 0; i < chanMax; i++)
74
    {
75
        rcValue[i] = UINT16_MAX;
76
        rcMapping[i] = i;
77 78 79 80 81
    }

    updateTimer.setInterval(150);
    connect(&updateTimer, SIGNAL(timeout()), this, SLOT(updateView()));
    updateTimer.start();
82 83 84 85 86 87
}

QGCVehicleConfig::~QGCVehicleConfig()
{
    delete ui;
}
88

89 90 91 92 93 94 95 96
void QGCVehicleConfig::setRCModeIndex(int newRcMode)
{
    if (newRcMode > 0 && newRcMode < 5)
    {
        rc_mode = (enum RC_MODE) (newRcMode+1);
        changed = true;
    }
}
97 98 99 100 101 102 103 104 105 106 107 108 109

void QGCVehicleConfig::toggleCalibrationRC(bool enabled)
{
    if (enabled)
    {
        startCalibrationRC();
    }
    else
    {
        stopCalibrationRC();
    }
}

110 111 112
void QGCVehicleConfig::setTrimPositions()
{
    // Set trim for roll, pitch, yaw, throttle
113 114 115 116 117 118 119 120
    rcTrim[rcMapping[0]] = rcValue[rcMapping[0]]; // roll
    rcTrim[rcMapping[1]] = rcValue[rcMapping[1]]; // pitch
    rcTrim[rcMapping[2]] = rcValue[rcMapping[2]]; // yaw
    rcTrim[rcMapping[3]] = rcMin[rcMapping[3]];   // throttle
    rcTrim[rcMapping[4]] = ((rcMax[rcMapping[4]] - rcMin[rcMapping[4]]) / 2.0f) + rcMin[rcMapping[4]];   // mode sw
    rcTrim[rcMapping[5]] = ((rcMax[rcMapping[5]] - rcMin[rcMapping[5]]) / 2.0f) + rcMin[rcMapping[5]];   // aux 1
    rcTrim[rcMapping[6]] = ((rcMax[rcMapping[6]] - rcMin[rcMapping[6]]) / 2.0f) + rcMin[rcMapping[6]];   // aux 2
    rcTrim[rcMapping[7]] = ((rcMax[rcMapping[7]] - rcMin[rcMapping[7]]) / 2.0f) + rcMin[rcMapping[7]];   // aux 3
121 122 123 124 125 126 127
}

void QGCVehicleConfig::detectChannelInversion()
{

}

128 129 130
void QGCVehicleConfig::startCalibrationRC()
{
    ui->rcTypeComboBox->setEnabled(false);
131
    ui->rcCalibrationButton->setText(tr("Stop RC Calibration"));
132
    resetCalibrationRC();
133
    calibrationEnabled = true;
134 135 136 137
}

void QGCVehicleConfig::stopCalibrationRC()
{
138
    calibrationEnabled = false;
139
    ui->rcTypeComboBox->setEnabled(true);
140
    ui->rcCalibrationButton->setText(tr("Start RC Calibration"));
141 142 143 144 145 146 147 148 149 150 151 152 153 154
}

void QGCVehicleConfig::setActiveUAS(UASInterface* active)
{
    // Do nothing if system is the same or NULL
    if ((active == NULL) || mav == active) return;

    if (mav)
    {
        // Disconnect old system
        disconnect(mav, SIGNAL(remoteControlChannelRawChanged(int,float)), this,
                   SLOT(remoteControlChannelRawChanged(int,float)));
        disconnect(mav, SIGNAL(parameterChanged(int,int,QString,QVariant)), this,
                   SLOT(parameterChanged(int,int,QString,QVariant)));
155 156 157 158 159

        foreach (QGCToolWidget* tool, toolWidgets)
        {
            delete tool;
        }
160
        toolWidgets.clear();
161 162
    }

163 164 165
    // Reset current state
    resetCalibrationRC();

166 167
    chanCount = 0;

168 169
    // Connect new system
    mav = active;
170 171 172 173
    connect(active, SIGNAL(remoteControlChannelRawChanged(int,float)), this,
               SLOT(remoteControlChannelRawChanged(int,float)));
    connect(active, SIGNAL(parameterChanged(int,int,QString,QVariant)), this,
               SLOT(parameterChanged(int,int,QString,QVariant)));
174 175 176 177 178 179 180 181 182 183 184 185 186

    mav->requestParameters();

    QString defaultsDir = qApp->applicationDirPath() + "/files/" + mav->getAutopilotTypeName().toLower() + "/widgets/";

    QGCToolWidget* tool;

    // Load calibration
    tool = new QGCToolWidget("", this);
    if (tool->loadSettings(defaultsDir + "px4_calibration.qgw", false))
    {
        toolWidgets.append(tool);
        ui->sensorLayout->addWidget(tool);
187 188
    } else {
        delete tool;
189
    }
190

191 192 193 194 195 196
    // Load multirotor attitude pid
    tool = new QGCToolWidget("", this);
    if (tool->loadSettings(defaultsDir + "px4_mc_attitude_pid_params.qgw", false))
    {
        toolWidgets.append(tool);
        ui->multiRotorAttitudeLayout->addWidget(tool);
197 198
    } else {
        delete tool;
199 200 201 202 203 204 205 206
    }

    // Load multirotor position pid
    tool = new QGCToolWidget("", this);
    if (tool->loadSettings(defaultsDir + "px4_mc_position_pid_params.qgw", false))
    {
        toolWidgets.append(tool);
        ui->multiRotorPositionLayout->addWidget(tool);
207 208
    } else {
        delete tool;
209 210 211 212 213 214 215 216
    }

    // Load fixed wing attitude pid
    tool = new QGCToolWidget("", this);
    if (tool->loadSettings(defaultsDir + "px4_fw_attitude_pid_params.qgw", false))
    {
        toolWidgets.append(tool);
        ui->fixedWingAttitudeLayout->addWidget(tool);
217 218
    } else {
        delete tool;
219 220 221 222 223 224 225 226
    }

    // Load fixed wing position pid
    tool = new QGCToolWidget("", this);
    if (tool->loadSettings(defaultsDir + "px4_fw_position_pid_params.qgw", false))
    {
        toolWidgets.append(tool);
        ui->fixedWingPositionLayout->addWidget(tool);
227 228
    } else {
        delete tool;
229 230 231
    }

    updateStatus(QString("Reading from system %1").arg(mav->getUASName()));
232 233 234 235 236 237
}

void QGCVehicleConfig::resetCalibrationRC()
{
    for (unsigned int i = 0; i < chanMax; ++i)
    {
Bryant's avatar
Bryant committed
238 239
        rcMin[i] = (float)INT_MAX;
        rcMax[i] = (float)INT_MIN;
240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257
    }
}

/**
 * Sends the RC calibration to the vehicle and stores it in EEPROM
 */
void QGCVehicleConfig::writeCalibrationRC()
{
    if (!mav) return;

    QString minTpl("RC%1_MIN");
    QString maxTpl("RC%1_MAX");
    QString trimTpl("RC%1_TRIM");
    QString revTpl("RC%1_REV");

    // Do not write the RC type, as these values depend on this
    // active onboard parameter

258
    for (unsigned int i = 0; i < chanCount; ++i)
259
    {
260
        //qDebug() << "SENDING" << minTpl.arg(i+1) << rcMin[i];
Lorenz Meier's avatar
Lorenz Meier committed
261
        mav->setParameter(0, minTpl.arg(i+1), rcMin[i]);
262
        QGC::SLEEP::usleep(50000);
Lorenz Meier's avatar
Lorenz Meier committed
263
        mav->setParameter(0, trimTpl.arg(i+1), rcTrim[i]);
264
        QGC::SLEEP::usleep(50000);
Lorenz Meier's avatar
Lorenz Meier committed
265
        mav->setParameter(0, maxTpl.arg(i+1), rcMax[i]);
266 267 268
        QGC::SLEEP::usleep(50000);
        mav->setParameter(0, revTpl.arg(i+1), (rcRev[i]) ? -1.0f : 1.0f);
        QGC::SLEEP::usleep(50000);
269 270 271
    }

    // Write mappings
272 273 274 275
    mav->setParameter(0, "RC_MAP_ROLL", (int32_t)(rcMapping[0]+1));
    QGC::SLEEP::usleep(50000);
    mav->setParameter(0, "RC_MAP_PITCH", (int32_t)(rcMapping[1]+1));
    QGC::SLEEP::usleep(50000);
276
    mav->setParameter(0, "RC_MAP_YAW", (int32_t)(rcMapping[2]+1));
277
    QGC::SLEEP::usleep(50000);
278
    mav->setParameter(0, "RC_MAP_THROTTLE", (int32_t)(rcMapping[3]+1));
279 280 281 282 283 284 285 286 287
    QGC::SLEEP::usleep(50000);
    mav->setParameter(0, "RC_MAP_MODE_SW", (int32_t)(rcMapping[4]+1));
    QGC::SLEEP::usleep(50000);
    mav->setParameter(0, "RC_MAP_AUX1", (int32_t)(rcMapping[5]+1));
    QGC::SLEEP::usleep(50000);
    mav->setParameter(0, "RC_MAP_AUX2", (int32_t)(rcMapping[6]+1));
    QGC::SLEEP::usleep(50000);
    mav->setParameter(0, "RC_MAP_AUX3", (int32_t)(rcMapping[7]+1));
    QGC::SLEEP::usleep(50000);
288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303
}

void QGCVehicleConfig::requestCalibrationRC()
{
    if (!mav) return;

    QString minTpl("RC%1_MIN");
    QString maxTpl("RC%1_MAX");
    QString trimTpl("RC%1_TRIM");
    QString revTpl("RC%1_REV");

    // Do not request the RC type, as these values depend on this
    // active onboard parameter

    for (unsigned int i = 0; i < chanMax; ++i)
    {
Lorenz Meier's avatar
Lorenz Meier committed
304
        mav->requestParameter(0, minTpl.arg(i+1));
Lorenz Meier's avatar
Lorenz Meier committed
305
        QGC::SLEEP::usleep(5000);
Lorenz Meier's avatar
Lorenz Meier committed
306
        mav->requestParameter(0, trimTpl.arg(i+1));
Lorenz Meier's avatar
Lorenz Meier committed
307
        QGC::SLEEP::usleep(5000);
Lorenz Meier's avatar
Lorenz Meier committed
308
        mav->requestParameter(0, maxTpl.arg(i+1));
Lorenz Meier's avatar
Lorenz Meier committed
309
        QGC::SLEEP::usleep(5000);
Lorenz Meier's avatar
Lorenz Meier committed
310
        mav->requestParameter(0, revTpl.arg(i+1));
Lorenz Meier's avatar
Lorenz Meier committed
311
        QGC::SLEEP::usleep(5000);
312 313 314 315 316 317 318
    }
}

void QGCVehicleConfig::writeParameters()
{
    updateStatus(tr("Writing all onboard parameters."));
    writeCalibrationRC();
319
    mav->writeParametersToStorage();
320 321 322 323
}

void QGCVehicleConfig::remoteControlChannelRawChanged(int chan, float val)
{
324 325
    // Check if index and values are sane
    if (chan < 0 || static_cast<unsigned int>(chan) >= chanMax || val < 500 || val > 2500)
326 327
        return;

Bryant's avatar
Bryant committed
328
    if (chan + 1 > (int)chanCount) {
329 330 331 332 333 334 335 336 337 338 339 340 341 342
        chanCount = chan+1;
    }

    // Update calibration data
    if (calibrationEnabled) {
        if (val < rcMin[chan])
        {
            rcMin[chan] = val;
        }

        if (val > rcMax[chan])
        {
            rcMax[chan] = val;
        }
343 344
    }

345 346 347
    // Raw value
    rcValue[chan] = val;

348 349 350 351
    // Normalized value
    float normalized;

    if (val >= rcTrim[chan])
352
    {
353
        normalized = (val - rcTrim[chan])/(rcMax[chan] - rcTrim[chan]);
354
    }
355 356 357 358 359 360 361 362 363
    else
    {
        normalized = -(rcTrim[chan] - val)/(rcTrim[chan] - rcMin[chan]);
    }

    // Bound
    normalized = qBound(-1.0f, normalized, 1.0f);
    // Invert
    normalized = (rcRev[chan]) ? -1.0f*normalized : normalized;
364

365 366 367
    if (chan == rcMapping[0])
    {
        // ROLL
368
        rcRoll = normalized;
369
    }
370
    if (chan == rcMapping[1])
371 372
    {
        // PITCH
373
        rcPitch = normalized;
374
    }
375
    if (chan == rcMapping[2])
376
    {
377
        rcYaw = normalized;
378
    }
379
    if (chan == rcMapping[3])
380 381
    {
        // THROTTLE
382 383 384 385
        if (rcRev[chan]) {
            rcThrottle = 1.0f + normalized;
        } else {
            rcThrottle = normalized;
386
        }
387 388

        rcThrottle = qBound(0.0f, rcThrottle, 1.0f);
389
    }
390
    if (chan == rcMapping[4])
391 392
    {
        // MODE SWITCH
393
        rcMode = normalized;
394
    }
395
    if (chan == rcMapping[5])
396 397
    {
        // AUX1
398
        rcAux1 = normalized;
399
    }
400
    if (chan == rcMapping[6])
401 402
    {
        // AUX2
403
        rcAux2 = normalized;
404
    }
405
    if (chan == rcMapping[7])
406 407
    {
        // AUX3
408
        rcAux3 = normalized;
409 410 411 412
    }

    changed = true;

413
    //qDebug() << "RC CHAN:" << chan << "PPM:" << val << "NORMALIZED:" << normalized;
414 415
}

416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448
void QGCVehicleConfig::updateInvertedCheckboxes(int index)
{
    unsigned int mapindex = rcMapping[index];

    switch (mapindex)
    {
    case 0:
        ui->invertCheckBox->setChecked(rcRev[index]);
        break;
    case 1:
        ui->invertCheckBox_2->setChecked(rcRev[index]);
        break;
    case 2:
        ui->invertCheckBox_3->setChecked(rcRev[index]);
        break;
    case 3:
        ui->invertCheckBox_4->setChecked(rcRev[index]);
        break;
    case 4:
        ui->invertCheckBox_5->setChecked(rcRev[index]);
        break;
    case 5:
        ui->invertCheckBox_6->setChecked(rcRev[index]);
        break;
    case 6:
        ui->invertCheckBox_7->setChecked(rcRev[index]);
        break;
    case 7:
        ui->invertCheckBox_8->setChecked(rcRev[index]);
        break;
    }
}

449 450 451 452
void QGCVehicleConfig::parameterChanged(int uas, int component, QString parameterName, QVariant value)
{
    Q_UNUSED(uas);
    Q_UNUSED(component);
453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468

    // Channel calibration values
    QRegExp minTpl("RC?_MIN");
    minTpl.setPatternSyntax(QRegExp::Wildcard);
    QRegExp maxTpl("RC?_MAX");
    maxTpl.setPatternSyntax(QRegExp::Wildcard);
    QRegExp trimTpl("RC?_TRIM");
    trimTpl.setPatternSyntax(QRegExp::Wildcard);
    QRegExp revTpl("RC?_REV");
    revTpl.setPatternSyntax(QRegExp::Wildcard);

    // Do not write the RC type, as these values depend on this
    // active onboard parameter

    if (minTpl.exactMatch(parameterName)) {
        bool ok;
Lorenz Meier's avatar
Lorenz Meier committed
469
        unsigned int index = parameterName.mid(2, 1).toInt(&ok) - 1;
470
        //qDebug() << "PARAM:" << parameterName << "index:" << index;
471
        if (ok && (index >= 0) && (index < chanMax))
472 473 474 475 476 477 478
        {
            rcMin[index] = value.toInt();
        }
    }

    if (maxTpl.exactMatch(parameterName)) {
        bool ok;
Lorenz Meier's avatar
Lorenz Meier committed
479
        unsigned int index = parameterName.mid(2, 1).toInt(&ok) - 1;
480
        if (ok && (index >= 0) && (index < chanMax))
481 482 483 484 485 486 487
        {
            rcMax[index] = value.toInt();
        }
    }

    if (trimTpl.exactMatch(parameterName)) {
        bool ok;
Lorenz Meier's avatar
Lorenz Meier committed
488
        unsigned int index = parameterName.mid(2, 1).toInt(&ok) - 1;
489
        if (ok && (index >= 0) && (index < chanMax))
490 491 492 493 494 495 496
        {
            rcTrim[index] = value.toInt();
        }
    }

    if (revTpl.exactMatch(parameterName)) {
        bool ok;
Lorenz Meier's avatar
Lorenz Meier committed
497
        unsigned int index = parameterName.mid(2, 1).toInt(&ok) - 1;
498
        if (ok && (index >= 0) && (index < chanMax))
499 500
        {
            rcRev[index] = (value.toInt() == -1) ? true : false;
501
            updateInvertedCheckboxes(index);
502 503 504 505 506 507 508 509
        }
    }

//        mav->setParameter(0, trimTpl.arg(i), rcTrim[i]);
//        mav->setParameter(0, maxTpl.arg(i), rcMax[i]);
//        mav->setParameter(0, revTpl.arg(i), (rcRev[i]) ? -1 : 1);
//    }

510 511 512 513 514 515 516 517
    if (rcTypeUpdateRequested > 0 && parameterName == QString("RC_TYPE"))
    {
        rcTypeUpdateRequested = 0;
        updateStatus(tr("Received RC type update, setting parameters based on model."));
        rcType = value.toInt();
        // Request all other parameters as well
        requestCalibrationRC();
    }
518 519 520 521

    // Order is: roll, pitch, yaw, throttle, mode sw, aux 1-3

    if (parameterName.contains("RC_MAP_ROLL")) {
522 523
        rcMapping[0] = value.toInt() - 1;
        ui->rollSpinBox->setValue(rcMapping[0]+1);
524 525 526
    }

    if (parameterName.contains("RC_MAP_PITCH")) {
527 528
        rcMapping[1] = value.toInt() - 1;
        ui->pitchSpinBox->setValue(rcMapping[1]+1);
529 530 531
    }

    if (parameterName.contains("RC_MAP_YAW")) {
532 533
        rcMapping[2] = value.toInt() - 1;
        ui->yawSpinBox->setValue(rcMapping[2]+1);
534 535 536
    }

    if (parameterName.contains("RC_MAP_THROTTLE")) {
537 538
        rcMapping[3] = value.toInt() - 1;
        ui->throttleSpinBox->setValue(rcMapping[3]+1);
539 540 541
    }

    if (parameterName.contains("RC_MAP_MODE_SW")) {
542 543
        rcMapping[4] = value.toInt() - 1;
        ui->modeSpinBox->setValue(rcMapping[4]+1);
544 545 546
    }

    if (parameterName.contains("RC_MAP_AUX1")) {
547 548
        rcMapping[5] = value.toInt() - 1;
        ui->aux1SpinBox->setValue(rcMapping[5]+1);
549 550 551
    }

    if (parameterName.contains("RC_MAP_AUX2")) {
552
        rcMapping[6] = value.toInt() - 1;
553
        ui->aux2SpinBox->setValue(rcMapping[6]+1);
554 555 556
    }

    if (parameterName.contains("RC_MAP_AUX3")) {
557
        rcMapping[7] = value.toInt() - 1;
558
        ui->aux3SpinBox->setValue(rcMapping[7]+1);
559 560 561 562 563
    }

    // Scaling

    if (parameterName.contains("RC_SCALE_ROLL")) {
564
        rcScaling[0] = value.toFloat();
565 566 567
    }

    if (parameterName.contains("RC_SCALE_PITCH")) {
568
        rcScaling[1] = value.toFloat();
569 570 571
    }

    if (parameterName.contains("RC_SCALE_YAW")) {
572
        rcScaling[2] = value.toFloat();
573 574 575
    }

    if (parameterName.contains("RC_SCALE_THROTTLE")) {
576
        rcScaling[3] = value.toFloat();
577 578 579
    }

    if (parameterName.contains("RC_SCALE_MODE_SW")) {
580
        rcScaling[4] = value.toFloat();
581 582 583
    }

    if (parameterName.contains("RC_SCALE_AUX1")) {
584
        rcScaling[5] = value.toFloat();
585 586 587
    }

    if (parameterName.contains("RC_SCALE_AUX2")) {
588
        rcScaling[6] = value.toFloat();
589 590 591
    }

    if (parameterName.contains("RC_SCALE_AUX3")) {
592
        rcScaling[7] = value.toFloat();
593
    }
594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633
}

void QGCVehicleConfig::updateStatus(const QString& str)
{
    ui->statusLabel->setText(str);
    ui->statusLabel->setStyleSheet("");
}

void QGCVehicleConfig::updateError(const QString& str)
{
    ui->statusLabel->setText(str);
    ui->statusLabel->setStyleSheet(QString("QLabel { margin: 0px 2px; font: 14px; color: %1; background-color: %2; }").arg(QGC::colorDarkWhite.name()).arg(QGC::colorMagenta.name()));
}

void QGCVehicleConfig::setRCType(int type)
{
    if (!mav) return;

    // XXX TODO Add handling of RC_TYPE vs non-RC_TYPE here

    mav->setParameter(0, "RC_TYPE", type);
    rcTypeUpdateRequested = QGC::groundTimeMilliseconds();
    QTimer::singleShot(rcTypeTimeout+100, this, SLOT(checktimeOuts()));
}

void QGCVehicleConfig::checktimeOuts()
{
    if (rcTypeUpdateRequested > 0)
    {
        if (QGC::groundTimeMilliseconds() - rcTypeUpdateRequested > rcTypeTimeout)
        {
            updateError(tr("Setting remote control timed out - is the system connected?"));
        }
    }
}

void QGCVehicleConfig::updateView()
{
    if (changed)
    {
634 635
        if (rc_mode == RC_MODE_1)
        {
636 637 638 639
            ui->rollSlider->setValue(rcRoll * 50 + 50);
            ui->pitchSlider->setValue(rcThrottle * 100);
            ui->yawSlider->setValue(rcYaw * 50 + 50);
            ui->throttleSlider->setValue(rcPitch * 50 + 50);
640 641 642
        }
        else if (rc_mode == RC_MODE_2)
        {
643 644 645 646
            ui->rollSlider->setValue(rcRoll * 50 + 50);
            ui->pitchSlider->setValue(rcPitch * 50 + 50);
            ui->yawSlider->setValue(rcYaw * 50 + 50);
            ui->throttleSlider->setValue(rcThrottle * 100);
647 648 649
        }
        else if (rc_mode == RC_MODE_3)
        {
650 651 652 653
            ui->rollSlider->setValue(rcYaw * 50 + 50);
            ui->pitchSlider->setValue(rcThrottle * 100);
            ui->yawSlider->setValue(rcRoll * 50 + 50);
            ui->throttleSlider->setValue(rcPitch * 50 + 50);
654 655 656
        }
        else if (rc_mode == RC_MODE_4)
        {
657 658 659 660 661 662
            ui->rollSlider->setValue(rcYaw * 50 + 50);
            ui->pitchSlider->setValue(rcPitch * 50 + 50);
            ui->yawSlider->setValue(rcRoll * 50 + 50);
            ui->throttleSlider->setValue(rcThrottle * 100);
        }

663 664 665 666
        ui->chanLabel->setText(QString("%1/%2").arg(rcValue[rcMapping[0]]).arg(rcRoll, 5, 'f', 2, QChar(' ')));
        ui->chanLabel_2->setText(QString("%1/%2").arg(rcValue[rcMapping[1]]).arg(rcPitch, 5, 'f', 2, QChar(' ')));
        ui->chanLabel_3->setText(QString("%1/%2").arg(rcValue[rcMapping[2]]).arg(rcYaw, 5, 'f', 2, QChar(' ')));
        ui->chanLabel_4->setText(QString("%1/%2").arg(rcValue[rcMapping[3]]).arg(rcThrottle, 5, 'f', 2, QChar(' ')));
667 668

        ui->modeSwitchSlider->setValue(rcMode * 50 + 50);
669
        ui->chanLabel_5->setText(QString("%1/%2").arg(rcValue[rcMapping[4]]).arg(rcMode, 5, 'f', 2, QChar(' ')));
670

671
        if (rcValue[rcMapping[5]] != UINT16_MAX) {
672
            ui->aux1Slider->setValue(rcAux1 * 50 + 50);
673
            ui->chanLabel_6->setText(QString("%1/%2").arg(rcValue[rcMapping[5]]).arg(rcAux1, 5, 'f', 2, QChar(' ')));
674 675 676 677
        } else {
            ui->chanLabel_6->setText(tr("---"));
        }

678
        if (rcValue[rcMapping[6]] != UINT16_MAX) {
679
            ui->aux2Slider->setValue(rcAux2 * 50 + 50);
680
            ui->chanLabel_7->setText(QString("%1/%2").arg(rcValue[rcMapping[6]]).arg(rcAux2, 5, 'f', 2, QChar(' ')));
681 682 683 684
        } else {
            ui->chanLabel_7->setText(tr("---"));
        }

685
        if (rcValue[rcMapping[7]] != UINT16_MAX) {
686
            ui->aux3Slider->setValue(rcAux3 * 50 + 50);
687
            ui->chanLabel_8->setText(QString("%1/%2").arg(rcValue[rcMapping[7]]).arg(rcAux3, 5, 'f', 2, QChar(' ')));
688 689
        } else {
            ui->chanLabel_8->setText(tr("---"));
690 691
        }

692 693 694
        changed = false;
    }
}