コード例 #1
0
ファイル: rtc6.cs プロジェクト: li1794/rtclib
        public virtual bool Initialize(double kFactor, LaserMode laserMode, string ctbFileName)
        {
            Debug.Assert(this.kFactor > 0);
            RTC6Wrap.n_stop_execution(this.Index + 1);
            uint error      = RTC6Wrap.n_load_program_file(this.Index + 1, string.Empty);
            uint cardCnt    = RTC6Wrap.rtc6_count_cards();
            uint dllVersion = RTC6Wrap.get_dll_version();
            uint hexVersion = RTC6Wrap.get_hex_version();
            uint rtcVersion = RTC6Wrap.get_rtc_version();
            uint lastError  = RTC6Wrap.n_get_last_error(this.Index + 1);
            uint serialNo   = RTC6Wrap.n_get_serial_number(this.Index + 1);

            this.kFactor = kFactor;
            ///active high
            RTC6Wrap.n_set_laser_control(this.Index + 1, 0);

            if (!this.CtlLoadCorrectionFile(CorrectionTableIndex.Table1, ctbFileName))
            {
                return(false);
            }
            if (!this.CtlSelectCorrection(CorrectionTableIndex.Table1))
            {
                return(false);
            }
            RTC6Wrap.n_config_list(this.Index + 1, 4000 * 2, 4000 * 2);
            RTC6Wrap.n_set_laser_mode(this.Index + 1, (uint)laserMode);
            RTC6Wrap.n_set_firstpulse_killer(this.Index + 1, 0);
            RTC6Wrap.n_set_standby(this.Index + 1, 0, 0);
            return(true);
        }
コード例 #2
0
        public override bool Initialize(double kFactor, LaserMode laserMode, string ctbFileName)
        {
            Debug.Assert(base.kFactor > 0);
            uint result = RTC6Wrap.init_rtc6_dll();

            RTC6Wrap.eth_set_search_cards_timeout(200 * 1000);
            result = RTC6Wrap.eth_search_cards(
                RTC6Wrap.eth_convert_string_to_ip(this.ipAddress.ToString()),
                RTC6Wrap.eth_convert_string_to_ip(this.subNetMask.ToString()));
            int assign_result = RTC6Wrap.eth_assign_card_ip(
                RTC6Wrap.eth_convert_string_to_ip(this.ipAddress.ToString()),
                base.Index + 1);

            if (base.Index + 1 != assign_result)
            {
                return(false);
            }

            RTC6Wrap.n_stop_execution(base.Index + 1);
            uint error      = RTC6Wrap.n_load_program_file(base.Index + 1, string.Empty);
            uint cardCnt    = RTC6Wrap.rtc6_count_cards();
            uint dllVersion = RTC6Wrap.get_dll_version();
            uint hexVersion = RTC6Wrap.get_hex_version();
            uint rtcVersion = RTC6Wrap.get_rtc_version();

            uint lastError = RTC6Wrap.n_get_last_error(base.Index + 1);

            base.kFactor = kFactor;
            ///active high
            RTC6Wrap.n_set_laser_control(this.Index + 1, 0);

            if (!this.CtlLoadCorrectionFile(CorrectionTableIndex.Table1, ctbFileName))
            {
                return(false);
            }
            if (!this.CtlSelectCorrection(CorrectionTableIndex.Table1))
            {
                return(false);
            }
            RTC6Wrap.n_config_list(this.Index + 1, 4000 * 2, 4000 * 2);
            RTC6Wrap.n_set_laser_mode(this.Index + 1, (uint)laserMode);
            RTC6Wrap.n_set_firstpulse_killer(this.Index + 1, 0);
            RTC6Wrap.n_set_standby(this.Index + 1, 0, 0);
            return(true);
        }