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
+12
View File
@@ -0,0 +1,12 @@
#!/bin/bash
export BACNET_APDU_RETRIES=0
export BACNET_APDU_TIMEOUT=0
# bacabort [invoke-id abort-reason server]
# BACnetErrorCode
export error_class=0
for error_code in {0..256}
do
./bin/bacerror ${error_class} ${error_code}
done