private void buttonRebootAndStop_Click(object sender, EventArgs e)
        {
            bool bWasStarted = EnsureDebuggerConnection( );

            m_eng.RebootDevice(_DBG.Engine.RebootOption.EnterBootloader);

            if (!bWasStarted)
            {
                m_eng.Stop();
                m_eng = null;
            }
        }
            public override void OnAction(IMFDeployForm form, MFDevice device)
            {
                if (form == null || device == null)
                {
                    return;
                }

                _DBG.Engine engine = device.DbgEngine;

                engine.RebootDevice(Microsoft.SPOT.Debugger.Engine.RebootOption.EnterBootloader);

                device.ConnectToTinyBooter();
            }
        private void StartOrStop( bool fStart ) 
        {
            bool fButtonState;

            if(fStart)
            {
                if(m_eng != null) return;

                m_blocks      = new ArrayList();
                m_fWait       = checkBoxWait.Checked;
                m_fDisconnect = checkBoxDisconnect.Checked;

                listViewFiles.SelectedIndices.Clear();

                try
                {
                    _DBG.PortDefinition pd = GetSelectedPortDefinition();
                    
                    m_eng = new _DBG.Engine( pd );

                    m_eng.Silent = true;

                    m_eng.OnNoise   += new _DBG.NoiseEventHandler  ( OnNoise   );
                    m_eng.OnMessage += new _DBG.MessageEventHandler( OnMessage );

                    m_eng.Start();

                    if (m_eng.TryToConnect(5, 100))
                    {
                        if (m_fWait)
                        {
                            // if w are talking to the booter, have it to stop and wait for upload
                            // PortBooter will wait to secs no matter what
                            m_eng.RebootDevice(radioButtonPortBooter.Checked ? _DBG.Engine.RebootOption.EnterBootloader : _DBG.Engine.RebootOption.NormalReboot);
                        }
                    }
                    


                    foreach(ListViewItem item in this.listViewFiles.CheckedItems)
                    {
                        m_blocks.Add( item.Tag );
                    }

                    if(m_blocks.Count > 0)
                    {
                        if(radioButtonPortBooter.Checked)
                        {   
                            m_fl = new _DBG.PortBooter( m_eng );

                            m_fl.OnProgress += new _DBG.PortBooter.ProgressEventHandler( this.OnProgress );

                            m_fl.Start();

                            m_worker = new Thread( new ThreadStart( this.UploadWithPortBooter ) );
                        }
                        else
                        {
                            m_worker = new Thread( new ThreadStart( this.UploadWithTinyBooter ) );
                        }

                        m_worker.Start();
                    }

                    buttonAction.Text = "Stop";
                    richTextBox1.Focus();
                }
                catch(Exception ex)
                {
                    MessageBox.Show( ex.Message );
                    return;
                }

                fButtonState = false;
            }
            else
            {
                if(m_eng == null) return;

                Stop();

                buttonAction.Text = "Start";

                fButtonState = true;
            }

            buttonReload         .Enabled = fButtonState;
            buttonRemove         .Enabled = fButtonState;
            buttonRemoveAll      .Enabled = fButtonState;
            buttonBrowse         .Enabled = fButtonState;
            comboBoxPort         .Enabled = fButtonState;
            comboBoxBaud         .Enabled = fButtonState;
            listViewFiles        .Enabled = fButtonState;
        }
