MessageIgnore attribute examples

Example 1

A single message-ID 5 defined in the DBC-file should be ignored in the output.

  • The default value is set to not ignore (0)

  • The specific value of ID 5 is set to ignore (1)

BA_DEF_ BO_  "MessageIgnore" INT 0 1;
BA_DEF_DEF_  "MessageIgnore" 0;
BA_ "MessageIgnore" BO_ 5 1;

Example 2

A single message-ID 5 defined in the DBC-file should included in the output.

  • The default value is set to ignore (1)

  • The specific value of ID 5 is to not ignore (0)

BA_DEF_ BO_  "MessageIgnore" INT 0 1;
BA_DEF_DEF_  "MessageIgnore" 1;
BA_ "MessageIgnore" BO_ 5 0;