public bool Initialize(double kFactor, LaserMode laserMode, string ctbFileName) { Debug.Assert(kFactor > 0); RTC5Wrap.n_stop_execution(this.Index + 1); uint error = RTC5Wrap.n_load_program_file(this.Index + 1, string.Empty); uint cardCnt = RTC5Wrap.rtc5_count_cards(); uint dllVersion = RTC5Wrap.get_dll_version(); uint hexVersion = RTC5Wrap.get_hex_version(); uint rtcVersion = RTC5Wrap.get_rtc_version(); uint lastError = RTC5Wrap.n_get_last_error(this.Index + 1); uint serialNo = RTC5Wrap.n_get_serial_number(this.Index + 1); this.kFactor = kFactor; ///active high RTC5Wrap.n_set_laser_control(this.Index + 1, 0); if (!this.CtlLoadCorrectionFile(CorrectionTableIndex.Table1, ctbFileName)) { return(false); } if (!this.CtlSelectCorrection(CorrectionTableIndex.Table1)) { return(false); } RTC5Wrap.n_config_list(this.Index + 1, 4_000 * 2, 4_000 * 2); RTC5Wrap.n_set_laser_mode(this.Index + 1, (uint)laserMode); RTC5Wrap.n_set_firstpulse_killer(this.Index + 1, 0); RTC5Wrap.n_set_standby(this.Index + 1, 0, 0); return(true); }
public bool CtlAbort() { RTC5Wrap.n_stop_execution(this.Index + 1); this.aborted = true; return(this.CtlGetStatus(RtcStatus.NotBusy)); }