Пример #1
0
        private void ReadDDelay()
        {
            string command = SetDelayTimeCommand + DOutput;
            // e.g. "1,+0.001000000000"
            string response = GPIBProvider.LoggedQuery(GPIBAddress, command);

            _DDelay = response;
        }
Пример #2
0
        /// <summary>
        /// Internal use only - writes delay to device.
        /// </summary>
        /// <param name="DelayOutput"></param>
        /// <param name="setting"></param>
        private void SetDelay(string DelayOutput, string setting)
        {
            string command = SetDelayTimeCommand + DelayOutput + "," + setting;

            GPIBProvider.LoggedWrite(GPIBAddress, command);
        }