示例#4
0
            private bool RebootDevice(Engine.RebootOption option)
            {
                PortFilter[] args = { };
                switch (this.Transport.ToLower())
                {
                    case "emulator":
                        args = new PortFilter[] { PortFilter.Emulator };
                        break;
                    case "serial":
                        args = new PortFilter[] { PortFilter.Serial };
                        break;
                    case "tcpip":
                        args = new PortFilter[] { PortFilter.TcpIp };
                        break;
                    case "usb":
                        args = new PortFilter[] { PortFilter.Usb };
                        break;
                }

                ArrayList list = PortDefinition.Enumerate(args);
                PortDefinition port = null;
                foreach (object prt in list)
                {
                    port = (PortDefinition)prt;
                    if (port.DisplayName.ToLower().Contains(this.Device.ToLower()))
                    {
                        break;
                    }
                    else
                    {
                        port = null;
                    }
                }

                if (null == port)
                {
                    return false;
                }

                using (Engine engine = new Engine(port))
                {
                    engine.Start();
                    bool connect = false;

                    connect = engine.TryToConnect(200, 500, true, ConnectionSource.TinyCLR);

                    if (!connect)
                    {
                        return false;
                    }
                    engine.RebootDevice(option);
                }

                return true;
            }
示例#5
0
        /// <summary>
        /// Attempt to establish a connection with TinyBooter (with reboot if necessary)
        /// </summary>
        /// <returns>true connection was made, false otherwise</returns>
        public bool ConnectToTinyBooter()
        {
            bool ret = false;

            if (m_eng == null)
            {
                _DBG.PortDefinition pd = m_portTinyBooter;

                try
                {
                    if (m_eng == null)
                    {
                        m_eng = new _DBG.Engine(pd);

                        m_eng.OnNoise   += new _DBG.NoiseEventHandler(OnNoiseHandler);
                        m_eng.OnMessage += new _DBG.MessageEventHandler(OnMessage);

                        m_eng.Start();
                        m_eng.TryToConnect(5, 100, true, _DBG.ConnectionSource.Unknown);
                    }
                }
                catch
                {
                }
            }


            if (m_eng != null)
            {
                if (m_eng.ConnectionSource == _DBG.ConnectionSource.TinyBooter)
                {
                    return(true);
                }

                m_eng.RebootDevice(_DBG.Engine.RebootOption.EnterBootloader);

                // tinyBooter is only com port so
                if (m_port is _DBG.PortDefinition_Tcp)
                {
                    Disconnect();

                    m_port = m_portTinyBooter;

                    // digi takes forever to reset
                    if (!Connect(60000, true))
                    {
                        Console.WriteLine(Properties.Resources.ErrorUnableToConnectToTinyBooterSerial);
                        return(false);
                    }
                }
                bool fConnected = false;
                for (int i = 0; i < 40; i++)
                {
                    if (EventCancel.WaitOne(0, false))
                    {
                        throw new MFUserExitException();
                    }

                    if (fConnected = m_eng.TryToConnect(0, 500, true, _DBG.ConnectionSource.Unknown))
                    {
                        _WP.Commands.Monitor_Ping.Reply reply = m_eng.GetConnectionSource();
                        ret = (reply.m_source == _WP.Commands.Monitor_Ping.c_Ping_Source_TinyBooter);

                        break;
                    }
                }
                if (!fConnected)
                {
                    Console.WriteLine(Properties.Resources.ErrorUnableToConnectToTinyBooter);
                }
            }
            return(ret);
        }
示例#6
0
        internal void StartProfiler(string device, string logFile, string transport, 
            string exePath, string buildPath, ArrayList referenceList, bool isDevEnvironment, string assemblyName )
        {
            try
            {
                PortDefinition port = Utils.GetPort(device, transport, exePath);

                m_engine = new Engine(port);
                m_session = new ProfilerSession(m_engine);

#if DEBUG
                m_exporter = new Exporter_OffProf(m_session, logFile);
#endif

                lock (m_engine)
                {
                    m_engine.StopDebuggerOnConnect = true;
                    m_engine.Start();

                    bool connected = false;

                    connected = m_engine.TryToConnect(20, 500, true, ConnectionSource.TinyCLR);

                    if (connected)
                    {
                        if (m_engine.Capabilities.Profiling == false)
                        {
                            throw new ApplicationException("This device is not running a version of TinyCLR that supports profiling.");
                        }

                        // Deploy the test files to the device.                    
                        Utils.DeployToDevice(buildPath, referenceList, m_engine, transport, isDevEnvironment, assemblyName);

                        // Move IsDeviceInInitializeState(), IsDeviceInExitedState(), 
                        // GetDeviceState(),EnsureProcessIsInInitializedState() to Debugger.dll?

                        m_engine.RebootDevice(Engine.RebootOption.RebootClrWaitForDebugger);

                        if (!m_engine.TryToConnect(100, 500))
                        {
                            throw new ApplicationException("Connection Failed");
                        }

                        m_engine.ThrowOnCommunicationFailure = true;
                        m_session.EnableProfiling();

                        m_session.SetProfilingOptions(true, false);
                        m_engine.OnCommand += new CommandEventHandler(OnWPCommand);
                        m_engine.ResumeExecution();
                    }
                    else
                    {
                        throw new ApplicationException("Connection failed");
                    }
                }
            }
            catch (Exception ex)
            {
                SoftDisconnectDone(null, null);
                throw ex;
            }            
        }
