Commit 2a4c779d authored by Don Gagne's avatar Don Gagne
Browse files

Merge pull request #1278 from DonLakeFlyer/FirmwareUpgradeHelp

Better help text for Firmware Upgrade
parents f6425893 67d27d79
...@@ -93,6 +93,7 @@ Rectangle { ...@@ -93,6 +93,7 @@ Rectangle {
height: 300 height: 300
readOnly: true readOnly: true
frameVisible: false frameVisible: false
text: qsTr("Please disconnect all connections and unplug board from USB before selecting Upgrade.")
style: TextAreaStyle { style: TextAreaStyle {
textColor: qgcPal.text textColor: qgcPal.text
backgroundColor: qgcPal.windowShade backgroundColor: qgcPal.windowShade
......
...@@ -84,7 +84,8 @@ void FirmwareUpgradeController::_foundBoard(bool firstTry, const QString portNam ...@@ -84,7 +84,8 @@ void FirmwareUpgradeController::_foundBoard(bool firstTry, const QString portNam
{ {
if (firstTry) { if (firstTry) {
// Board is still plugged // Board is still plugged
_appendStatusLog(tr("You must unplug your board before beginning the Firmware Upgrade process.")); _appendStatusLog(tr("Please unplug your board before beginning the Firmware Upgrade process."));
_appendStatusLog(tr("Click Upgrade again once the board is unplugged."));
_cancel(); _cancel();
} else { } else {
_portName = portName; _portName = portName;
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment