diff --git a/src/uas/UASWaypointManager.cc b/src/uas/UASWaypointManager.cc
index 8d0db507d6201a54fb4df1abd657cdd4874b0953..f399286e7632d972233816783f4eea09be3493aa 100644
--- a/src/uas/UASWaypointManager.cc
+++ b/src/uas/UASWaypointManager.cc
@@ -394,7 +394,7 @@ void UASWaypointManager::saveWaypoints(const QString &saveFile)
QTextStream out(&file);
//write the waypoint list version to the first line for compatibility check
- out << "QGC WPL 100\r\n";
+ out << "QGC WPL 110\r\n";
for (int i = 0; i < waypoints.size(); i++)
{
@@ -420,7 +420,7 @@ void UASWaypointManager::loadWaypoints(const QString &loadFile)
const QStringList &version = in.readLine().split(" ");
- if (!(version.size() == 3 && version[0] == "QGC" && version[1] == "WPL" && version[2] == "100"))
+ if (!(version.size() == 3 && version[0] == "QGC" && version[1] == "WPL" && version[2] == "110"))
{
emit updateStatusString(tr("The waypoint file is not compatible with the current version of QGroundControl."));
//MainWindow::instance()->showCriticalMessage(tr("Error loading waypoint file"),tr("The waypoint file is not compatible with the current version of QGroundControl."));
diff --git a/src/ui/WaypointView.cc b/src/ui/WaypointView.cc
index fbb3ff1cdf630bb65d7a0ac3e8a0f4baa5c57a09..718c7f2d9640c25de5bfae28f68d69244ad6ac7d 100644
--- a/src/ui/WaypointView.cc
+++ b/src/ui/WaypointView.cc
@@ -105,9 +105,7 @@ WaypointView::WaypointView(Waypoint* wp, QWidget* parent) :
connect(customCommand->param4SpinBox, SIGNAL(valueChanged(double)), wp, SLOT(setParam4(double)));
connect(customCommand->param5SpinBox, SIGNAL(valueChanged(double)), wp, SLOT(setParam5(double)));
connect(customCommand->param6SpinBox, SIGNAL(valueChanged(double)), wp, SLOT(setParam6(double)));
-
- // MISSION ELEMENT WIDGET
- // TODO
+ connect(customCommand->param7SpinBox, SIGNAL(valueChanged(double)), wp, SLOT(setParam7(double)));
}
void WaypointView::setYaw(int yawDegree)
@@ -507,6 +505,11 @@ void WaypointView::updateValues()
{
customCommand->param6SpinBox->setValue(wp->getParam6());
}
+ // Param 7
+ if (customCommand->param7SpinBox->value() != wp->getParam7())
+ {
+ customCommand->param7SpinBox->setValue(wp->getParam7());
+ }
wp->blockSignals(false);
}
diff --git a/src/ui/mission/QGCCustomWaypointAction.ui b/src/ui/mission/QGCCustomWaypointAction.ui
index 0b7c930894129b5948a3dab73f52c621f7f62b0b..5c98f8980a88bec21661814b2867855a6fe4ca3c 100644
--- a/src/ui/mission/QGCCustomWaypointAction.ui
+++ b/src/ui/mission/QGCCustomWaypointAction.ui
@@ -13,7 +13,7 @@
Form
-
+
5
@@ -114,6 +114,19 @@
+ -
+
+
+ P7
+
+
+ -2147483647.000000000000000
+
+
+ 2147483647.000000000000000
+
+
+