PowerComponentController.cc 4.23 KB
Newer Older
1 2
/****************************************************************************
 *
Gus Grubba's avatar
Gus Grubba committed
3
 * (c) 2009-2020 QGROUNDCONTROL PROJECT <http://www.qgroundcontrol.org>
4 5 6 7 8 9
 *
 * QGroundControl is licensed according to the terms in the file
 * COPYING.md in the root of the source code directory.
 *
 ****************************************************************************/

10 11
#include "PowerComponentController.h"
#include "QGCMAVLink.h"
12
#include "UAS.h"
13 14 15 16 17 18 19 20 21 22 23 24

#include <QVariant>
#include <QQmlProperty>

PowerComponentController::PowerComponentController(void)
{

}

void PowerComponentController::calibrateEsc(void)
{
    _warningMessages.clear();
DonLakeFlyer's avatar
DonLakeFlyer committed
25
    connect(_vehicle, &Vehicle::textMessageReceived, this, &PowerComponentController::_handleVehicleTextMessage);
26
    _vehicle->startCalibration(Vehicle::CalibrationEsc);
27 28
}

DonLakeFlyer's avatar
DonLakeFlyer committed
29
void PowerComponentController::startBusConfigureActuators(void)
30 31
{
    _warningMessages.clear();
DonLakeFlyer's avatar
DonLakeFlyer committed
32 33
    connect(_vehicle, &Vehicle::textMessageReceived, this, &PowerComponentController::_handleVehicleTextMessage);
    _vehicle->startUAVCANBusConfig();
34 35
}

36 37
void PowerComponentController::stopBusConfigureActuators(void)
{
DonLakeFlyer's avatar
DonLakeFlyer committed
38 39
    disconnect(_vehicle, &Vehicle::textMessageReceived, this, &PowerComponentController::_handleVehicleTextMessage);
    _vehicle->stopUAVCANBusConfig();
40 41
}

42 43
void PowerComponentController::_stopCalibration(void)
{
DonLakeFlyer's avatar
DonLakeFlyer committed
44
    disconnect(_vehicle, &Vehicle::textMessageReceived, this, &PowerComponentController::_handleVehicleTextMessage);
45 46
}

47 48 49 50 51
void PowerComponentController::_stopBusConfig(void)
{
    _stopCalibration();
}

DonLakeFlyer's avatar
DonLakeFlyer committed
52
void PowerComponentController::_handleVehicleTextMessage(int vehicleId, int /* compId */, int /* severity */, QString text)
53
{
DonLakeFlyer's avatar
DonLakeFlyer committed
54
    if (vehicleId != _vehicle->id()) {
55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76
        return;
    }
    
    // All calibration messages start with [cal]
    QString calPrefix("[cal] ");
    if (!text.startsWith(calPrefix)) {
        return;
    }
    text = text.right(text.length() - calPrefix.length());

    // Make sure we can understand this firmware rev
    QString calStartPrefix("calibration started: ");
    if (text.startsWith(calStartPrefix)) {
        text = text.right(text.length() - calStartPrefix.length());
        
        // Split version number and cal type
        QStringList parts = text.split(" ");
        if (parts.count() != 2) {
            emit incorrectFirmwareRevReporting();
            return;
        }
        
Don Gagne's avatar
Don Gagne committed
77 78 79
#if 0
        // FIXME: Cal version check is not working. Needs to be able to cancel, calibration
        
80 81 82 83 84 85 86 87 88
        int firmwareRev = parts[0].toInt();
        if (firmwareRev < _neededFirmwareRev) {
            emit oldFirmware();
            return;
        }
        if (firmwareRev > _neededFirmwareRev) {
            emit newerFirmware();
            return;
        }
Don Gagne's avatar
Don Gagne committed
89
#endif
90 91 92 93 94 95 96 97 98 99 100 101
    }

    if (text == "Connect battery now") {
        emit connectBattery();
        return;
    }
    
    if (text == "Battery connected") {
        emit batteryConnected();
        return;
    }

102
    
103 104
    QString failedPrefix("calibration failed: ");
    if (text.startsWith(failedPrefix)) {
105 106 107 108 109 110
        QString failureText = text.right(text.length() - failedPrefix.length());
        if (failureText.startsWith("Disconnect battery")) {
            emit disconnectBattery();
            return;
        }
        
111 112 113 114 115 116 117 118 119 120 121 122
        _stopCalibration();
        emit calibrationFailed(text.right(text.length() - failedPrefix.length()));
        return;
    }
    
    QString calCompletePrefix("calibration done:");
    if (text.startsWith(calCompletePrefix)) {
        _stopCalibration();
        emit calibrationSuccess(_warningMessages);
        return;
    }
    
123
    QString warningPrefix("config warning: ");
124 125 126
    if (text.startsWith(warningPrefix)) {
        _warningMessages << text.right(text.length() - warningPrefix.length());
    }
127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145

    QString busFailedPrefix("bus conf fail:");
    if (text.startsWith(busFailedPrefix)) {

        _stopBusConfig();
        emit calibrationFailed(text.right(text.length() - failedPrefix.length()));
        return;
    }

    if (text.startsWith(calCompletePrefix)) {
        _stopBusConfig();
        emit calibrationSuccess(_warningMessages);
        return;
    }

    QString busWarningPrefix("bus conf warn: ");
    if (text.startsWith(busWarningPrefix)) {
        _warningMessages << text.right(text.length() - warningPrefix.length());
    }
146
}