Added BACnet Error and Abort demos to send messages for Wireshark capture validation.

This commit is contained in:
skarg
2016-05-20 20:43:05 +00:00
parent b47afd500d
commit 397ef31d41
12 changed files with 869 additions and 1 deletions
+34
View File
@@ -263,6 +263,40 @@ extern "C" {
uint32_t device_id,
BACNET_OBJECT_ID * lastReceivedObjectIdentifier);
int Send_Abort_To_Network(
uint8_t * buffer,
BACNET_ADDRESS *dest,
uint8_t invoke_id,
BACNET_ABORT_REASON reason,
bool server);
int abort_encode_pdu(
uint8_t * buffer,
BACNET_ADDRESS * dest,
BACNET_ADDRESS * src,
BACNET_NPDU_DATA * npdu_data,
uint8_t invoke_id,
BACNET_ABORT_REASON reason,
bool server);
int Send_Error_To_Network(
uint8_t * buffer,
BACNET_ADDRESS *dest,
uint8_t invoke_id,
BACNET_CONFIRMED_SERVICE service,
BACNET_ERROR_CLASS error_class,
BACNET_ERROR_CODE error_code);
int error_encode_pdu(
uint8_t * buffer,
BACNET_ADDRESS * dest,
BACNET_ADDRESS * src,
BACNET_NPDU_DATA * npdu_data,
uint8_t invoke_id,
BACNET_CONFIRMED_SERVICE service,
BACNET_ERROR_CLASS error_class,
BACNET_ERROR_CODE error_code);
#ifdef __cplusplus
}
#endif /* __cplusplus */