User`s guide
transmitConfiguration
12-51
transmitConfiguration
Display messages configured for automatic transmission
Syntax
transmitConfiguration(canch)
Description
transmitConfiguration(canch) displays information about all messages in the CAN
Channel, canch, configured for periodic transmit or event-based transmit.
For more information on periodic transmit of messages, refer to transmitPeriodic.
For more information on event-based transmit of messages, refer to transmitEvent.
Input Arguments
canch
Name of the CAN channel configured for periodic transmit or event-based transmit.
Examples
Create a CAN channel and configure two messages:
canch = canChannel('Vector', 'Virtual 1', 1);
msg1 = canMessage(500, false, 8);
msg2 = canMessage(750, false, 8);
Transmit msg1 and msg2 using transmitEvent and transmitPeriodic respectively:
transmitEvent(canch, msg1, 'On');
transmitPeriodic(canch, msg2, 'On', 1);
Display messages on canch configured for periodic or event-based transmit: