#include #include #include "Dim.h" #include "Event.h" #include "Shell.h" #include "StateMachineDim.h" #include "StateMachineAsio.h" #include "ConnectionUSB.h" #include "Configuration.h" #include "Console.h" #include "externals/PixelMap.h" #include "tools.h" #include "LocalControl.h" #include "HeadersBIAS.h" namespace ba = boost::asio; namespace bs = boost::system; namespace dummy = ba::placeholders; using namespace std::placeholders; using namespace std; // We can do that because we do not include other headers than HeadersBIAS using namespace BIAS; // ------------------------------------------------------------------------ class ConnectionBias : public ConnectionUSB { boost::asio::deadline_timer fSyncTimer; boost::asio::deadline_timer fRampTimer; boost::asio::deadline_timer fUpdateTimer; vector fBuffer; vector fBufferRamp; vector fBufferUpdate; bool fIsVerbose; bool fIsDummyMode; vector fPresent; int64_t fWrapCounter; int64_t fSendCounter; int16_t fGlobalDacCmd; // Command value to be reached int16_t fRampStep; int16_t fRampTime; uint32_t fUpdateTime; uint16_t fSyncTime; uint32_t fReconnectDelay; int fIsInitializing; bool fIsRamping; int fWaitingForAnswer; vector fCounter; Time fLastConnect; protected: vector fCurrent; // Current in ADC units (12bit = 5mA) virtual void UpdateAV() { } virtual void UpdateV(const Time = Time()) { } virtual void UpdateVgapd() { } // ==================================================== vector fBreakdownVoltage; // Breakdown voltage of GAPDs vector fOvervoltage; // Requested overvoltage of GAPDs vector fChannelCalibration; // Bias crate channel offset vector fChannelOffset; // User defined channel offset float fVoltageMaxAbs; // Maximum voltage float fVoltageMaxRel; // Maximum voltgage above (what?) vector fDacTarget; // Target values vector fDacCommand; // Last sent command value vector fDacActual; // Actual value // ==================================================== private: vector GetCmd(uint16_t board, uint16_t channel, Command_t cmd, uint16_t dac=0) { vector data(3); /* if (board>kNumBoards) return; if (channel>kNumChannelsPerBoard) return; if (dac>0xfff) return; */ data[0] = (cmd<<5) | (board<<1) | (((channel&16)>>4) & 1); data[1] = (channel<<4) | (dac>>8); data[2] = dac&0xff; return data; } vector GetCmd(Command_t cmd, uint16_t id=0, uint16_t dac=0) { const unsigned int board = id/kNumChannelsPerBoard; const unsigned int channel = id%kNumChannelsPerBoard; return GetCmd(board, channel, cmd, dac); } bool CheckMessageLength(int received, int expected, const string &msg) { if (received==expected) return true; ostringstream str; str << msg << ": Expected " << expected << " bytes in answer, but got " << received << endl; Error(str); return false; } bool EvalAnswer(const uint8_t *answer, uint16_t id, int command) { answer += id*3; const uint16_t status = (answer[0]>>7)&1; const uint16_t wrap = (answer[0]>>4)&7; const uint16_t ddd = ((uint16_t(answer[0])&0xf)<<8) | answer[1]; const uint16_t error = (answer[2]>>4)&0xf; const uint16_t board = answer[2]&0xf; // 0x10 00 7f // status = 0 // wrap = 1 // ddd = 0 // error = not present // board = 15 /* Out() << dec << setw(2) << board << '|' << wrap << " "; if (id%8==7) Out() << endl; */ if (fWrapCounter>=0) { if ((fWrapCounter+1)%8 != wrap) { ostringstream msg; msg << "Corrupted answer (id=" << id << "): received wrap counter " << wrap << " doesn't match last one " << fWrapCounter << " "; msg << " (fSendCounter=" << fSendCounter << ")"; Error(msg); return false; } } fWrapCounter = wrap; if (command==kSynchronize) { ostringstream msg; msg << hex << setfill('0'); msg << "Initial answer received: 0x"; msg << setw(2) << (int)answer[2]; msg << setw(2) << (int)answer[1]; msg << setw(2) << (int)answer[0]; Message(msg); if (status!=0 || ddd!=0 || error!=0 || board!=0) { Warn("Initial answer doesn't seem to be a reset as naively expected."); //ostringstream msg; //msg << hex << setfill('0'); //msg << "S=" << status << " D=" << ddd << " E=" << error << " B=" << board; //Message(msg); } fSendCounter = wrap; msg.str(""); msg << "Setting fSendCounter to " << wrap; Info(msg); return true; } if (error==0x8) // No device { Message("Reset button on crate pressed!"); RampAllDacs(0); return true; } if (command==kCmdReset) { if (status==0 && ddd==0 && error==0 && board==0) { Message("Reset successfully executed."); return true; } Warn("Answer to 'reset' command contains unexpected data."); return false; } if (command==kCmdGlobalSet) { if (status==0 && ddd==0 && error==0 && board==0) { for (int i=0; i>8; const int cmd = command&3; if (cmd==kCmdRead || cmd==kCmdChannelSet) { if (board!=id/kNumChannelsPerBoard) { ostringstream out; out << "Talked to board " << id/kNumChannelsPerBoard << ", but got answer from board " << board << " (fSendCounter=" << fSendCounter << ")"; Error(out); return false; } // Not present if (error==0x7 || error==0xf) { fPresent[board] = false; fCurrent[id] = 0x8000; return true; } // There is no -0 therefore we make a trick and replace it by -1. // This is not harmfull, because typical zero currents are in the // order of one to three bits anyway and they are never stable. fCurrent[id] = status ? -(ddd==0?1:ddd) : ddd; fPresent[board] = true; } if (cmd==kCmdChannelSet) fDacActual[id] = fDacCommand[id]; return true; } private: void DelayedReconnect() { const Time now; // If we have been connected without a diconnect for at least 60s // we can reset the delay. if (now-fLastConnect>boost::posix_time::seconds(60)) fReconnectDelay = 1; ostringstream msg; msg << "Automatic reconnect in " << fReconnectDelay << "s after being connected for "; msg << (now-fLastConnect).seconds() << "s"; Info(msg); CloseImp(fReconnectDelay); fReconnectDelay *= 2; } void HandleReceivedData(const vector &buf, size_t bytes_received, int command, int send_counter) { #ifdef DEBUG ofstream fout("received.txt", ios::app); fout << Time() << ": "; for (unsigned int i=0; i>> /// This replaces the send counter and the command argument // in handleReceivedData switch (command&0xff) { case kSynchronize: case kCmdReset: case kExpertChannelSet: case kCmdGlobalSet: case kResetChannels: case kCmdRead: HandleReceivedData(fBuffer, bytes_received, command, send_counter); fWaitingForAnswer = -1; return; case kCmdChannelSet: HandleReceivedData(fBufferRamp, bytes_received, command, send_counter); return; case kUpdate: HandleReceivedData(fBufferUpdate, bytes_received, command, send_counter); return; } } // -------------------------------------------------------------------- void HandleSyncTimer(int counter, const bs::error_code &error) { if (error==ba::error::basic_errors::operation_aborted) { if (fIsInitializing==1) Warn("Synchronization aborted..."); // case 0 and 2 should not happen return; } if (error) { ostringstream str; str << "Synchronization timer: " << error.message() << " (" << error << ")";// << endl; Error(str); CloseImp(-1); return; } if (!is_open()) { Warn("Synchronization in progress, but disconnected."); return; } ostringstream msg; msg << "Synchronization time expired (" << counter << ")"; Info(msg); if (fIsInitializing) { PostMessage("\0", 1); if (counter==2) { Error("Synchronization attempt timed out."); CloseImp(-1); return; } ScheduleSync(counter+1); return; } Info("Synchronisation successfull."); } void ScheduleSync(int counter=0) { fSyncTimer.expires_from_now(boost::posix_time::milliseconds(fSyncTime)); fSyncTimer.async_wait(boost::bind(&ConnectionBias::HandleSyncTimer, this, counter, dummy::error)); } // This is called when a connection was established void ConnectionEstablished() { // We connect for the first time or haven't received // a valid warp counter yet... this procedure also sets // our volatges to 0 if we have connected but never received // any answer. if (fWrapCounter<0) { fDacTarget.assign(kNumChannels, 0); fDacCommand.assign(kNumChannels, 0); fDacActual.assign(kNumChannels, 0); } // Reset everything.... fSendCounter = -1; fWrapCounter = -1; fGlobalDacCmd = -1; fIsInitializing = 1; fIsRamping = false; fLastConnect = Time(); // Send a single 0 (and possible two consecutive 0's // to make sure we are in sync with the device) PostMessage("\0", 1); AsyncRead(ba::buffer(fBuffer, 3), kSynchronize, 0);//++fSendCounter); fWaitingForAnswer = kSynchronize; // Wait for some time before sending the next 0 ScheduleSync(); } // -------------------------------------------------------------------- void HandleUpdateTimer(const bs::error_code &error) { if (error==ba::error::basic_errors::operation_aborted) { Warn("Update timer aborted..."); fIsRamping = false; return; } if (error) { ostringstream str; str << "Update timer: " << error.message() << " (" << error << ")";// << endl; Error(str); CloseImp(-1); return; } if (!is_open()) return; if (fUpdateTime==0 && fIsInitializing!=2) return; if (fIsRamping) ScheduleUpdate(fUpdateTime); else ReadAllChannels(true); fIsInitializing = 0; } void ScheduleUpdate(int millisec) { fUpdateTimer.expires_from_now(boost::posix_time::milliseconds(millisec)); fUpdateTimer.async_wait(boost::bind(&ConnectionBias::HandleUpdateTimer, this, dummy::error)); } // -------------------------------------------------------------------- void PrintLineCmdDac(int b, int ch, const vector &dac) { Out() << setw(2) << b << "|"; for (int c=ch; c &dac) { Out() << dec << setprecision(2) << fixed << setfill(' '); for (int b=0; b &dac, bool special=false) { if (fIsDummyMode) { PrintCommandDac(dac); return; } vector data; data.reserve(kNumChannels*3); for (int ch=0; ch cmd = GetCmd(kCmdChannelSet, ch, dac[ch]); data.insert(data.end(), cmd.begin(), cmd.end()); fDacCommand[ch] = dac[ch]; } fSendCounter += kNumChannels; PostMessage(data); AsyncRead(ba::buffer(special ? fBuffer : fBufferRamp, kNumChannels*3), special ? kResetChannels : kCmdChannelSet, fSendCounter); if (special) fWaitingForAnswer = kResetChannels; } uint16_t RampOneStep(uint16_t ch) { if (fDacTarget[ch]>fDacActual[ch]) return fDacActual[ch]+fRampStep>fDacTarget[ch] ? fDacTarget[ch] : fDacActual[ch]+fRampStep; if (fDacTarget[ch] dac(kNumChannels); bool identical = true; for (int ch=0; ch ba::deadline_timer::traits_type::now()) return; fIsRamping = RampOneStep(); } void ScheduleRampStep() { fRampTimer.expires_from_now(boost::posix_time::milliseconds(fRampTime)); fRampTimer.async_wait(boost::bind(&ConnectionBias::HandleRampTimer, this, dummy::error)); } public: ConnectionBias(ba::io_service& ioservice, MessageImp &imp) : ConnectionUSB(ioservice, imp()), fSyncTimer(ioservice), fRampTimer(ioservice), fUpdateTimer(ioservice), fBuffer(3*kNumChannels), fBufferRamp(3*kNumChannels), fBufferUpdate(3*kNumChannels), fIsVerbose(false), fIsDummyMode(false), fPresent(kNumBoards), fWrapCounter(-1), fRampStep(-1), fRampTime(-1), fUpdateTime(3000), fSyncTime(333), fReconnectDelay(1), fIsRamping(false), fWaitingForAnswer(-1), fCounter(8), fCurrent(kNumChannels), fBreakdownVoltage(kNumChannels, 0), fOvervoltage(kNumChannels), fChannelCalibration(kNumChannels), fChannelOffset(kNumChannels), fVoltageMaxAbs(75), fVoltageMaxRel(2), fDacTarget(kNumChannels), fDacCommand(kNumChannels), fDacActual(kNumChannels) { SetLogStream(&imp); } // -------------------------------------------------------------------- bool CheckDac(uint16_t dac) { if (dac<4096) return true; ostringstream msg; msg << "CheckDac - Dac value of " << dac << " exceeds maximum of 4095."; Error(msg); return false; } bool CheckChannel(uint16_t ch) { if (chfVoltageMaxAbs) { ostringstream msg; msg << "CheckChannelVoltage - Set voltage " << volt << "V of channel " << ch << " exceeds absolute limit of " << fVoltageMaxAbs << "V."; Warn(msg); return false; } if (fBreakdownVoltage[ch]<=0) return true; if (volt>fBreakdownVoltage[ch]+fVoltageMaxRel) { ostringstream msg; msg << "CheckChannelVoltage - Set voltage " << volt << "V of channel " << ch << " exceeds limit of " << fVoltageMaxRel << "V above breakdown voltage " << fBreakdownVoltage[ch] << "V + limit " << fVoltageMaxRel << "V."; Error(msg); return false; } return true; } // -------------------------------------------------------------------- bool RampSingleChannelDac(uint16_t ch, uint16_t dac) { if (!CheckChannel(ch)) return false; if (!CheckDac(dac)) return false; fDacTarget[ch] = dac; UpdateV(); if (!fIsRamping) fIsRamping = RampOneStep(); return true; } bool RampAllChannelsDac(const vector &dac) { for (int ch=0; ch(kNumChannels, dac)); } // -------------------------------------------------------------------- uint16_t ConvertVoltToDac(uint16_t ch, double volt) { volt += fChannelCalibration[ch]; if (volt<0) volt = 0; return volt*4096/90; } // -------------------------------------------------------------------- bool RampSingleChannelVoltage(uint16_t ch, float volt) { if (!CheckChannel(ch)) return false; if (!CheckChannelVoltage(ch, volt)) return false; const uint16_t dac = ConvertVoltToDac(ch, volt); return RampSingleChannelDac(ch, dac); } bool RampAllChannelsVoltage(const vector &volt) { vector dac(kNumChannels); for (size_t ch=0; ch(kNumChannels, volt)); } // -------------------------------------------------------------------- bool RampSingleChannelOffset(uint16_t ch, float offset, bool relative) { if (!CheckChannel(ch)) return false; if (relative) offset += fDacActual[ch]*90./4096 - fBreakdownVoltage[ch] - fOvervoltage[ch]; const float volt = fBreakdownVoltage[ch]>0 ? fBreakdownVoltage[ch] + fOvervoltage[ch] + offset : 0; if (!RampSingleChannelVoltage(ch, volt)) return false; fChannelOffset[ch] = offset; return true; } bool RampAllChannelsOffset(vector offset, bool relative) { vector volt(kNumChannels); if (relative) for (size_t ch=0; ch0 ? fBreakdownVoltage[ch] + fOvervoltage[ch] + offset[ch] : 0; if (!RampAllChannelsVoltage(volt)) return false; fChannelOffset = offset; return true; } bool RampAllOffsets(float offset, bool relative) { return RampAllChannelsOffset(vector(kNumChannels, offset), relative); } /* bool RampSingleChannelOvervoltage(float offset) { return RampAllChannelsOvervoltage(vector(kNumChannels, offset)); } bool RampAllOvervoltages(const vector &overvoltage) { vector volt(kNumChannels); for (size_t ch=0; ch=0) { ostringstream msg; msg << "OverCurrentReset - Answer on last command (id=" << fWaitingForAnswer << ") not yet received."; Error(msg); return; } if (fIsRamping) { Warn("OverCurrentReset - Ramping in progres."); RampStop(); } vector dac(fDacActual); for (int ch=0; ch=0) { ostringstream msg; msg << "ReadAllChannels - Answer on last command (id=" << fWaitingForAnswer << ") not yet received."; Error(msg); return; } vector data; data.reserve(kNumChannels*3); for (int ch=0; ch cmd = GetCmd(kCmdRead, ch); data.insert(data.end(), cmd.begin(), cmd.end()); } fSendCounter += kNumChannels; PostMessage(data); AsyncRead(ba::buffer(special ? fBufferUpdate : fBuffer, kNumChannels*3), special ? kUpdate : kCmdRead, fSendCounter); if (!special) fWaitingForAnswer = kCmdRead; } bool SetReferences(const vector &volt, const vector &offset) { if (volt.size()!=kNumChannels) { ostringstream out; out << "SetReferences - Given vector has " << volt.size() << " elements - expected " << kNumChannels << endl; Error(out); return false; } if (offset.size()!=kNumChannels) { ostringstream out; out << "SetReferences - Given vector has " << volt.size() << " elements - expected " << kNumChannels << endl; Error(out); return false; } fBreakdownVoltage = volt; fChannelCalibration = offset; fOvervoltage.assign(kNumChannels, 0); UpdateVgapd(); return true; } // -------------------------------------------------------------------- void RampStop() { fRampTimer.cancel(); fIsRamping = false; Message("Ramping stopped."); } void RampStart() { if (fIsRamping) { Warn("RampStart - Ramping already in progress... ignored."); return; } fIsRamping = RampOneStep(); } void SetRampTime(uint16_t val) { fRampTime = val; } void SetRampStep(uint16_t val) { fRampStep = val; } uint16_t GetRampStepVolt() const { return fRampStep*90./4096; } bool IsRamping() const { return fIsRamping; } // ------------------------------------------------------------------- void ExpertReset(bool expert_mode=true) { if (expert_mode && fWaitingForAnswer>=0) { ostringstream msg; msg << "ExpertReset - Answer on last command (id=" << fWaitingForAnswer << ") not yet received."; Error(msg); return; } if (expert_mode) Warn("EXPERT MODE: Sending reset."); PostMessage(GetCmd(kCmdReset)); AsyncRead(ba::buffer(fBuffer, 3), kCmdReset, ++fSendCounter); fWaitingForAnswer = kCmdReset; } bool ExpertChannelSetDac(uint16_t ch, uint16_t dac) { if (fWaitingForAnswer>=0) { ostringstream msg; msg << "ExpertChannelSetDac - Answer on last command (id=" << fWaitingForAnswer << ") not yet received."; Error(msg); return false; } if (!CheckDac(dac)) return false; fDacCommand[ch] = dac; ostringstream msg; msg << "EXPERT MODE: Sending 'ChannelSet' (set ch " << ch << " to DAC=" << dac << ")"; Warn(msg); // FIXME: dac += calib_offset PostMessage(GetCmd(kCmdChannelSet, ch, dac)); AsyncRead(ba::buffer(fBuffer, 3), kExpertChannelSet|(ch<<8), ++fSendCounter); fWaitingForAnswer = kExpertChannelSet|(ch<<8); return true; } bool ExpertChannelSetVolt(uint16_t ch, double volt) { return ExpertChannelSetDac(ch, volt*4096/90.); } bool ExpertGlobalSetDac(uint16_t dac) { if (fWaitingForAnswer>=0) { ostringstream msg; msg << "ExpertGlobalSetDac - Answer on last command (id=" << fWaitingForAnswer << ") not yet received."; Error(msg); return false; } if (!CheckDac(dac)) return false; if (fGlobalDacCmd>=0) { Error("ExpertGlobalSetDac - Still waiting for previous answer to 'GlobalSet'"); return false; } fGlobalDacCmd = dac; ostringstream msg; msg << "EXPERT MODE: Sending 'GlobalSet' (DAC=" << dac << ")"; Warn(msg); PostMessage(GetCmd(kCmdGlobalSet, 0, dac)); AsyncRead(ba::buffer(fBuffer, 3), kCmdGlobalSet, ++fSendCounter); fWaitingForAnswer = kCmdGlobalSet; return true; } bool ExpertGlobalSetVolt(float volt) { return ExpertGlobalSetDac(volt*4096/90); } // -------------------------------------------------------------------- void SetVerbose(bool b) { fIsVerbose = b; } void SetDummyMode(bool b) { fIsDummyMode = b; } void PrintInfo() { Out() << endl << kBold << dec << '\n'; Out() << "fWrapCounter = " << fWrapCounter << '\n'; Out() << "fSendCounter = " << fSendCounter%8 << " (" << fSendCounter << ")" << '\n'; Out() << "fIsInitializing = " << fIsInitializing << '\n'; Out() << "fIsRamping = " << fIsRamping << '\n'; Out() << "Answer counter:" << '\n'; Out() << " - Synchronization: " << fCounter[0] << '\n'; Out() << " - Reset: " << fCounter[1] << '\n'; Out() << " - Request update: " << fCounter[2] << '\n'; Out() << " - Ramp step: " << fCounter[3] << '\n'; Out() << " - Read: " << fCounter[4] << '\n'; Out() << " - Reset channels: " << fCounter[5] << '\n'; Out() << " - Global set: " << fCounter[7] << '\n'; Out() << " - Channel set: " << fCounter[6] << '\n' << endl; } void PrintLineA(int b, int ch) { Out() << setw(2) << b << "|"; for (int c=ch; c0) ScheduleUpdate(fUpdateTime); } void SetSyncDelay(uint16_t val) { fSyncTime = val; } void SetVoltMaxAbs(float max) { if (max>90) max = 90; if (max<0) max = 0; fVoltageMaxAbs = max; } void SetVoltMaxRel(float max) { if (max>90) max = 90; if (max<0) max = 0; fVoltageMaxRel = max; } uint16_t GetVoltMaxAbs() const { return fVoltageMaxAbs; } uint16_t GetVoltMaxRel() const { return fVoltageMaxRel; } State::states_t GetStatus() { if (!IsConnected()) return State::kDisconnected; if (IsConnecting()) return State::kConnecting; if (fIsInitializing) return State::kInitializing; if (fIsRamping) return State::kRamping; for (int ch=0; ch val(2*kNumChannels); memcpy(val.data(), fDacActual.data(), kNumChannels*2); memcpy(val.data()+kNumChannels, fDacTarget.data(), kNumChannels*2); fDimDac.setTime(now); fDimDac.setQuality(rc); fDimDac.Update(val); vector volt(kNumChannels); for (float ch=0; ch volt; volt.reserve(3*kNumChannels); volt.insert(volt.end(), fBreakdownVoltage.begin(), fBreakdownVoltage.end()); volt.insert(volt.end(), fOvervoltage.begin(), fOvervoltage.end()); volt.insert(volt.end(), fChannelCalibration.begin(), fChannelCalibration.end()); fDimGapd.Update(volt); } public: ConnectionDimBias(ba::io_service& ioservice, MessageImp &imp) : ConnectionBias(ioservice, imp), fDimCurrent("BIAS_CONTROL/CURRENT", "S:416", "|I[dac]:Bias current (conversion: 5000uA/4096dac)"), fDimDac("BIAS_CONTROL/DAC", "S:416;S:416", "|U[dac]:Current dac setting" "|Uref[dac]:Reference dac setting"), fDimVolt("BIAS_CONTROL/VOLTAGE", "F:416", "|Uout[V]:Output voltage"), fDimGapd("BIAS_CONTROL/NOMINAL", "F:416;F:416;F:416", "|Ubr[V]:Nominal breakdown voltage at 25deg C" "|Uov[V]:Nominal overvoltage" "|Uoff[V]:Bias crate channel offsets") { } // A B [C] [D] E [F] G H [I] J K [L] M N O P Q R [S] T U V W [X] Y Z }; // ------------------------------------------------------------------------ template class StateMachineBias : public StateMachineAsio { int Wrap(boost::function f) { f(); return T::GetCurrentState(); } function Wrapper(function func) { return bind(&StateMachineBias::Wrap, this, func); } bool CheckEventSize(size_t has, const char *name, size_t size) { if (has==size) return true; ostringstream msg; msg << name << " - Received event has " << has << " bytes, but expected " << size << "."; T::Fatal(msg); return false; } private: S fBias; bool fExpertMode; // -------------------------------------------------------------------- // SET_GLOBAL_DAC_VALUE int SetGlobalDac(const EventImp &evt) { if (!CheckEventSize(evt.GetSize(), "SetGlobalDac", 2)) return false; fBias.RampAllDacs(evt.GetUShort()); return T::GetCurrentState(); } // SET_CHANNEL_DAC_VALUE int SetChannelDac(const EventImp &evt) { if (!CheckEventSize(evt.GetSize(), "SetChannelDac", 4)) return false; fBias.RampSingleChannelDac(evt.Get(), evt.Get(2)); return T::GetCurrentState(); } // -------------------------------------------------------------------- // SET_CHANNEL_VOLTAGE int SetChannelVolt(const EventImp &evt) { if (!CheckEventSize(evt.GetSize(), "SetChannelVolt", 6)) return false; fBias.RampSingleChannelVoltage(evt.GetUShort(), evt.Get(2)); return T::GetCurrentState(); } // SET_GLOBAL_VOLTAGE int SetGlobalVolt(const EventImp &evt) { if (!CheckEventSize(evt.GetSize(), "SetGlobalVolt", 4)) return false; fBias.RampAllVoltages(evt.GetFloat()); return T::GetCurrentState(); } // SET_ALL_CHANNELS_VOLTAGES int SetAllChannelsVolt(const EventImp &evt) { if (!CheckEventSize(evt.GetSize(), "SetAllChannelsVolt", 4*kNumChannels)) return false; const float *ptr = evt.Ptr(); fBias.RampAllChannelsVoltage(vector(ptr, ptr+kNumChannels)); return T::GetCurrentState(); } // -------------------------------------------------------------------- // SET_GLOBAL_OFFSET int SetGlobalOffset(const EventImp &evt) { if (!CheckEventSize(evt.GetSize(), "SetGlobalOffset", 4)) return false; fBias.RampAllOffsets(evt.GetFloat(), false); return T::GetCurrentState(); } // SET_SINGLE_CHANNEL_OFFSET int SetChannelOffset(const EventImp &evt) { if (!CheckEventSize(evt.GetSize(), "SetSingleChannelOffset", 6)) return false; fBias.RampSingleChannelOffset(evt.Get(), evt.Get(2), false); return T::GetCurrentState(); } // SET_ALL_CHANNELS_OFFSET int SetAllChannelsOffset(const EventImp &evt) { if (!CheckEventSize(evt.GetSize(), "SetAllChannelsOffset", 4*kNumChannels)) return false; const float *ptr = evt.Ptr(); fBias.RampAllChannelsOffset(vector(ptr, ptr+kNumChannels), false); return T::GetCurrentState(); } // -------------------------------------------------------------------- // INCREASE_GLOBAL_VOLTAGE int IncGlobalVolt(const EventImp &evt) { if (!CheckEventSize(evt.GetSize(), "IncGlobalVolt", 4)) return false; fBias.RampAllOffsets(evt.GetFloat(), true); return T::GetCurrentState(); } // INCREASE_CHANNEL_VOLTAGE int IncChannelVolt(const EventImp &evt) { if (!CheckEventSize(evt.GetSize(), "IncChannelVolt", 6)) return false; fBias.RampSingleChannelOffset(evt.Get(), evt.Get(2), true); return T::GetCurrentState(); } // INCREASE_ALL_CHANNELS_VOLTAGES int IncAllChannelsVolt(const EventImp &evt) { if (!CheckEventSize(evt.GetSize(), "IncAllChannelsVolt", 4*kNumChannels)) return false; const float *ptr = evt.Ptr(); fBias.RampAllChannelsOffset(vector(ptr, ptr+416), true); return T::GetCurrentState(); } // -------------------------------------------------------------------- // SET_CHANNEL_OFFSET_TO_ZERO int SetChannelOffsetToZero(const EventImp &evt) { if (!CheckEventSize(evt.GetSize(), "SetChannelOffsetToZero", 2)) return false; fBias.RampSingleChannelOffset(evt.GetUShort(), 0, false); return T::GetCurrentState(); } // -------------------------------------------------------------------- int ExpertSetGlobalVolt(const EventImp &evt) { if (!CheckEventSize(evt.GetSize(), "ExpertSetGlobalVolt", 4)) return false; fBias.ExpertGlobalSetVolt(evt.GetFloat()); return T::GetCurrentState(); } int ExpertSetGlobalDac(const EventImp &evt) { if (!CheckEventSize(evt.GetSize(), "ExpertSetGlobalDac", 2)) return false; fBias.ExpertGlobalSetDac(evt.GetUShort()); return T::GetCurrentState(); } int ExpertSetChannelVolt(const EventImp &evt) { if (!CheckEventSize(evt.GetSize(), "ExpertSetChannelVolt", 6)) return false; fBias.ExpertChannelSetVolt(evt.GetUShort(), evt.Get(2)); return T::GetCurrentState(); } int ExpertSetChannelDac(const EventImp &evt) { if (!CheckEventSize(evt.GetSize(), "ExpertSetChannelDac", 4)) return false; fBias.ExpertChannelSetDac(evt.Get(), evt.Get(2)); return T::GetCurrentState(); } // -------------------------------------------------------------------- int SetUpdateInterval(const EventImp &evt) { if (!CheckEventSize(evt.GetSize(), "SetUpdateInterval", 4)) return false; fBias.SetUpdateInterval(evt.Get()<0 ? 0 : evt.Get()); return T::GetCurrentState(); } int Disconnect() { // Close all connections fBias.PostClose(-1); /* // Now wait until all connection have been closed and // all pending handlers have been processed poll(); */ return T::GetCurrentState(); } int Reconnect(const EventImp &evt) { // Close all connections to supress the warning in SetEndpoint fBias.PostClose(-1); // Now wait until all connection have been closed and // all pending handlers have been processed ba::io_service::poll(); if (evt.GetBool()) fBias.SetEndpoint(evt.GetString()); // Now we can reopen the connection fBias.SetReconnectDelay(); fBias.PostClose(0); return T::GetCurrentState(); } int SetVerbosity(const EventImp &evt) { if (!CheckEventSize(evt.GetSize(), "SetVerbosity", 1)) return T::kSM_FatalError; fBias.SetVerbose(evt.GetBool()); return T::GetCurrentState(); } int SetDummyMode(const EventImp &evt) { if (!CheckEventSize(evt.GetSize(), "SetDummyMode", 1)) return T::kSM_FatalError; fBias.SetDummyMode(evt.GetBool()); return T::GetCurrentState(); } int SetExpertMode(const EventImp &evt) { if (!CheckEventSize(evt.GetSize(), "SetExpertMode", 1)) return T::kSM_FatalError; fExpertMode = evt.GetBool(); if (fExpertMode) T::Warn("Expert commands enabled -- please ensure that you EXACTLY know what you do. These commands can destroy the system."); return T::GetCurrentState(); } int Execute() { return fExpertMode && fBias.GetStatus()>=State::kConnected ? State::kExpertMode : fBias.GetStatus(); } public: StateMachineBias(ostream &out=cout) : StateMachineAsio(out, "BIAS_CONTROL"), fBias(*this, *this), fExpertMode(false) { // State names T::AddStateName(State::kDisconnected, "Disconnected", "Bias-power supply not connected via USB."); T::AddStateName(State::kConnecting, "Connecting", "Trying to establish USB connection to bias-power supply."); T::AddStateName(State::kInitializing, "Initializing", "USB connection to bias-power supply established, synchronizing USB stream."); T::AddStateName(State::kConnected, "Connected", "USB connection to bias-power supply established."); T::AddStateName(State::kNotReferenced, "NotReferenced", "Internal reference voltage does not match last sent voltage."); T::AddStateName(State::kVoltageOff, "VoltageOff", "All voltages are supposed to be switched off."); T::AddStateName(State::kVoltageOn, "VoltageOn", "At least one voltage is switched on and all are at reference."); T::AddStateName(State::kOverCurrent, "OverCurrent", "At least one channel is in over current state."); T::AddStateName(State::kExpertMode, "ExpertMode", "Special (risky!) mode to directly send command to the bias-power supply."); T::AddStateName(State::kRamping, "Ramping", "Voltage ramping in progress."); // Verbosity commands T::AddEvent("SET_VERBOSE", "B:1") (bind(&StateMachineBias::SetVerbosity, this, placeholders::_1)) ("set verbosity state" "|verbosity[bool]:disable or enable verbosity for received data (yes/no), except dynamic data"); T::AddEvent("ENABLE_DUMMY_MODE", "B:1") (bind(&StateMachineBias::SetDummyMode, this, placeholders::_1)) ("Enable dummy mode. In this mode SetAllChannels prints informations instead of sending anything to the bias crate." "|enable[bool]:disable or enable dummy mode"); // Conenction commands T::AddEvent("DISCONNECT", State::kConnected, State::kVoltageOff) (bind(&StateMachineBias::Disconnect, this)) ("disconnect from USB"); T::AddEvent("RECONNECT", "O", State::kDisconnected, State::kConnected, State::kVoltageOff) (bind(&StateMachineBias::Reconnect, this, placeholders::_1)) ("(Re)connect USB connection to Bias power supply, a new address can be given" "|tty[string]:new USB address"); T::AddEvent("SET_UPDATE_INTERVAL", "I:1") (bind(&StateMachineBias::SetUpdateInterval, this, placeholders::_1)) ("Set the updat einterval how often the currents are requested" "|interval[ms]:Update interval in milliseconds"); T::AddEvent("REQUEST_STATUS", State::kConnected, State::kVoltageOn, State::kVoltageOff, State::kNotReferenced, State::kOverCurrent) (Wrapper(bind(&ConnectionBias::ReadAllChannels, &fBias, false))) ("Asynchronously request the status (current) of all channels."); T::AddEvent("RESET_OVER_CURRENT_STATUS", State::kOverCurrent) (Wrapper(bind(&ConnectionBias::OverCurrentReset, &fBias))) ("Set all channels in over current state to 0V and send a system reset to reset the over current flags."); T::AddEvent("SET_CHANNEL_DAC", "S:1;S:1", State::kConnected, State::kVoltageOff, State::kVoltageOn, State::kNotReferenced, State::kOverCurrent) (bind(&StateMachineBias::SetChannelDac, this, placeholders::_1)) ("Set a new target value in DAC counts for a single channel. Starts ramping if necessary." "|channel[short]:Channel for which to set the target voltage [0-415]" "|voltage[dac]:Target voltage in DAC units for the given channel"); T::AddEvent("SET_GLOBAL_DAC", "S:1", State::kConnected, State::kVoltageOff, State::kVoltageOn, State::kNotReferenced, State::kOverCurrent) (bind(&StateMachineBias::SetGlobalDac, this, placeholders::_1)) ("Set a new target value for all channels in DAC counts. Starts ramping if necessary. (This command is not realized with the GLOBAL SET command.)" "|voltage[dac]:Global target voltage in DAC counts."); T::AddEvent("SET_CHANNEL_VOLTAGE", "S:1;F:1", State::kConnected, State::kVoltageOff, State::kVoltageOn, State::kNotReferenced, State::kOverCurrent) (bind(&StateMachineBias::SetChannelVolt, this, placeholders::_1)) ("Set a new target voltage for a single channel. Starts ramping if necessary." "|channel[short]:Channel for which to set the target voltage [0-415]" "|voltage[V]:Target voltage in volts for the given channel (will be converted to DAC units)"); T::AddEvent("SET_GLOBAL_VOLTAGE", "F:1", State::kConnected, State::kVoltageOff, State::kVoltageOn, State::kNotReferenced, State::kOverCurrent) (bind(&StateMachineBias::SetGlobalVolt, this, placeholders::_1)) ("Set a new target voltage for all channels. Starts ramping if necessary. (This command is not realized with the GLOBAL SET command.)" "|voltage[V]:Global target voltage in volts (will be converted to DAC units)"); T::AddEvent("SET_ALL_CHANNELS_VOLTAGE", "F:416", State::kConnected, State::kVoltageOff, State::kVoltageOn, State::kNotReferenced, State::kOverCurrent) (bind(&StateMachineBias::SetAllChannelsVolt, this, placeholders::_1)) ("Set all channels to the given new reference voltage. Starts ramping if necessary." "voltage[V]:New reference voltage for all channels"); T::AddEvent("INCREASE_CHANNEL_VOLTAGE", "S:1;F:1", State::kConnected, State::kVoltageOff, State::kVoltageOn, State::kNotReferenced, State::kOverCurrent) (bind(&StateMachineBias::IncChannelVolt, this, placeholders::_1)) ("Increases the voltage of all channels by the given offset. Starts ramping if necessary. (This command is not realized with the GLOBAL SET command.)" "|channel[short]:Channel for which to adapt the voltage [0-415]" "|offset[V]:Offset to be added to all channels (will be converted to DAC counts)"); T::AddEvent("INCREASE_GLOBAL_VOLTAGE", "F:1", State::kConnected, State::kVoltageOff, State::kVoltageOn, State::kNotReferenced, State::kOverCurrent) (bind(&StateMachineBias::IncGlobalVolt, this, placeholders::_1)) ("Increases the voltage of all channels by the given offset. Starts ramping if necessary. (This command is not realized with the GLOBAL SET command.)" "|offset[V]:Offset to be added to all channels (will be converted to DAC counts)"); T::AddEvent("INCREASE_ALL_CHANNELS_VOLTAGE", "F:416", State::kConnected, State::kVoltageOff, State::kVoltageOn, State::kNotReferenced, State::kOverCurrent) (bind(&StateMachineBias::IncAllChannelsVolt, this, placeholders::_1)) ("Add the given voltages to the current reference voltages. Starts ramping if necessary." "offset[V]:Offsets to be added to the reference voltage of all channels in volts"); // SET_SINGLE_CHANNEL_OFFSET T::AddEvent("SET_CHANNEL_OFFSET", "S:1;F:1", State::kConnected, State::kVoltageOff, State::kVoltageOn, State::kNotReferenced, State::kOverCurrent) (bind(&StateMachineBias::SetChannelOffset, this, placeholders::_1)) ("Set single channels to its G-APD breakdown voltage plus overvoltage plus the given offset. Starts ramping if necessary." "|channel[short]:Channel for which to set the target voltage [0-415]" "|offset[V]:Offset to be added to the G-APD reference voltage of the given channel"); T::AddEvent("SET_GLOBAL_OFFSET", "F:1", State::kConnected, State::kVoltageOff, State::kVoltageOn, State::kNotReferenced, State::kOverCurrent) (bind(&StateMachineBias::SetGlobalOffset, this, placeholders::_1)) ("Set all channels to their G-APD breakdown voltage plus overvoltage plus the given offset. Starts ramping if necessary." "|offset[V]:Offset to be added to the G-APD reference voltage globally"); T::AddEvent("SET_ALL_CHANNELS_OFFSET", "F:416", State::kConnected, State::kVoltageOff, State::kVoltageOn, State::kNotReferenced, State::kOverCurrent) (bind(&StateMachineBias::SetAllChannelsOffset, this, placeholders::_1)) ("Set all channels to their G-APD reference voltage plus the given offset. Starts ramping if necessary." "|offset[V]:Offset to be added to the G-APD reference voltage globally"); T::AddEvent("SET_GLOBAL_OFFSET_TO_ZERO", State::kConnected, State::kVoltageOff, State::kVoltageOn, State::kNotReferenced, State::kOverCurrent) (Wrapper(bind(&ConnectionBias::RampAllOffsets, &fBias, 0., false))) ("Set all channels to their G-APD reference voltage. Starts ramping if necessary."); T::AddEvent("SET_CHANNEL_OFFSET_TO_ZERO", "S:1", State::kConnected, State::kVoltageOff, State::kVoltageOn, State::kNotReferenced, State::kOverCurrent) (bind(&StateMachineBias::SetChannelOffsetToZero, this, placeholders::_1)) ("Set a single channel channels to its G-APD reference voltage. Starts ramping if necessary." "|channel[short]:Channel for which to set the target voltage [0-416]"); T::AddEvent("SET_ZERO_VOLTAGE", State::kConnected, State::kVoltageOff, State::kVoltageOn, State::kNotReferenced, State::kOverCurrent) (Wrapper(bind(&ConnectionBias::RampAllDacs, &fBias, 0))) ("Set all channels to a zero reference voltage. Starts ramping if necessary."); T::AddEvent("STOP", State::kConnected, State::kRamping) (Wrapper(bind(&ConnectionBias::RampStop, &fBias))) ("Stop an on-going ramping"); T::AddEvent("START", State::kConnected, State::kNotReferenced) (Wrapper(bind(&ConnectionBias::RampStart, &fBias))) ("Start a ramping if no ramping is in progress and if reference values differ from current voltages"); T::AddEvent("PRINT_INFO") (Wrapper(bind(&ConnectionBias::PrintInfo, &fBias))) ("Print a table with all current read back with the last request operation"); T::AddEvent("PRINT_CURRENTS") (Wrapper(bind(&ConnectionBias::PrintA, &fBias))) ("Print a table with all current read back with the last request operation"); T::AddEvent("PRINT_VOLTAGES") (Wrapper(bind(&ConnectionBias::PrintV, &fBias))) ("Print a table with all voltages (current and reference voltages as currently in memory)"); T::AddEvent("PRINT_GAPD_REFERENCE_VOLTAGES") (Wrapper(bind(&ConnectionBias::PrintReferenceVoltage, &fBias))) ("Print the G-APD reference values (breakdown voltage + overvoltage) obtained from file"); T::AddEvent("EXPERT_MODE", "B:1") (bind(&StateMachineBias::SetExpertMode, this, placeholders::_1)) ("Enable usage of expert commands (note that for safty reasons the are exclusive with the standard commands)"); T::AddEvent("EXPERT_RESET", State::kExpertMode) (Wrapper(bind(&ConnectionBias::ExpertReset, &fBias, true))) ("Send the RESET command (note that this is possibly harmfull command)"); T::AddEvent("EXPERT_SET_GLOBAL_VOLTAGE", "F:1", State::kExpertMode) (bind(&StateMachineBias::ExpertSetGlobalVolt, this, placeholders::_1)) ("Send the global set command. The given voltage is converted to DAC counts."); T::AddEvent("EXPERT_SET_GLOBAL_DAC", "S:1", State::kExpertMode) (bind(&StateMachineBias::ExpertSetGlobalDac, this, placeholders::_1)) ("Send the global set command."); T::AddEvent("EXPERT_SET_CHANNEL_VOLTAGE", "S:1;F:1", State::kExpertMode) (bind(&StateMachineBias::ExpertSetChannelVolt, this, placeholders::_1)) ("Send a single channel set command. The given voltage is converted to DAC commands."); T::AddEvent("EXPERT_SET_CHANNEL_DAC", "S:1;S:1", State::kExpertMode) (bind(&StateMachineBias::ExpertSetChannelDac, this, placeholders::_1)) ("Send a single channel set command."); } ~StateMachineBias() { T::Warn("TODO: Implement rampming at shutdown!"); } int EvalOptions(Configuration &conf) { // FIXME: Read calib_offset // FIXME: Check calib offset being smaller than +/-0.25V fBias.SetVerbose(!conf.Get("quiet")); fBias.SetDummyMode(conf.Get("dummy-mode")); if (conf.Has("dev")) { fBias.SetEndpoint(conf.Get("dev")); T::Message("Setting device to "+fBias.URL()); } const uint16_t step = conf.Get("ramp-step"); const uint16_t time = conf.Get("ramp-delay"); if (step>230) // 5V { T::Error("ramp-step exceeds allowed range."); return 1; } fBias.SetRampStep(step); fBias.SetRampTime(time); fBias.SetUpdateInterval(conf.Get("update-interval")); fBias.SetSyncDelay(conf.Get("sync-delay")); ostringstream str1, str2; str1 << "Ramping in effective steps of " << fBias.GetRampStepVolt() << "V"; str2 << "Ramping with a delay per step of " << time << "ms"; T::Message(str1); T::Message(str2); // -------------------------------------------------------------------------- const float maxabsv = conf.Get("volt-max-abs"); const float maxrelv = conf.Get("volt-max-rel"); if (maxabsv>90) { T::Error("volt-max exceeds 90V."); return 2; } if (maxabsv>75) T::Warn("volt-max exceeds 75V."); if (maxabsv<70) T::Warn("volt-max below 70V."); if (maxabsv<0) { T::Error("volt-max negative."); return 3; } fBias.SetVoltMaxAbs(maxabsv); fBias.SetVoltMaxRel(maxrelv); ostringstream str3, str4; str3 << "Effective maximum allowed absolute voltage: " << fBias.GetVoltMaxAbs() << "V"; str4 << "Effective maximum difference w.r.t to G-APD reference: " << fBias.GetVoltMaxRel() << "V"; T::Message(str3); T::Message(str4); // -------------------------------------------------------------------------- BiasMap map; if (!conf.Has("bias-map-file") && !conf.Has("bias-database")) { T::Error("Neither bias-map-file not bias-database specified."); return 5; } try { if (conf.Has("bias-map-file")) map.Read(conf.Get("bias-map-file")); //if (conf.Has("bias-database")) // map.Retrieve(conf.Get("bias-database")); } catch (const runtime_error &e) { T::Error("Getting reference voltages failed: "+string(e.what())); return 7; } if (!fBias.SetReferences(map.Vgapd(), map.Voffset())) { T::Error("Setting reference voltages failed."); return 8; } // -------------------------------------------------------------------------- if (conf.Has("dev")) fBias.Connect(); return -1; } }; // ------------------------------------------------------------------------ #include "Main.h" template int RunShell(Configuration &conf) { return Main::execute>(conf); } void SetupConfiguration(Configuration &conf) { po::options_description control("BIAS control options"); control.add_options() ("no-dim,d", po_bool(), "Disable dim services") ("dev", var(), "Device address of USB port to bias-power supply") ("quiet,q", po_bool(true), "Disable printing contents of all received messages (except dynamic data) in clear text.") ("dummy-mode", po_bool(), "Dummy mode - SetAllChannels prints info instead of sending new values.") ("ramp-delay", var(15), "Delay between the answer of one ramping step and sending the next ramp command to all channels in milliseconds.") ("ramp-step", var(46), "Maximum step in DAC counts during ramping (Volt = DAC*90/4096)") ("update-interval", var(3000), "Interval between two current requests in milliseconds") ("sync-delay", var(500), "Delay between sending the inital 0's after a newly established connection to synchronize the output stream in milliseconds") ("volt-max-abs", var(75), "Absolte upper limit for the voltage (in Volts)") ("volt-max-rel", var(2.5), "Relative upper limit for the voltage w.r.t. the G-APD reference voltage (in Volts)") ("bias-map-file", var(), "File with nominal and offset voltages for each channel.") ("bias-database", var(), "") ; conf.AddOptions(control); } /* Extract usage clause(s) [if any] for SYNOPSIS. Translators: "Usage" and "or" here are patterns (regular expressions) which are used to match the usage synopsis in program output. An example from cp (GNU coreutils) which contains both strings: Usage: cp [OPTION]... [-T] SOURCE DEST or: cp [OPTION]... SOURCE... DIRECTORY or: cp [OPTION]... -t DIRECTORY SOURCE... */ void PrintUsage() { cout << "The biasctrl program controls the bias-power supply boards.\n" "\n" "Note: At default the program is started without a command line (user) " "interface. In this case Actions/Commands are available via Dim " "exclusively.\n" "Use the -c option to start the program with a command line interface.\n" "\n" "In the running application:\n" "Use h or help to print a short help message about its usage.\n" "\n" "Usage: biasctrl [-c type] [OPTIONS]\n" " or: biasctrl [OPTIONS]\n"; cout << endl; } void PrintHelp() { Main::PrintHelp>(); /* Additional help text which is printed after the configuration options goes here */ /* cout << "bla bla bla" << endl << endl; cout << endl; cout << "Environment:" << endl; cout << "environment" << endl; cout << endl; cout << "Examples:" << endl; cout << "test exam" << endl; cout << endl; cout << "Files:" << endl; cout << "files" << endl; cout << endl; */ } int main(int argc, const char* argv[]) { Configuration conf(argv[0]); conf.SetPrintUsage(PrintUsage); Main::SetupConfiguration(conf); SetupConfiguration(conf); if (!conf.DoParse(argc, argv, PrintHelp)) return 127; //try { // No console access at all if (!conf.Has("console")) { if (conf.Get("no-dim")) return RunShell(conf); else return RunShell(conf); } // Cosole access w/ and w/o Dim if (conf.Get("no-dim")) { if (conf.Get("console")==0) return RunShell(conf); else return RunShell(conf); } else { if (conf.Get("console")==0) return RunShell(conf); else return RunShell(conf); } } /*catch (std::exception& e) { cerr << "Exception: " << e.what() << endl; return -1; }*/ return 0; }