Feature/bacnet secure connect hub (#818)

* Added BACnet Secure Connect datalink.

* Added BACnet/SC hub application
---------

Co-authored-by: Kirill Neznamov <kirill.neznamov@dsr-corporation.com>
Co-authored-by: Mikhail Antropov <michail.antropov@dsr-corporation.com>
Co-authored-by: Ondřej Hruška <ondra@ondrovo.com>
Co-authored-by: Patrick Grimm <patrick@lunatiki.de>
This commit is contained in:
Steve Karg
2024-11-04 07:05:26 -06:00
committed by GitHub
parent 90cdc4920b
commit cf77abac9b
161 changed files with 82982 additions and 23 deletions
+25
View File
@@ -109,6 +109,7 @@ list(APPEND testdirs
bacnet/reject
bacnet/rp
bacnet/rpm
bacnet/secure_connect
bacnet/specialevent
bacnet/timestamp
bacnet/timesync
@@ -187,6 +188,30 @@ list(APPEND testdirs
bacnet/datalink/mstp
)
# ports tests
if(ZEPHYR_BASE)
message(FATAL_ERROR "ZEPHYR_BASE env variable defined. Use zephyr/CMakeLists.txt for Zephyr build")
elseif(${CMAKE_SYSTEM_NAME} STREQUAL "Linux")
message(STATUS "Added ports specific tests for linux")
list(APPEND testdirs
ports/linux/bsc_event
)
elseif(WIN32)
message(STATUS "Added ports specific tests for win32")
list(APPEND testdirs
ports/win32/bsc_event
)
elseif(APPLE)
message(STATUS "Added ports specific tests for APPLE")
list(APPEND testdirs
ports/bsd/bsc_event
)
endif()
enable_testing()
foreach(testdir IN ITEMS ${testdirs})
get_filename_component(basename ${testdir} NAME)