MX Foundation 4
Acquisition Filtering

The acquisition service can filter out unwanted messages automatically. The mxfASCBRxAcqMsgSelectSet() function allows the selection of messages, based on message address, that should be acquired.

Example

HMXF_BUFFER bmBuffer;
uint32 rc;
...
// Deselects acquisition of User response address 4
if(!rc)
{
msgid.channelType.bm.address=4;
msgid.channelType.reserved[0]=0;
msgid.channelType.reserved[1]=0;
rc = mxfASCBRxAcqMsgSelectSet(bmBuffer, MXF_MSG_DESELECT, 1, &msgid);
}
...
Updated 10/23/2023