Skip to content
Snippets Groups Projects
Commit fa44fd81 authored by Josh Siegle's avatar Josh Siegle
Browse files

Fixed bug in GenericEditor

parent 4ab411d0
Branches
No related tags found
No related merge requests found
......@@ -233,7 +233,8 @@ void GenericEditor::startAcquisition()
void GenericEditor::stopAcquisition()
{
channelSelector->stopAcquisition();
if (channelSelector != 0)
channelSelector->stopAcquisition();
for (int n = 0; n < parameterEditors.size(); n++)
{
......
......@@ -60,7 +60,7 @@ void FPGAOutput::handleEvent(int eventType, MidiMessage& event)
{
sendActionMessage("HI");
isEnabled = false;
startTimer(2); // 2 ms pulses
startTimer(10); // pulse width
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment