Serial Framework C++ Edition

◆ HalCommunicate()

virtual int HalCommunicate ( const HANDLE  Event)
protectedvirtual

Implements a hardware-dependent code that communicate with the connected remote device.

Parameters
EventThe system even object handle (disconnect event).
Returns
If the function succeed the return value is WCL_E_SUCCESS. Otherwise the method returns one of the WCL error codes.

Derived classes must override this method to implement a hardware-dependent code that exchanges data with a remote device.

The method executes in a separate thread.

The method implementation must monitor the Event parameter. The Event parameter is set if the Disconnect method was called and the method must terminate communication and exit.

The default implementation simple waits for the Event and exists when the events signaled.