RadioCalibrationWindow.cc 9.98 KB
Newer Older
1
#include "RadioCalibrationWindow.h"
Don Gagne's avatar
Don Gagne committed
2
#include "QGCFileDialog.h"
3 4

RadioCalibrationWindow::RadioCalibrationWindow(QWidget *parent) :
5 6
    QWidget(parent, Qt::Window),
    radio(new RadioCalibrationData())
7
{
8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28
    QGridLayout *grid = new QGridLayout();

    aileron = new AirfoilServoCalibrator(AirfoilServoCalibrator::AILERON);
    grid->addWidget(aileron, 0, 0, 1, 1, Qt::AlignTop);

    elevator = new AirfoilServoCalibrator(AirfoilServoCalibrator::ELEVATOR);
    grid->addWidget(elevator, 0, 1, 1, 1, Qt::AlignTop);

    rudder = new AirfoilServoCalibrator(AirfoilServoCalibrator::RUDDER);
    grid->addWidget(rudder, 0, 2, 1, 1, Qt::AlignTop);

    gyro = new SwitchCalibrator(tr("Gyro Mode/Gain"));
    grid->addWidget(gyro, 0, 3, 1, 1, Qt::AlignTop);


    pitch = new CurveCalibrator(tr("Collective Pitch"));
    grid->addWidget(pitch, 1, 0, 1, 2);

    throttle = new CurveCalibrator(tr("Throttle"));
    grid->addWidget(throttle, 1, 2, 1, 2);

29 30
    /* Buttons for loading/transmitting calibration data */
    QHBoxLayout *hbox = new QHBoxLayout();
31 32 33 34 35 36 37 38 39
    QPushButton *load = new QPushButton(tr("Load File"));
    QPushButton *save = new QPushButton(tr("Save File"));
    QPushButton *transmit = new QPushButton(tr("Transmit to UAV"));
    QPushButton *get = new QPushButton(tr("Get from UAV"));
    hbox->addWidget(load);
    hbox->addWidget(save);
    hbox->addWidget(transmit);
    hbox->addWidget(get);
    grid->addLayout(hbox, 2, 0, 1, 4);
40
    this->setLayout(grid);
41 42 43 44

    connect(load, SIGNAL(clicked()), this, SLOT(loadFile()));
    connect(save, SIGNAL(clicked()), this, SLOT(saveFile()));
    connect(transmit, SIGNAL(clicked()), this, SLOT(send()));
45 46
    connect(get, SIGNAL(clicked()), this, SLOT(request()));

Bryan Godbolt's avatar
Bryan Godbolt committed
47 48 49 50 51 52
    connect(aileron, SIGNAL(setpointChanged(int,uint16_t)), radio, SLOT(setAileron(int,uint16_t)));
    connect(elevator, SIGNAL(setpointChanged(int,uint16_t)), radio, SLOT(setElevator(int,uint16_t)));
    connect(rudder, SIGNAL(setpointChanged(int,uint16_t)), radio, SLOT(setRudder(int,uint16_t)));
    connect(gyro, SIGNAL(setpointChanged(int,uint16_t)), radio, SLOT(setGyro(int,uint16_t)));
    connect(pitch, SIGNAL(setpointChanged(int,uint16_t)), radio, SLOT(setPitch(int,uint16_t)));
    connect(throttle, SIGNAL(setpointChanged(int,uint16_t)), radio, SLOT(setThrottle(int,uint16_t)));
53
    setUASId(0);
54 55
}

56

57

58
void RadioCalibrationWindow::setChannel(int ch, float raw)
59 60 61 62
{
    /** this expects a particular channel to function mapping
       \todo allow run-time channel mapping
       */
63
    switch (ch) {
64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84
    case 0:
        aileron->channelChanged(raw);
        break;
    case 1:
        elevator->channelChanged(raw);
        break;
    case 2:
        throttle->channelChanged(raw);
        break;
    case 3:
        rudder->channelChanged(raw);
        break;
    case 4:
        gyro->channelChanged(raw);
        break;
    case 5:
        pitch->channelChanged(raw);
        break;


    }
85
}
86

