Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
mvladic committed Oct 4, 2017
1 parent d1e77c3 commit 8432617
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion eez_psu_sketch/profile.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ void recallChannelsFromProfile(Parameters *profile, int location) {
channel.simulator.voltProgExt = profile->channels[i].voltProgExt;
#endif

channel.flags.outputEnabled = profile->channels[i].flags.output_enabled;
channel.flags.outputEnabled = channel.isTripped() ? 0 : profile->channels[i].flags.output_enabled;
channel.flags.senseEnabled = profile->channels[i].flags.sense_enabled;

if (channel.getFeatures() & CH_FEATURE_RPROG) {
Expand Down

0 comments on commit 8432617

Please sign in to comment.