Eccezione

di il
3 risposte

Eccezione

Salve, nel mio progetto sto tentando di comunicare via porta seriale con un arduino. Nel momento in cui eseguo dei semplici comandi di lettura e scrittura spesso(non sempre) mi si blocca il programma dandomi quest'eccezione. Ho notato che potrebbe essere un problema di tempi, ma questa è solo una mia ipotesi.
Ecco l'eccezione: Eccezione generata dalla destinazione di una chiamata.
System.Reflection.TargetInvocationException non è stata gestita
HResult=-2146232828
Message=Eccezione generata dalla destinazione di una chiamata.
Source=mscorlib
StackTrace:
in System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
in System.Reflection.RuntimeMethodInfo.UnsafeInvokeInternal(Object obj, Object[] parameters, Object[] arguments)
in System.Reflection.RuntimeMethodInfo.Invoke(Object obj, BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
in System.Reflection.MethodBase.Invoke(Object obj, Object[] parameters)
in AxCWInstrumentControlLib.AxCWSerial.Read()
in WindowsApplication7.Form1.Button2_Click(Object sender, EventArgs e) in C:\Users\lanzi\Desktop\programmi visual studio\WindowsApplication7\WindowsApplication7\Form1.vb:riga 20
in System.Windows.Forms.Control.OnClick(EventArgs e)
in System.Windows.Forms.Button.OnClick(EventArgs e)
in System.Windows.Forms.Button.OnMouseUp(MouseEventArgs mevent)
in System.Windows.Forms.Control.WmMouseUp(Message& m, MouseButtons button, Int32 clicks)
in System.Windows.Forms.Control.WndProc(Message& m)
in System.Windows.Forms.ButtonBase.WndProc(Message& m)
in System.Windows.Forms.Button.WndProc(Message& m)
in System.Windows.Forms.Control.ControlNativeWindow.OnMessage(Message& m)
in System.Windows.Forms.Control.ControlNativeWindow.WndProc(Message& m)
in System.Windows.Forms.NativeWindow.DebuggableCallback(IntPtr hWnd, Int32 msg, IntPtr wparam, IntPtr lparam)
in System.Windows.Forms.UnsafeNativeMethods.DispatchMessageW(MSG& msg)
in System.Windows.Forms.Application.ComponentManager.System.Windows.Forms.UnsafeNativeMethods.IMsoComponentManager.FPushMessageLoop(IntPtr dwComponentID, Int32 reason, Int32 pvLoopData)
in System.Windows.Forms.Application.ThreadContext.RunMessageLoopInner(Int32 reason, ApplicationContext context)
in System.Windows.Forms.Application.ThreadContext.RunMessageLoop(Int32 reason, ApplicationContext context)
in Microsoft.VisualBasic.ApplicationServices.WindowsFormsApplicationBase.OnRun()
in Microsoft.VisualBasic.ApplicationServices.WindowsFormsApplicationBase.DoApplicationModel()
in Microsoft.VisualBasic.ApplicationServices.WindowsFormsApplicationBase.Run(String[] commandLine)
in WindowsApplication7.My.MyApplication.Main(String[] Args) in 17d14f5c-a337-4978-8281-53493378c1071.vb:riga 81
in System.AppDomain._nExecuteAssembly(RuntimeAssembly assembly, String[] args)
in System.AppDomain.ExecuteAssembly(String assemblyFile, Evidence assemblySecurity, String[] args)
in Microsoft.VisualStudio.HostingProcess.HostProc.RunUsersAssembly()
in System.Threading.ThreadHelper.ThreadStart_Context(Object state)
in System.Threading.ExecutionContext.RunInternal(ExecutionContext executionContext, ContextCallback callback, Object state, Boolean preserveSyncCtx)
in System.Threading.ExecutionContext.Run(ExecutionContext executionContext, ContextCallback callback, Object state, Boolean preserveSyncCtx)
in System.Threading.ExecutionContext.Run(ExecutionContext executionContext, ContextCallback callback, Object state)
in System.Threading.ThreadHelper.ThreadStart()
InnerException: System.Runtime.InteropServices.COMException
ErrorCode=-2146797987
HelpLink=cwinstr.chm#500
HResult=-2146797987
Message=Reading Data

Operation Timed out
Source=cwinstr
StackTrace:
in System.RuntimeType.ForwardCallToInvokeMember(String memberName, BindingFlags flags, Object target, Int32[] aWrapperTypes, MessageData& msgData)
in CWInstrumentControlLib._DSerial.Read(Object bufferSize)
InnerException:

3 Risposte

  • Re: Eccezione

    E' un timeout in lettura. Puoi intercettarlo (usa la Try Catch) e comunicarlo con un messaggio all'utente. Indica che la comunicazione con l'Arduino è fallita ma il perché sia fallita non è possibile capirlo.
  • Re: Eccezione

    oregon ha scritto:


    E' un timeout in lettura. Puoi intercettarlo (usa la Try Catch) e comunicarlo con un messaggio all'utente. Indica che la comunicazione con l'Arduino è fallita ma il perché sia fallita non è possibile capirlo.
    Grazie mille, ma la cosa che non capisco è per quale motivo quest'errore mi compaia solo alcune volte, mentre in altri casi funziona.
  • Re: Eccezione

    Come ti ho detto, non possiamo certo saperlo noi. Un timeout avviene quando il corrispondente device non risponde (o non risponde nei tempi previsti) e i motivi possono essere tantissimi, da problemi hardware a problemi del software dell'Arduino.
Devi accedere o registrarti per scrivere nel forum
3 risposte