87
void RadioCalibrationWindow::saveFile()
88
{
Don Gagne's avatar
Don Gagne committed
89
    QString fileName(QGCFileDialog::getSaveFileName(this,
90 91 92
                     tr("Save RC Calibration"),
                     "settings/",
                     tr("XML Files (*.xml)")));
93 94 95 96 97 98
    if (fileName.isEmpty())
        return;

    QDomDocument *rcConfig = new QDomDocument();

    QFile rcFile(fileName);
99 100
    if (rcFile.exists()) {
        rcFile.remove();
101
    }
102
    if (!rcFile.open(QFile::WriteOnly | QFile::Text)) {
103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160
        qDebug() << __FILE__ << __LINE__ << "could not open"  << rcFile.fileName() << "for writing";
        return;
    }

    QDomElement root;
    rcConfig->appendChild(root=rcConfig->createElement("channels"));
    QDomElement e;
    QDomText t;

    // Aileron
    e = rcConfig->createElement("threeSetpoint");
    e.setAttribute("name", "Aileron");
    e.setAttribute("number", "1");
    t = rcConfig->createTextNode(radio->toString(RadioCalibrationData::AILERON));
    e.appendChild(t);
    root.appendChild(e);
    // Elevator
    e = rcConfig->createElement("threeSetpoint");
    e.setAttribute("name", "Elevator");
    e.setAttribute("number", "2");
    t = rcConfig->createTextNode(radio->toString(RadioCalibrationData::ELEVATOR));
    e.appendChild(t);
    root.appendChild(e);
    // Rudder
    e = rcConfig->createElement("threeSetpoint");
    e.setAttribute("name", "Rudder");
    e.setAttribute("number", "4");
    t = rcConfig->createTextNode(radio->toString(RadioCalibrationData::RUDDER));
    e.appendChild(t);
    root.appendChild(e);
    // Gyro Mode/Gain
    e = rcConfig->createElement("twoSetpoint");
    e.setAttribute("name", "Gyro");
    e.setAttribute("number", "5");
    t = rcConfig->createTextNode(radio->toString(RadioCalibrationData::GYRO));
    e.appendChild(t);
    root.appendChild(e);
    // Throttle
    e = rcConfig->createElement("fiveSetpoint");
    e.setAttribute("name", "Throttle");
    e.setAttribute("number", "3");
    t = rcConfig->createTextNode(radio->toString(RadioCalibrationData::THROTTLE));
    e.appendChild(t);
    root.appendChild(e);
    // Pitch
    e = rcConfig->createElement("fiveSetpoint");
    e.setAttribute("name", "Pitch");
    e.setAttribute("number", "6");
    t = rcConfig->createTextNode(radio->toString(RadioCalibrationData::PITCH));
    e.appendChild(t);
    root.appendChild(e);


    QTextStream out(&rcFile);
    const int IndentSize = 4;
    rcConfig->save(out, IndentSize);
    rcFile.close();

161 162
}

163
void RadioCalibrationWindow::loadFile()
164
{
Don Gagne's avatar
Don Gagne committed
165
    QString fileName(QGCFileDialog::getOpenFileName(this,
166 167 168
                     tr("Load RC Calibration"),
                     "settings/",
                     tr("XML Files (*.xml)")));
169 170 171 172 173

    if (fileName.isEmpty())
        return;

    QFile rcFile(fileName);
174
    if (!rcFile.exists()) {
175 176 177
        return;
    }

178
    if (!rcFile.open(QIODevice::ReadOnly)) {
179 180 181 182 183 184 185 186 187 188
        return;
    }

    QDomDocument *rcConfig = new QDomDocument();

    QString errorStr;
    int errorLine;
    int errorColumn;

    if (!rcConfig->setContent(&rcFile, true, &errorStr, &errorLine,
189
                              &errorColumn)) {
190 191 192 193
        qDebug() << "Error reading XML Parameter File on line: " << errorLine << errorStr;
        return;
    }

194
    rcFile.close();
195 196 197 198 199 200 201 202 203
    QDomElement root = rcConfig->documentElement();
    if (root.tagName() != "channels") {
        qDebug() << __FILE__ << __LINE__ << "This is not a Radio Calibration xml file";
        return;
    }


    QPointer<RadioCalibrationData> newRadio = new RadioCalibrationData();
    QDomElement child = root.firstChildElement();
204
    while (!child.isNull()) {
205 206 207 208 209 210 211 212 213 214 215 216 217 218 219
        parseSetpoint(child, newRadio);
        child = child.nextSiblingElement();
    }

    receive(newRadio);

    delete newRadio;
    delete rcConfig;
}

