I am trying to start a FlexRay bus with one SPC5604 board and two BMW'S ECU but the bus wont start up.
I get stuck in the "vfnFlexRay_Init" after "Fr_start_communication".
The Boards send the first Startup Frame but then nothing more happens and the loop
/* Initialize startup */
return_value = Fr_start_communication();
if(return_value == FR_NOT_SUCCESS) Failed(4); /* Call debug function in case of any error */
protocol_state = Fr_get_POC_state(); /* Load current POC state */
while(Fr_get_POC_state() != FR_POCSTATE_NORMAL_ACTIVE) /* Wait till the FR CC is not in the FR_POCSTATE_NORMAL_ACTIVE */
{
}
is endless.
How can I solve the problem ?