2012-12-08 33 views
5

Seriporttan (arduino'dan) gönderilen komutları izleyen ve diğer programlara tuş vuruşlarını gönderen bir program yazıyorum.dağıtıcı sadece bir kez çağırır C#

Etkinliğime bir görev dağıtıcı yerleştirdim, ancak yalnızca bir kez çalışacak ... Kodu geçtim ve ilk seferinde ilk kez çalışıyor, ancak ikinci kez değil.

private void portReadEvent(object sender, SerialDataReceivedEventArgs args) 
     { //break here 
      Action dump = delegate() 
      { 
       dumpInfoText(serialPort.ReadExisting()); 
      }; //create my deligate 

      txt_portInfo.Dispatcher.Invoke(dump); //run dispatcher 

     } 

     private void dumpInfoText(string text) 
     { 
      string completeCommand = ""; 
      foreach (char C in text) 
      { 
       if (serDump.Length <=8 && (C != (char)0x0A || C != (char)0x0D)) //check 
       { 
        serDump = serDump + C; //add char 
       } 
       if (serDump.Length == 8) //check to see if my info has a complete command (serDump is global) 
       { 
        completeCommand = serDump; //move to complete 
        serDump = ""; // reset dump 
        if (C == (char)0x0A || C == (char)0x0D) //dont add crlf 
        { 
         serDump = serDump + C; //add char 
        } 
       } 
       if (completeCommand.Length == 8) 
       { 
        txt_portInfo.Text = txt_portInfo.Text + completeCommand; //do something with it. 
       } 
      } 
+3

Dağıtım iş parçacığına bir bakın lütfen. – lontivero

cevap

0

Ahh, Sabit ... Emin değilim.

private void portReadEvent(object sender, SerialDataReceivedEventArgs args) 
    { 
     txt_portInfo.Dispatcher.Invoke(new Action(() => {dumpInfoText(serialPort.ReadExisting());})); //run dispatcher 

    }