示例#7
0
        bool Process(string[] args)
        {
            string port     = null;
            uint   baudrate = 0;
            bool   fWait    = true;
            int    i;

            if (args.Length == 0)
            {
                Usage();
                return(false);
            }

            for (i = 0; i < args.Length; i++)
            {
                string arg = args[i].ToLower();

                if (arg == "-port")
                {
                    port = args[++i]; continue;
                }
                if (arg == "-baudrate")
                {
                    baudrate = UInt32.Parse(args[++i]); continue;
                }
                if (arg == "-nowait")
                {
                    fWait = false; continue;
                }

                if (arg == "-com1")
                {
                    port = "COM1"; baudrate = 115200; continue;
                }
                if (arg == "-com2")
                {
                    port = "COM2"; baudrate = 115200; continue;
                }

                if (arg == "-write")
                {
                    try
                    {
                        string file = args[++i];

                        Console.WriteLine("Loading {0}...", file);

                        Microsoft.SPOT.Debugger.SRecordFile.Parse(file, m_blocks, null);

                        Console.WriteLine("Loaded.");
                    }
                    catch (Exception e)
                    {
                        Console.WriteLine("{0}", e.ToString());
                        return(false);
                    }

                    continue;
                }

                if (arg == "-writeandexecute")
                {
                    try
                    {
                        string file = args[++i];

                        Console.WriteLine("Loading {0}...", file);

                        m_entrypoint = Microsoft.SPOT.Debugger.SRecordFile.Parse(file, m_blocks, null);

                        Console.WriteLine("Loaded.");
                    }
                    catch (Exception e)
                    {
                        Console.WriteLine("{0}", e.ToString());
                        return(false);
                    }

                    continue;
                }

                if (arg == "-entrypoint")
                {
                    m_entrypoint = ParseHex(args[++i]);

                    continue;
                }

                Usage();
                return(false);
            }

            if (port == null || baudrate == 0)
            {
                Console.WriteLine("No serial port specified!");
                return(false);
            }

            m_eng = new _DBG.Engine(new Microsoft.SPOT.Debugger.PortDefinition_Serial(port, port, baudrate));

            m_eng.Silent = true;

            m_eng.OnMessage += new _DBG.MessageEventHandler(OnMessage);

            m_eng.Start();

            if (fWait)
            {
                if (m_eng.TryToConnect(5, 100))
                {
                    m_eng.RebootDevice();
                }
            }

            m_fl = new _DBG.PortBooter(m_eng);

            m_fl.OnProgress += new _DBG.PortBooter.ProgressEventHandler(this.OnProgress);

            m_fl.Start();

            if (fWait)
            {
                m_fl.WaitBanner(Int32.MaxValue, 2000);
            }

            DateTime start = DateTime.Now;

            m_fl.Program(m_blocks);

            Console.WriteLine("Execute: {0}", DateTime.Now - start);

            if (m_entrypoint != 0)
            {
                while (true)
                {
                    m_fl.Execute(m_entrypoint);

                    _DBG.PortBooter.Report r = m_fl.GetReport(2000);

                    if (r != null && r.type == _DBG.PortBooter.Report.State.EntryPoint)
                    {
                        break;
                    }
                }
            }

            m_fl.Stop();

            m_eng.Stop();

            return(true);
        }
        private void bwConnecter_DoWork(System.Object sender, DoWorkEventArgs e)
        {
            BackgroundConnectorArguments bca = (BackgroundConnectorArguments)e.Argument;

            _DBG.PortDefinition port = bca.connectPort;

            Debug.Assert(m_engine == null);

            e.Result = false;

#if USE_CONNECTION_MANAGER
            m_engine = m_port.DebugPortSupplier.Manager.Connect(port);
#else
            m_engine = new _DBG.Engine(port);
#endif

            m_killEmulator = false;

            lock (m_engine)
            {
                m_engine.StopDebuggerOnConnect = true;
                m_engine.OnCommand            += new _DBG.CommandEventHandler(OnWPCommand);
                m_engine.OnMessage            += new _DBG.MessageEventHandler(OnWPMessage);
                m_engine.Start();

                const int retries   = 50;
                bool      connected = false;
                for (int i = 0; connected == false && i < retries; i++)
                {
                    if (bwConnecter.CancellationPending)
                    {
                        e.Cancel = true;
                        return;
                    }
                    connected = m_engine.TryToConnect(1, 100, false, _DBG.ConnectionSource.TinyCLR);
                }

                if (connected)
                {
                    if (m_engine.Capabilities.Profiling == false)
                    {
                        throw new ApplicationException("This device is not running a version of TinyCLR that supports profiling.");
                    }

                    //Move IsDeviceInInitializeState(), IsDeviceInExitedState(), GetDeviceState(),EnsureProcessIsInInitializedState() to Debugger.dll?
                    uint executionMode = 0;
                    m_engine.SetExecutionMode(0, 0, out executionMode);
                    if (bca.reboot || (executionMode & _WP.Commands.Debugging_Execution_ChangeConditions.c_State_Mask) != _WP.Commands.Debugging_Execution_ChangeConditions.c_State_Initialize)
                    {
                        m_engine.RebootDevice(_DBG.Engine.RebootOption.RebootClrWaitForDebugger);
                        m_engine.TryToConnect(10, 1000);
                        m_engine.SetExecutionMode(0, 0, out executionMode);
                        Debug.Assert((executionMode & _WP.Commands.Debugging_Execution_ChangeConditions.c_State_Mask) == _WP.Commands.Debugging_Execution_ChangeConditions.c_State_Initialize);
                    }

                    m_engine.ThrowOnCommunicationFailure = true;
                    m_session = new _PRF.ProfilerSession(m_engine);
                    if (m_exporter != null)
                    {
                        m_exporter.Close();
                    }

                    switch (bca.exporter)
                    {
                    case BackgroundConnectorArguments.ExporterType.CLRProfiler:
                        m_exporter = new _PRF.Exporter_CLRProfiler(m_session, bca.outputFileName);
                        break;

#if DEBUG
                    case BackgroundConnectorArguments.ExporterType.OffProf:
                        m_exporter = new _PRF.Exporter_OffProf(m_session, bca.outputFileName);
                        break;
#endif
                    default:
                        throw new ArgumentException("Unsupported export format");
                    }
                    m_session.EnableProfiling();
                    e.Result = true;
                }
            }
            return;
        }
