1.5.4.2 AL_INIT Struct

C

typedef struct
{
  /* AL task rate in milliseconds */
  uint8_t taskRateMs;
  /* Is master node (false in slave node) */
  bool isMaster;
  /* Initial value of AL_TX_RETRY_LIMIT */
  uint8_t txRetryLimit;
} AL_INIT;

Summary

Defines the data required to initialize the Meters And More AL module.

Description

Contains fields which define the information required by AL module upon initialization:
  • The rate at which associated task is executed
  • The role of the Device, Master or Slave
  • Number of retries at AL level

Remarks

None.