Skip to content

Commit

Permalink
Merge pull request #98 from cescalara/dac_setting_update
Browse files Browse the repository at this point in the history
Dac setting update
  • Loading branch information
Francesca Capel authored Feb 18, 2020
2 parents c3bbe04 + a1d05e5 commit ca30d58
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
4 changes: 3 additions & 1 deletion CPU/CPUsoftware/src/instrument/RunInstrument.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,9 @@ int RunInstrument::HvpsSwitch() {
{
std::unique_lock<std::mutex> lock(this->Zynq.m_zynq);
this->Zynq.HvpsTurnOff();
this->Zynq.SetDac(0);
if (this->ConfigOut->dac_level != NO_DAC_SET) {
this->Zynq.SetDac(0);
}
break;
}
case ZynqManager::UNDEF:
Expand Down
4 changes: 2 additions & 2 deletions minieuso_data_format/minieuso_data_format.h
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,8 @@
* software definitions
*/

#define VERSION 8.4
#define VERSION_DATE_STRING "07/02/2020"
#define VERSION 8.5
#define VERSION_DATE_STRING "18/02/2020"

/*
* instrument definitions
Expand Down

0 comments on commit ca30d58

Please sign in to comment.