#ifndef MINSPAN_H #define MINSPAN_H #define AM_HOPMSG 5 #define AM_ALARMMSG 141 #define ROOT_ADDRESS 1 #define TSR_THRESHOLD 45 #define HOP_INF 255 #define TSR_INF 65535L #define ALARM_ON 5 typedef struct HopMsg { uint8_t hopCount; uint8_t parentAddress; } HopMsg_t; typedef struct AlarmMsg { uint8_t parentAddress; } AlarmMsg_t; #endif