MX Foundation 4
Acquisition Filtering

The acquisition service can filter out unwanted IDs automatically. The mxfCanBusRxAcqMsgSelectSet() function allows the selection of the IDs that should be acquired.

If filtering is set for specific IDs, each ID will use one of the 256 messages spot available. (see Messages ID)

HMXF_BUFFER buffer;
uint64 ID=0x08120000;
uint32 rc;
...
// Acquires only ID 0x08120000
if (!rc)
rc = mxfCanBusRxAcqMsgSelectSet(buffer, MXF_MSG_SELECT_ONLY, 1, &ID);
...
Updated 10/23/2023