Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Valentin Platzgummer
qgroundcontrol
Commits
2a4c779d
Commit
2a4c779d
authored
Feb 26, 2015
by
Don Gagne
Browse files
Merge pull request #1278 from DonLakeFlyer/FirmwareUpgradeHelp
Better help text for Firmware Upgrade
parents
f6425893
67d27d79
Changes
2
Hide whitespace changes
Inline
Side-by-side
src/VehicleSetup/FirmwareUpgrade.qml
View file @
2a4c779d
...
...
@@ -93,6 +93,7 @@ Rectangle {
height
:
300
readOnly
:
true
frameVisible
:
false
text
:
qsTr
(
"
Please disconnect all connections and unplug board from USB before selecting Upgrade.
"
)
style
:
TextAreaStyle
{
textColor
:
qgcPal
.
text
backgroundColor
:
qgcPal
.
windowShade
...
...
src/VehicleSetup/FirmwareUpgradeController.cc
View file @
2a4c779d
...
...
@@ -84,7 +84,8 @@ void FirmwareUpgradeController::_foundBoard(bool firstTry, const QString portNam
{
if
(
firstTry
)
{
// 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
();
}
else
{
_portName
=
portName
;
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment