After acknowledgment an alarm is sent AckNotification.

This commit is contained in:
k001a
2011-07-23 17:18:25 +00:00
parent c1d7633a8d
commit c37aa9ea90
5 changed files with 425 additions and 323 deletions
+9 -2
View File
@@ -61,7 +61,6 @@ typedef struct BACnet_Recipient {
} BACNET_RECIPIENT;
/* BACnetDestination structure */
typedef struct BACnet_Destination {
uint8_t ValidDays;
@@ -72,6 +71,7 @@ typedef struct BACnet_Destination {
uint8_t Transitions;
bool ConfirmedNotify;
} BACNET_DESTINATION;
/* Structure containing configuration for a Notification Class */
typedef struct Notification_Class_info {
@@ -86,8 +86,15 @@ typedef struct Acked_info {
bool bIsAcked; /* true when transitions is acked */
BACNET_DATE_TIME Time_Stamp;/* time stamp of when a alarm was generated */
} ACKED_INFO;
/* Information needed to send AckNotification */
typedef struct Ack_Notification {
bool bSendAckNotify; /* true if need to send AckNotification */
uint8_t EventState;
} ACK_NOTIFICATION;
void Notification_Class_Property_Lists(
const int **pRequired,