Example #1
0
        public void Initialize(IDeviceIO Driver, string channelID)
        {
            _driver           = Driver;
            ChannelIdentifier = channelID;

            _display = new Keithley26xxB_Display(ref Driver, ChannelIdentifier);
            _SetBeeperEnabled(true);

            _currentMeasureFunction    = Keithley26xxBMeasureFunctions.MEASURE_DCAMPS;
            _display.smuX.measure.func = Keithley26xxBMeasureFunctions.MEASURE_DCAMPS;

            _LoadDeviceFunctions();

            _stopWatch = new Stopwatch();
        }
        public void Initialize(IDeviceIO Driver, string channelID)
        {
            _driver = Driver;
            ChannelIdentifier = channelID;

            _display = new Keithley26xxB_Display(ref Driver, ChannelIdentifier);
            _SetBeeperEnabled(true);

            _currentMeasureFunction = Keithley26xxBMeasureFunctions.MEASURE_DCAMPS;
            _display.smuX.measure.func = Keithley26xxBMeasureFunctions.MEASURE_DCAMPS;

            _LoadDeviceFunctions();

            _stopWatch = new Stopwatch();
        }