本文整理汇总了C#中Microsoft.SPOT.Debugger.Engine.RebootDevice方法的典型用法代码示例。如果您正苦于以下问题:C# Engine.RebootDevice方法的具体用法?C# Engine.RebootDevice怎么用?C# Engine.RebootDevice使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Microsoft.SPOT.Debugger.Engine
的用法示例。
在下文中一共展示了Engine.RebootDevice方法的7个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: RebootDevice
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;
}
示例2: StartOrStop
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;
}
示例3: StartProfiler
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;
}
}
示例4: ConnectToDevice
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());
}
}
示例5: Process
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 );
//.........这里部分代码省略.........
示例6: OnRun
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);
}
}
示例7: bwConnecter_DoWork
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;
}