Skip to content

Commit

Permalink
#72
Browse files Browse the repository at this point in the history
  • Loading branch information
mvladic committed Oct 22, 2020
1 parent 38a5a96 commit 079b3b0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/eez/modules/dib-dcp405/dib-dcp405.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -840,8 +840,8 @@ struct DcpChannel : public Channel {
}

void getCurrentStepValues(StepValues *stepValues, bool calibrationMode) override {
static float lowRangeValues[] = { 0.000005f, 0.00001f, 0.0001f, 0.0005f, 0.001f };
static float calibrationModeLowRangeValues[] = { 0.000001f, 0.00001f, 0.0001f, 0.0005f, 0.001f};
static float lowRangeValues[] = { 0.000005f, 0.000025f, 0.0001f, 0.0005f, 0.001f };
static float calibrationModeLowRangeValues[] = { 0.000001f, 0.00001f, 0.0001f, 0.0005f, 0.001f };
static float highRangeValues[] = { 0.0005f, 0.0025f, 0.01f, 0.05f, 0.1f };
static float calibrationModeHighRangeValues[] = { 0.0001f, 0.001f, 0.01f, 0.05f, 0.1f };
if (flags.currentRangeSelectionMode == CURRENT_RANGE_SELECTION_ALWAYS_LOW) {
Expand Down

0 comments on commit 079b3b0

Please sign in to comment.