07-05-2007 11:28 AM
07-23-2007 02:33 AM
If your environment is Win32, the system does not allow multiple processes to open the same COM port at a time. The solution is one of the followings:
(1)Avoid to open the com port at a time. For example, the first app must close the com port before the second app tries to open it.
(2)Create a separate process that acts as the com-port-access proxy or server. Your two apps must communicate with the com port through the server process instead of direct access, by using one of IPC (inter process communication) mechanisms.
07-23-2007 03:39 AM