Serial Communications

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Hi, i have a timer that waits for bytes that are received from a serial
device and updates the UI (winForm C#) with the result. At the same time
that i receive the bytes, i would like to transmit to update the serial
device. I have attempted to use threading to achieve this but receiving and
transmitting stops the application until the transmit has completed. Does
anybody know how i can receive and transmit at the same time without stopping
the UI

Thank you for your help in this matter
 
Threading is the way to do this. Are you sure you have seperated out the
serial commication and the form into two seperate threads?



Chris
 
Back
Top