示例#9
0
        private void ConnectToDevice(string buildPath, string exePath, ArrayList referenceList)
        {
            TestSystem.IncludesDeviceTest = true;
            PortDefinition port = Utils.GetPort(m_device, m_transport, exePath);

            try
            {
                for (int retry = 0; retry < 3; retry++)
                {
                    m_engine = new Microsoft.SPOT.Debugger.Engine(port);
                    m_engine.StopDebuggerOnConnect = true;
                    m_engine.Start();

                    bool connected = false;

                    connected = m_engine.TryToConnect(200, 500, true, ConnectionSource.TinyCLR);

                    if (connected)
                    {
                        m_engine.PauseExecution();

                        if (!string.Equals(m_transport.ToLower(), "emulator"))
                        {
                            // Deploy the test files to the device.
                            Utils.DeployToDevice(buildPath, referenceList, m_engine, m_transport, m_isDevEnvironment, m_assemblyName);

                            // Connect to the device and execute the deployed test.
                            m_engine.RebootDevice(Microsoft.SPOT.Debugger.Engine.RebootOption.RebootClrWaitForDebugger);

                            // give the device some time to restart (especially for tcp/ip)
                            Thread.Sleep(500);

                            if (m_engine.PortDefinition is PortDefinition_Tcp)
                            {
                                Thread.Sleep(1000);
                            }

                            connected = false;

                            connected = m_engine.TryToConnect(200, 500, true, ConnectionSource.TinyCLR);
                        }


                        if (!connected)
                        {
                            DetachFromEngine();
                            throw new ApplicationException("Reboot Failed");
                        }

                        AttachToProcess();

                        m_engine.ThrowOnCommunicationFailure = true;
                        m_engine.OnMessage += new MessageEventHandler(OnMessage);
                        m_engine.OnCommand += new CommandEventHandler(OnCommand);
                        m_engine.OnNoise   += new NoiseEventHandler(OnNoise);

                        Console.WriteLine("\tExecuting the device test..");
                        m_initialTime = DateTime.Now;
                        m_engine.ResumeExecution();

                        m_deviceDone.WaitOne();
                        break;
                    }
                    else
                    {
                        DetachFromEngine();
                        //throw new ApplicationException("Connection failed");
                    }
                }
            }
            catch (Exception ex)
            {
                DetachFromEngine();
                throw new ApplicationException("Connection failed: " + ex.ToString());
            }
        }
