Hello,
I'm trying to test LLCE CAN with Can_Llce_DS_Can2Can_S32G274A_M7 example on your S32G-VNP-RDB2 board.
Actually there was no problem on your example without any change.
But I wanted to test only CAN not CAN FD, so I blocked all and just put below codes in the for loop in the Can_Driver_Sample_Test() function.
CanMessage.length = CAN_STD_FRAME_LEN;
CanMessage.sdu = can_std_data;
CanMessage.id = 1;
can_retval = Can_43_LLCE_Write(CanHO_Config1_TX1, &CanMessage);
With this change, first trial to send was successful but there was no CAN transmit from second trial and the software felt into HardFault_Handler() exception after some trials.
Could you advise what should I do to test CAN Tx/Rx only not CAN FD?
Thanks,
Harry