Commit 7a837cde authored by Don Gagne's avatar Don Gagne

Commented out uneeded debugging output

parent cab41473
...@@ -216,12 +216,12 @@ void FlightModeConfig::saveButtonClicked(void) ...@@ -216,12 +216,12 @@ 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; //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; //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++) {
......
Markdown is supported
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