|
|
|
@ -106,14 +106,14 @@ const QVariantList& PX4AutoPilotPlugin::vehicleComponents(void)
@@ -106,14 +106,14 @@ const QVariantList& PX4AutoPilotPlugin::vehicleComponents(void)
|
|
|
|
|
_radioComponent->setupTriggerSignals(); |
|
|
|
|
_components.append(QVariant::fromValue((VehicleComponent*)_radioComponent)); |
|
|
|
|
|
|
|
|
|
_flightModesComponent = new FlightModesComponent(_vehicle, this); |
|
|
|
|
_flightModesComponent->setupTriggerSignals(); |
|
|
|
|
_components.append(QVariant::fromValue((VehicleComponent*)_flightModesComponent)); |
|
|
|
|
|
|
|
|
|
_sensorsComponent = new SensorsComponent(_vehicle, this); |
|
|
|
|
_sensorsComponent->setupTriggerSignals(); |
|
|
|
|
_components.append(QVariant::fromValue((VehicleComponent*)_sensorsComponent)); |
|
|
|
|
|
|
|
|
|
_flightModesComponent = new FlightModesComponent(_vehicle, this); |
|
|
|
|
_flightModesComponent->setupTriggerSignals(); |
|
|
|
|
_components.append(QVariant::fromValue((VehicleComponent*)_flightModesComponent)); |
|
|
|
|
|
|
|
|
|
_powerComponent = new PowerComponent(_vehicle, this); |
|
|
|
|
_powerComponent->setupTriggerSignals(); |
|
|
|
|
_components.append(QVariant::fromValue((VehicleComponent*)_powerComponent)); |
|
|
|
@ -150,7 +150,7 @@ void PX4AutoPilotPlugin::_parametersReadyPreChecks(bool missingParameters)
@@ -150,7 +150,7 @@ void PX4AutoPilotPlugin::_parametersReadyPreChecks(bool missingParameters)
|
|
|
|
|
_incorrectParameterVersion = true; |
|
|
|
|
qgcApp()->showMessage("This version of GroundControl can only perform vehicle setup on a newer version of firmware. " |
|
|
|
|
"Please perform a Firmware Upgrade if you wish to use Vehicle Setup."); |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
_parametersReady = true; |
|
|
|
|
_missingParameters = missingParameters; |
|
|
|
|