示例#10
0
        private void ConnectToDevice(string buildPath, string exePath, ArrayList referenceList)
        {
            TestSystem.IncludesDeviceTest = true;
            PortDefinition port = Utils.GetPort(m_device, m_transport, exePath);

            try
            {
                for (int retry = 0; retry < 3; retry++)
                {
                    m_engine = new Microsoft.SPOT.Debugger.Engine(port);
                    m_engine.StopDebuggerOnConnect = true;
                    m_engine.Start();

                    bool connected = false;

                    connected = m_engine.TryToConnect(200, 500, true, ConnectionSource.TinyCLR);

                    if (connected)
                    {
                        m_engine.PauseExecution();

                        if (!string.Equals(m_transport.ToLower(), "emulator"))
                        {
                            // Deploy the test files to the device.                    
                            Utils.DeployToDevice(buildPath, referenceList, m_engine, m_transport, m_isDevEnvironment, m_assemblyName);

                            // Connect to the device and execute the deployed test.
                            m_engine.RebootDevice(Microsoft.SPOT.Debugger.Engine.RebootOption.RebootClrWaitForDebugger);

                            // give the device some time to restart (especially for tcp/ip)
                            Thread.Sleep(500);

                            if (m_engine.PortDefinition is PortDefinition_Tcp)
                            {
                                Thread.Sleep(1000);
                            }

                            connected = false;

                            connected = m_engine.TryToConnect(200, 500, true, ConnectionSource.TinyCLR);
                        }


                        if (!connected)
                        {
                            DetachFromEngine();
                            throw new ApplicationException("Reboot Failed");
                        }

                        AttachToProcess();

                        m_engine.ThrowOnCommunicationFailure = true;
                        m_engine.OnMessage += new MessageEventHandler(OnMessage);
                        m_engine.OnCommand += new CommandEventHandler(OnCommand);
                        m_engine.OnNoise += new NoiseEventHandler(OnNoise);

                        Console.WriteLine("\tExecuting the device test..");
                        m_initialTime = DateTime.Now;
                        m_engine.ResumeExecution();

                        m_deviceDone.WaitOne();
                        break;
                    }
                    else
                    {
                        DetachFromEngine();
                        //throw new ApplicationException("Connection failed");
                    }
                }
            }
            catch(Exception ex)
            {
                DetachFromEngine();
                throw new ApplicationException("Connection failed: " + ex.ToString());
            }
        }
