MX Foundation 4
Acquisition Filtering

The acquisition service can filter out unwanted messages automatically. The mxfA629RxAcqMsgSelectSet() function allows the selection of messages, based on message label, that should be acquired. Filtering only works when BM is set to string mode.

Example

HMXF_BUFFER bmBuffer;
uint32 rc;
...
// Deselects acquisition of label 302
if(!rc)
{
uint64 label=302;
rc = mxfA629RxAcqMsgSelectSet(bmBuffer, MXF_MSG_DESELECT, 1, &label);
}
...
Updated 10/23/2023