示例#1
0
        /// <summary>
        /// By calling Run, the pipesetup is processed and the stack engine is started.
        /// </summary>
        void Run()
        {
            if (masterEmulator.IsRunning)
            {
                return;
            }

            masterEmulator.Run();
        }
示例#2
0
文件: Main.cs 项目: weiyd/BLE-ECG
 private void Run()
 {
     try
     {
         masterEmulator.Run();
         //pnlLeftBottom.Enabled = true;
     }
     catch (Exception ex)
     {
         DisplayErrorMessage(ex);
         if (isOpen)
         {
             CloseMasterEmulator();
         }
     }
 }