From 90b12d52df5cf8f8a94fe26c2aaca2c7f4257be5 Mon Sep 17 00:00:00 2001 From: Josh Siegle Date: Thu, 9 Nov 2023 09:17:09 -0800 Subject: [PATCH] Remove debug output --- Source/UI/DataPlayer.cpp | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/Source/UI/DataPlayer.cpp b/Source/UI/DataPlayer.cpp index 6468d1b..189e59f 100644 --- a/Source/UI/DataPlayer.cpp +++ b/Source/UI/DataPlayer.cpp @@ -151,8 +151,8 @@ void DataPlayer::comboBoxChanged(ComboBox* comboBox) if (comboBox->getSelectedId() == 1) // deselect output { - std::cout << "Selected: " << comboBox->getSelectedId() << std::endl; - std::cout << "Current output: " << outputChan << std::endl; + //std::cout << "Selected: " << comboBox->getSelectedId() << std::endl; + //std::cout << "Current output: " << outputChan << std::endl; if (outputChan > -1) { @@ -162,13 +162,13 @@ void DataPlayer::comboBoxChanged(ComboBox* comboBox) outputChan = -1; - std::cout << "New output: " << outputChan << std::endl; + //std::cout << "New output: " << outputChan << std::endl; } else if (comboBox->getSelectedId() > 1) { - std::cout << "Selected: " << comboBox->getSelectedId() << std::endl; - std::cout << "Current output: " << outputChan << std::endl; + //std::cout << "Selected: " << comboBox->getSelectedId() << std::endl; + //std::cout << "Current output: " << outputChan << std::endl; if (outputChan > -1) { @@ -180,7 +180,7 @@ void DataPlayer::comboBoxChanged(ComboBox* comboBox) adc->setChannelType(outputChan, DataSourceType::DAC); //onebox->disableInput(outputChan); - std::cout << "New output: " << outputChan << std::endl; + //std::cout << "New output: " << outputChan << std::endl; } }