MX Foundation 4
Basic Transmission

The basic transmission method consists of sending one or more data records on the data bus and does not care about any timing consideration between the records.

This is the most basic method to sending data. The example below shows all the steps required to build a basic HFCE transmission function.

  • How to initialize and set a transmit channel was discussed in a previous section.
  • Allocate the specific aperiodic buffer for transmission.
  • Build the data record.
    • The time tag is set to 0 : transmit as soon as possible.
    • The repeat count is set to 1 : the record will be not be repeated.
  • Finally, the mxfHFCETxAperiodicWrite() function with MXF_TXAPERIODIC_FLAG_DEFAULT flag must be used.

Example

hfce_aperiodic.c

Updated 10/23/2023