We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ef16bd7 commit e310df3Copy full SHA for e310df3
src/eez/function_generator.cpp
@@ -1697,7 +1697,9 @@ void tick() {
1697
g_phiU[i] -= 2.0f * M_PI_F;
1698
}
1699
1700
- channel_dispatcher::setVoltage(channel, value);
+ if (!io_pins::isInhibited()) {
1701
+ channel_dispatcher::setVoltage(channel, value);
1702
+ }
1703
1704
1705
if (channel.flags.currentTriggerMode == TRIGGER_MODE_FUNCTION_GENERATOR) {
@@ -1709,7 +1711,9 @@ void tick() {
1709
1711
g_phiI[i] -= 2.0f * M_PI_F;
1710
1712
1713
- channel_dispatcher::setCurrent(channel, value);
1714
1715
+ channel_dispatcher::setCurrent(channel, value);
1716
1717
1718
1719
0 commit comments