Secured event decoding by refactoring deprecated functions. (#1126)

* Secured event and authentication decoding by removing deprecated functions.

* Added extended, discrete-value, double-out-of-range, signed-out-of-range, unsigned-out-of-range, change-of-characterstring, change-of-status-flags, change-of-reliability, and change-of-timer event notification encode, decode, and unit testing with #ifdef disabled by default.
This commit is contained in:
Steve Karg
2025-11-05 21:41:30 -06:00
committed by GitHub
parent 4dd13cf199
commit 35f3964b5a
15 changed files with 4449 additions and 1345 deletions
+7 -3
View File
@@ -13,6 +13,10 @@ all: apps
bsd:
$(MAKE) LEGACY=true BACNET_PORT=bsd -s -C apps all
.PHONY: linux
linux:
$(MAKE) LEGACY=true BACNET_PORT=linux -s -C apps all
.PHONY: win32
win32:
$(MAKE) LEGACY=true BACNET_PORT=win32 -s -C apps all
@@ -62,15 +66,15 @@ bsc:
.PHONY: apps
apps:
$(MAKE) -s LEGACY=true -C apps all
$(MAKE) -s -C apps all
.PHONY: lib
lib:
$(MAKE) -s LEGACY=true -C apps $@
$(MAKE) -s -C apps $@
.PHONY: library
library:
$(MAKE) -s LEGACY=true -C apps lib
$(MAKE) -s -C apps lib
CMAKE_BUILD_DIR=build
.PHONY: cmake