private object _busysem = new object(); // semaphore

        #endregion Fields

        #region Constructors

        public SerialConnTest()
        {
            ADCValues = new ObservableList<VoltPoint>();
            Connection = (Application.Current as App).CurrentSerialConnection;
            RCUCom = new RCUCommunication(Connection);
            RCUCom.ProgressChanged += RaiseProgressChanged;
        }
Example #2
0
 public SerialConnTest()
 {
     ADCValues               = new ObservableList <VoltPoint>();
     Connection              = (Application.Current as App).CurrentSerialConnection;
     RCUCom                  = new RCUCommunication(Connection);
     RCUCom.ProgressChanged += RaiseProgressChanged;
 }