Added enumerations and text for notification class object support.

This commit is contained in:
skarg
2009-09-14 10:58:19 +00:00
parent c4e56abcea
commit bc01893af4
3 changed files with 76 additions and 1 deletions
+9 -1
View File
@@ -1426,7 +1426,15 @@ typedef enum BACnetDaysOfWeek {
BACNET_DAYS_OF_WEEK_THURSDAY = 3,
BACNET_DAYS_OF_WEEK_FRIDAY = 4,
BACNET_DAYS_OF_WEEK_SATURDAY = 5,
BACNET_DAYS_OF_WEEK_SUNDAY = 6
BACNET_DAYS_OF_WEEK_SUNDAY = 6,
MAX_BACNET_DAYS_OF_WEEK = 7
} BACNET_DAYS_OF_WEEK;
typedef enum BACnetEventTransitionBits {
TRANSITION_TO_OFFNORMAL = 0,
TRANSITION_TO_FAULT = 1,
TRANSITION_TO_NORMAL = 2,
MAX_BACNET_EVENT_TRANSITION = 3
} BACNET_EVENT_TRANSITION_BITS;
#endif /* end of BACENUM_H */