on a664Message
Valid for: CANoe DE • CANoe4SW DE NoteCAPL programs are by default not transparent to bus events. This means that a CAPL node in the evaluation branch of the measurement setup will block the data flow to its right side. You must explicitly code the forwarding of messages in CAPL nodes in the evaluation branch. In order to re-use this code snippet in the Simulation Setup of your CANoe DE product you have to add conditional compilation. Otherwise a recursion will occur. Forward AFDX message event:
Function Syntax
on a664Message <message identification>
Description
The event procedure on a664Message is called on every AFDX message if the following conditions are fulfilled:- The message id corresponds to the given id (asterisk means “any message”).
- The message carries a UDP message.
Selectors
Selectors for AFDX messagesExample
Calling conventions for the on a664Message handleron a664Message 0x30e40021: event with Id 0x30e40021 (hexadecimal)on a664Message 123423: event with Id 123423 (decimal)on a664Message MSG_INT3: event with Id from assigned databaseon a664Message *: event with any Idon a664Message MsgChannel1.*: event with any Id on channel 1on a664Message MsgChannel1.0x30e40021: event with Id 0x30e40021 (hexadecimal) on channel 1on a664Message MsgChannel1.123423: event with Id 123423 (decimal) on channel 1on a664Message MsgChannel1.MSG_INT3: event with Id from assigned database on channel 1