Hello,
In Can_Write (Tx) blocks, switching between the standard and extended ID formats can be done by choosing the appropriate Hardware Object that was previously configured (or created if necessary) with the desired Can ID Message Type setting in the configuration project in CanHardwareObject tab.
If, in the configuration project, the TRANSMIT CanHardwareObject was configured as MIXED (in Can ID Message Type), then the ID type can be changed directly from the Simulink model by applying the bitwise OR operation to the Message ID input of the Can_write block:
0x80000000 | desired_ID.
Example:

On the Rx side, a CanHardwareObject must be configured for each type of ID that you want to receive. Then the Object_ID output of the CanIf_RxIndication block can be checked to find out which CanHardwareObject has received the message. This gives you the information of the message ID type.

