I am trying to send a message on a simulated CANoe bus. I want to set the FDF bit for can fd. In the capl node that outputs the message, the FDF bit is set. But as soon as the receiver reacts to the message in his 'on message' routine, the FDF bit is no longer set.
There is no database with signals etc. used.
// receiver
int examineCanMode(message *m){
if (m.FDF == 0){
return CLASSIC_CAN;
}
if (m.FDF == 1){
return CAN_FD;
}
write("DUT: ERROR in examineCanMode.");
return ERROR;
}
Does someone know what to do? kind regards, Michael