void RadioCalibrationWindow::parseSetpoint(const QDomElement &setpoint, const QPointer<RadioCalibrationData>& newRadio)
{
    QVector<float> setpoints;
    QStringList setpointList = setpoint.text().split(",", QString::SkipEmptyParts);
    foreach (QString setpoint, setpointList)
220
    setpoints << setpoint.trimmed().toFloat();
221

222
//    qDebug() << __FILE__ << __LINE__ << ": " << setpoint.tagName() << ": " << setpoint.attribute("name") ;
223
    if (setpoint.tagName() == "threeSetpoint") {
224 225
        if (setpoints.isEmpty())
            setpoints << 0 << 0 << 0;
226
        for (int i=0; i<3; ++i) {
227 228 229 230 231 232 233
            if (setpoint.attribute("name").toUpper() == "AILERON")
                newRadio->setAileron(i, setpoints[i]);
            else if(setpoint.attribute("name").toUpper() == "ELEVATOR")
                newRadio->setElevator(i, setpoints[i]);
            else if(setpoint.attribute("name").toUpper() == "RUDDER")
                newRadio->setRudder(i, setpoints[i]);
        }
234
    } else if (setpoint.tagName() == "twoSetpoint") {
235 236
        if (setpoints.isEmpty())
            setpoints << 0 << 0;
237
        for (int i=0; i<2; ++i) {
238 239 240
            if (setpoint.attribute("name").toUpper() == "GYRO")
                newRadio->setGyro(i, setpoints[i]);
        }
241
    } else if (setpoint.tagName() == "fiveSetpoint") {
242 243
        if (setpoints.isEmpty())
            setpoints << 0 << 0 << 0 << 0 << 0;
244
        for (int i=0; i<5; ++i) {
245 246 247 248 249 250
            if (setpoint.attribute("name").toUpper() == "PITCH")
                newRadio->setPitch(i, setpoints[i]);
            else if (setpoint.attribute("name").toUpper() == "THROTTLE")
                newRadio->setThrottle(i, setpoints[i]);
        }
    }
251 252
}

253 254
void RadioCalibrationWindow::send()
{
255
    qDebug() << __FILE__ << __LINE__ << "uasId = " << uasId;
256
#ifdef MAVLINK_ENABLED_UALBERTA
257
    UAS *uas = dynamic_cast<UAS*>(UASManager::instance()->getUASForId(uasId));
258
    if (uas) {
259 260
        mavlink_message_t msg;
        mavlink_msg_radio_calibration_pack(uasId, 0, &msg,
261 262 263 264 265 266
                                           (*radio)[RadioCalibrationData::AILERON],
                                           (*radio)[RadioCalibrationData::ELEVATOR],
                                           (*radio)[RadioCalibrationData::RUDDER],
                                           (*radio)[RadioCalibrationData::GYRO],
                                           (*radio)[RadioCalibrationData::PITCH],
                                           (*radio)[RadioCalibrationData::THROTTLE]);
267
        uas->sendMessage(msg);
268 269 270 271
    }
#endif
}

272
void RadioCalibrationWindow::request()
273
{
274 275 276 277 278 279 280 281
    // FIXME MAVLINKV10PORTINGNEEDED
//    qDebug() << __FILE__ << __LINE__ << "READ FROM UAV";
//    UAS *uas = dynamic_cast<UAS*>(UASManager::instance()->getUASForId(uasId));
//    if (uas) {
//        mavlink_message_t msg;
//        mavlink_msg_action_pack(uasId, 0, &msg, 0, 0, ::MAV_ACTION_CALIBRATE_RC);
//        uas->sendMessage(msg);
//    }
282 283
}

284
void RadioCalibrationWindow::receive(const QPointer<RadioCalibrationData>& radio)
285
{
286
    if (radio) {
287 288 289 290 291 292 293 294 295 296
        if (this->radio)
            delete this->radio;
        this->radio = new RadioCalibrationData(*radio);

        aileron->set((*radio)(RadioCalibrationData::AILERON));
        elevator->set((*radio)(RadioCalibrationData::ELEVATOR));
        rudder->set((*radio)(RadioCalibrationData::RUDDER));
        gyro->set((*radio)(RadioCalibrationData::GYRO));
        pitch->set((*radio)(RadioCalibrationData::PITCH));
        throttle->set((*radio)(RadioCalibrationData::THROTTLE));
297
    }
298
}