Hello,
I declare a single mailbox as output (extended mode with IT TXIE):

with id_base = frame ID: 0x18FF50E5 and SC_CAN_NUMMAILBOX_TX = num Mailbox: 1
Then I want to send two consecutive frames via the same num Mailbox but with a different frame ID: the first ID = 0x18FF50E5 the second with ID 0x18FF51E5 .
Both frames have the same ID:
I wanted to use the CAN_sendMessage_updateDLC function because the two frames have two different DLCs.
I tried to make my own function from this one: CAN_sendMessage_updateMsgIdMsgDLC to add the identifier as an argument, writing it to the CAN_IF1ARB register:

The ID has the desired address: 0x18FF51E5 But the frame actually output retains the initial address inserted viia CAN_setupMessageObject
So, is it possible to transmit CAN frames with different IDs with a single Mailbox configured as output?
Thanks for your help.
Eric