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
816ed1c7
Commit
816ed1c7
authored
Feb 25, 2014
by
Don Gagne
Browse files
Remove qDebug statements
parent
7a837cde
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/ui/configuration/FlightModeConfig.cc
View file @
816ed1c7
...
@@ -216,12 +216,10 @@ void FlightModeConfig::saveButtonClicked(void)
...
@@ -216,12 +216,10 @@ void FlightModeConfig::saveButtonClicked(void)
// rc channel value.
// rc channel value.
void
FlightModeConfig
::
remoteControlChannelRawChanged
(
int
chan
,
float
val
)
void
FlightModeConfig
::
remoteControlChannelRawChanged
(
int
chan
,
float
val
)
{
{
//qDebug() << chan << val << _modeSwitchRCChannel;
// Until we get the _modeSwitchRCChannel value from a parameter it will be set
// Until we get the _modeSwitchRCChannel value from a parameter it will be set
// to -1, which is an invalid channel thus the labels won't update
// to -1, which is an invalid channel thus the labels won't update
if
(
chan
==
_modeSwitchRCChannel
)
if
(
chan
==
_modeSwitchRCChannel
)
{
{
//qDebug() << chan << val;
size_t
highlightIndex
=
_cModes
;
// initialize to unreachable index
size_t
highlightIndex
=
_cModes
;
// initialize to unreachable index
for
(
size_t
i
=
0
;
i
<
_cModes
;
i
++
)
{
for
(
size_t
i
=
0
;
i
<
_cModes
;
i
++
)
{
...
...
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