User`s guide
High-Speed Simultaneous Transfer
Host-Side Client Interface
274
Targeting MC56F83xx/DSP5685x Controllers
Returns
S_OK if the call succeeds or S_FALSE if the call fails.
hsst_noblock_mode
A host-side client application uses this function to set a communication channel in
non-blocking mode. Calls to read from the specified channel do not block for data
availability.
Prototype
HRESULT hsst_noblock_mode ( size_t channel_id );
Parameters
channel_id
Specifies the channel ID of the communication channel to set in non-blocking mode.
Returns
S_OK if the call succeeds or S_FALSE if the call fails.
hsst_attach_listener
Use this function to attach a host-side client application as a listener to a specified
communication channel. The client application receives a notification whenever data
is available to read from the specified channel.
HSST notifies the client application that data is available to read from the specified
channel. The client must implement this function:
void NotifiableHSSTClient:: Update (size_t descriptor, size_t
size, size_t nmemb);
HSST calls the Notifiable HSST Client:: Update function when data is
available to read.