-
Notifications
You must be signed in to change notification settings - Fork 20
DI-DO save/load workspace bug fix #190
Copy link
Copy link
Closed
Description
This,
Line 642 in 8608459
| tmp_device->setActive(userprefs.value("active").value<bool>()); |
should be this
tmp_device->setChannelActive(DAQ::ChannelType::DI,
current_channel_id,
userprefs.value("active").value<bool>());
and this,
Lines 649 to 650 in 8608459
| userprefs.beginGroup(channel_name); | |
| tmp_device->setActive(userprefs.value("active").value<bool>()); |
should be this,
userprefs.beginGroup(channel_id);
tmp_device->setChannelActive(DAQ::ChannelType::DO,
current_channel_id,
userprefs.value("active").value<bool>());
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
No labels