示例#11
0
        bool Process( string[] args )
        {
            string port     = null;
            uint   baudrate = 0;
            bool   fWait    = true;
            int    i;

            if(args.Length == 0)
            {
                Usage();
                return false;
            }

            for(i=0; i<args.Length; i++)
            {
                string arg = args[i].ToLower();

                if(arg == "-port"    ) { port     =               args[++i]  ; continue; }
                if(arg == "-baudrate") { baudrate = UInt32.Parse( args[++i] ); continue; }
                if(arg == "-nowait"  ) { fWait    = false                    ; continue; }

                if(arg == "-com1") { port = "COM1"; baudrate = 115200; continue; }
                if(arg == "-com2") { port = "COM2"; baudrate = 115200; continue; }

                if(arg == "-write")
                {
                    try
                    {
                        string file = args[++i];

                        Console.WriteLine( "Loading {0}...", file );

                        Microsoft.SPOT.Debugger.SRecordFile.Parse( file, m_blocks, null );

                        Console.WriteLine( "Loaded." );
                    }
                    catch(Exception e)
                    {
                        Console.WriteLine( "{0}", e.ToString() );
                        return false;
                    }

                    continue;
                }

                if(arg == "-writeandexecute")
                {
                    try
                    {
                        string file = args[++i];

                        Console.WriteLine( "Loading {0}...", file );

                        m_entrypoint = Microsoft.SPOT.Debugger.SRecordFile.Parse( file, m_blocks, null );

                        Console.WriteLine( "Loaded." );
                    }
                    catch(Exception e)
                    {
                        Console.WriteLine( "{0}", e.ToString() );
                        return false;
                    }

                    continue;
                }

                if(arg == "-entrypoint")
                {
                    m_entrypoint = ParseHex( args[++i] );

                    continue;
                }

                Usage();
                return false;
            }

            if(port == null || baudrate == 0)
            {
                Console.WriteLine( "No serial port specified!" );
                return false;
            }

            m_eng = new _DBG.Engine( new Microsoft.SPOT.Debugger.PortDefinition_Serial( port, port, baudrate ) );

            m_eng.Silent = true;

            m_eng.OnMessage += new _DBG.MessageEventHandler( OnMessage );

            m_eng.Start();

            if(fWait)
            {
                if(m_eng.TryToConnect( 5, 100 ))
                {
                    m_eng.RebootDevice();
                }
            }

            m_fl = new _DBG.PortBooter( m_eng );

            m_fl.OnProgress += new _DBG.PortBooter.ProgressEventHandler( this.OnProgress );

            m_fl.Start();

            if(fWait)
            {
                m_fl.WaitBanner( Int32.MaxValue, 2000 );
            }

            DateTime start = DateTime.Now;

            m_fl.Program( m_blocks );

            Console.WriteLine( "Execute: {0}", DateTime.Now - start );

            if(m_entrypoint != 0)
            {
                while(true)
                {
                    m_fl.Execute( m_entrypoint );

                    _DBG.PortBooter.Report r = m_fl.GetReport( 2000 );

                    if(r != null && r.type == _DBG.PortBooter.Report.State.EntryPoint)
                    {
                        break;
                    }
                }
            }

            m_fl.Stop();

            m_eng.Stop();

            return true;
        }
		protected override void OnRun (DebuggerStartInfo startInfo)
		{
			var mfStartInfo = startInfo as MicroFrameworkDebuggerStartInfo;
			if (mfStartInfo == null)//This should never happen...
				throw new InvalidOperationException ();
			var command = mfStartInfo.MFCommand;
			var portDefinition = ((MicroFrameworkExecutionTarget)command.Target).PortDefinition;
			using (var deployEngine = new Engine (portDefinition)) {
				deployEngine.Start ();

				string newCommand = "/CorDebug_DeployDeviceName:" + portDefinition.PersistName;

				var listOfAseemblies = new ArrayList ();

				//TODO: Check if this is robust enough will "be" and "le" really always be in output folder?
				OutputDirectory = command.OutputDirectory;
				string dir = command.OutputDirectory;
				if (deployEngine.IsTargetBigEndian)
					dir = Path.Combine (dir, "be");
				else
					dir = Path.Combine (dir, "le");

				string[] files = Directory.GetFiles (dir, "*.pe");
				foreach (var file in files) {
					newCommand = "/load:" + file + " " + newCommand;
					using (var fs = new FileStream (file, FileMode.Open)) {
						byte[] data = new byte[fs.Length];
						fs.Read (data, 0, data.Length);
						listOfAseemblies.Add (data);
					}
				}
				startInfo.Command = newCommand;
				deployEngine.Deployment_Execute (listOfAseemblies, false, (str) => OnDebuggerOutput (false, "Deploy: " + str + Environment.NewLine));
				deployEngine.RebootDevice (Engine.RebootOption.RebootClrWaitForDebugger);
			}
			VsPackage.MessageCentre.Session = this;
			try {
				CorDebugProcess process = CorDebugProcess.CreateProcess (new DebugPortSupplier ().FindPort ("USB"), startInfo.Command);
				process.StartDebugging (this, false);
				// StartDebugging() will either get a connected device into a debuggable state and start the dispatch thread, or throw.
			} catch (ProcessExitException) {
				VsPackage.MessageCentre.DeploymentMsg (DiagnosticStrings.InitializeProcessFailedProcessDied);
			} catch (Exception ex) {
				VsPackage.MessageCentre.DeploymentMsg (DiagnosticStrings.InitializeProcessFailed);
				VsPackage.MessageCentre.InternalErrorMsg (false, ex.Message);
			}
		}
        private void bwConnecter_DoWork(System.Object sender, DoWorkEventArgs e)
        {
            BackgroundConnectorArguments bca = (BackgroundConnectorArguments)e.Argument;
            _DBG.PortDefinition port = bca.connectPort;

            Debug.Assert(m_engine == null);

            e.Result = false;

#if USE_CONNECTION_MANAGER
            m_engine = m_port.DebugPortSupplier.Manager.Connect(port);
#else
            m_engine = new _DBG.Engine(port);
#endif

            m_killEmulator = false;

            lock (m_engine)
            {
                m_engine.StopDebuggerOnConnect = true;
                m_engine.OnCommand += new _DBG.CommandEventHandler(OnWPCommand);
                m_engine.OnMessage += new _DBG.MessageEventHandler(OnWPMessage);
                m_engine.Start();

                const int retries = 50;
                bool connected = false;
                for (int i = 0; connected == false && i < retries; i++)
                {
                    if (bwConnecter.CancellationPending)
                    {
                        e.Cancel = true;
                        return;
                    }
                    connected = m_engine.TryToConnect(1, 100, false, _DBG.ConnectionSource.TinyCLR);
                }

                if (connected)
                {
                    if (m_engine.Capabilities.Profiling == false)
                    {
                        throw new ApplicationException("This device is not running a version of TinyCLR that supports profiling.");
                    }

                    //Move IsDeviceInInitializeState(), IsDeviceInExitedState(), GetDeviceState(),EnsureProcessIsInInitializedState() to Debugger.dll?
                    uint executionMode = 0;
                    m_engine.SetExecutionMode(0, 0, out executionMode);
                    if (bca.reboot || (executionMode & _WP.Commands.Debugging_Execution_ChangeConditions.c_State_Mask) != _WP.Commands.Debugging_Execution_ChangeConditions.c_State_Initialize)
                    {
                        m_engine.RebootDevice(_DBG.Engine.RebootOption.RebootClrWaitForDebugger);
                        m_engine.TryToConnect(10, 1000);
                        m_engine.SetExecutionMode(0, 0, out executionMode);
                        Debug.Assert((executionMode & _WP.Commands.Debugging_Execution_ChangeConditions.c_State_Mask) == _WP.Commands.Debugging_Execution_ChangeConditions.c_State_Initialize);
                    }

                    m_engine.ThrowOnCommunicationFailure = true;
                    m_session = new _PRF.ProfilerSession(m_engine);
                    if (m_exporter != null)
                    {
                        m_exporter.Close();
                    }

                    switch (bca.exporter)
                    {
                        case BackgroundConnectorArguments.ExporterType.CLRProfiler:
                            m_exporter = new _PRF.Exporter_CLRProfiler(m_session, bca.outputFileName);
                            break;
#if DEBUG
                        case BackgroundConnectorArguments.ExporterType.OffProf:
                            m_exporter = new _PRF.Exporter_OffProf(m_session, bca.outputFileName);
                            break;
#endif
                        default:
                            throw new ArgumentException("Unsupported export format");
                    }
                    m_session.EnableProfiling();
                    e.Result = true;
                }
            }
            return;
        }
        private void StartOrStop(bool fStart)
        {
            bool fButtonState;

            if (fStart)
            {
                if (m_eng != null)
                {
                    return;
                }

                m_blocks      = new ArrayList();
                m_fWait       = checkBoxWait.Checked;
                m_fDisconnect = checkBoxDisconnect.Checked;

                listViewFiles.SelectedIndices.Clear();

                try
                {
                    _DBG.PortDefinition pd = GetSelectedPortDefinition();

                    m_eng = new _DBG.Engine(pd);

                    m_eng.Silent = true;

                    m_eng.OnNoise   += new _DBG.NoiseEventHandler(OnNoise);
                    m_eng.OnMessage += new _DBG.MessageEventHandler(OnMessage);

                    m_eng.Start();

                    if (m_eng.TryToConnect(5, 100))
                    {
                        if (m_fWait)
                        {
                            // if w are talking to the booter, have it to stop and wait for upload
                            // PortBooter will wait to secs no matter what
                            m_eng.RebootDevice(radioButtonPortBooter.Checked ? _DBG.Engine.RebootOption.EnterBootloader : _DBG.Engine.RebootOption.NormalReboot);
                        }
                    }



                    foreach (ListViewItem item in this.listViewFiles.CheckedItems)
                    {
                        m_blocks.Add(item.Tag);
                    }

                    if (m_blocks.Count > 0)
                    {
                        if (radioButtonPortBooter.Checked)
                        {
                            m_fl = new _DBG.PortBooter(m_eng);

                            m_fl.OnProgress += new _DBG.PortBooter.ProgressEventHandler(this.OnProgress);

                            m_fl.Start();

                            m_worker = new Thread(new ThreadStart(this.UploadWithPortBooter));
                        }
                        else
                        {
                            m_worker = new Thread(new ThreadStart(this.UploadWithTinyBooter));
                        }

                        m_worker.Start();
                    }

                    buttonAction.Text = "Stop";
                    richTextBox1.Focus();
                }
                catch (Exception ex)
                {
                    MessageBox.Show(ex.Message);
                    return;
                }

                fButtonState = false;
            }
            else
            {
                if (m_eng == null)
                {
                    return;
                }

                Stop();

                buttonAction.Text = "Start";

                fButtonState = true;
            }

            buttonReload.Enabled    = fButtonState;
            buttonRemove.Enabled    = fButtonState;
            buttonRemoveAll.Enabled = fButtonState;
            buttonBrowse.Enabled    = fButtonState;
            comboBoxPort.Enabled    = fButtonState;
            comboBoxBaud.Enabled    = fButtonState;
            listViewFiles.Enabled   = fButtonState;
        }