We are running TMS570_FlexRay_example_node on the demo board.In FlexRay.c,
// Buffer #1 Fr_LPduPtr->fid = 1; // frame ID Fr_LPduPtr->dp = 0x80; // Pointer to start of data in message RAM Fr_LPduPtr->cfg = 1; // TX frame Fr_LPduPtr->sync = 1; // sync frame indicator Fr_LPduPtr->sfi = 1; // startup frame indicator Fr_LPduPtr->pl = 9; // 18 byte payload Fr_LPduPtr->crc = header_crc_calc(Fr_LPduPtr);
There are two lines of code to configure the sync frame indicator and startup frame indicator,but we didn't find which register to configure it in the technical reference manual.According to our understanding,it should be configured in Write Header Section 3 Register,but bit[31:11] is Reserved,So how is this configured?