Skip to content

Commit

Permalink
Remove debug output
Browse files Browse the repository at this point in the history
  • Loading branch information
jsiegle committed Nov 9, 2023
1 parent 706780e commit 90b12d5
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions Source/UI/DataPlayer.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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)
{
Expand All @@ -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)
{
Expand All @@ -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;
}
}

Expand Down

0 comments on commit 90b12d5

Please sign in to comment.