Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

Defining CAN Signals and Messages

To get a higher level of abstraction, the CAN signals and messages can be used to abstract the information mappings to the bus communication objects.

Example: The information ‘Nodestatus’ and ‘CPU-Load’ shall be sent in a CAN frame called ‘Status’ with the following definition:

...

9. New Nodestatus = 2: Stop the task ‘Load-Task’

Source code (Part 1):

#include “can_sig.h”

/* Signal Definition */

enum {

S_NODESTATUS = 0, S_CPULOAD, S_MAX

};

const CANSIG_PARA CanSig[CANSIG_N] = {

/*--- S_NODESTATUS */

{ CANSIG_UNCHANGED, /* Initial Status */

1, /* Width in Bytes */

...

StatusChange }, /* Callback Func. */

/*------ S_CPULOAD */

{ CANSIG_UNCHANGED, /* Initial Status */

1, /* Width in Bytes */

0, /* Initial Value */

0 } /* No Callback */

};

Additional Information:

1. The CAN signals can be defined without any CAN communication knowledge. No information about sending or receiving the information is needed during this state.

...

5. The callback function definition may be omitted by configuring the CANSIG_CALLBACK_EN parameter to 0.

Source code (Part 2):

#include “can_msg.h”

/* Message Definition */

enum {

M_STATUS = 0, M_COMMAND, M_MAX

};

const CANMSG_PARA CanMsg[CANMSG_N] = {

/*------- M_STATUS */

{ 0x150L, /* CAN-Identifier */

CANMSG_TX, /* Message Type */

2, /* DLC of Message */

2, /* No. of Links */

{ { S_NODESTATUS, /* Signal ID */

0 }, /* Byte Position */

{ S_CPULOAD, /* Signal ID */

1 } } }, /* Byte Position */

/*------ M_COMMAND */

{ 0x140L, /* CAN-Identifier */

CANMSG_RX, /* Message Type */

1, /* DLC of Message */

1, /* No. of Links */

{ { S_NODESTATUS, /* Signal ID */

0 } } } /* Byte Position */

};

Additional Information:

1. The CAN messages can be defined without any knowledge of the information generation and/or usage of the payload. Only the mapping of information parts to the payload must be known.

...

4. This variable must be declared globally, because the configuration data will be read while using the CAN message layer.

End