#ifndef MULTI_MSG
#define MULTI_MSG

enum {
  BUFFER_SIZE = 10
};

typedef struct MultiMsg
{
    uint16_t source;
    uint16_t packetNumber;
    uint16_t data[BUFFER_SIZE];
} MultiMsg;

enum {
  AM_MULTI_MSG = 10
};

#endif // MULTI_MSG

