#ifndef ALARM_H
#define ALARM_H

#define MAX_ALARMS_DISPLAYED	10
#define MAX_ALARM_MSG_SIZE		128
#define ALARM_MSG_DETAIL_SIZE	128

typedef enum {PRIORITY_MESSAGE, PRIORITY_WARNING, PRIORITY_ALARM} alarmPriority;
#endif