Added Zephyr settings and basic device in subsys. (#697)

* Added Zephyr settings subsys to enable storing of BACnet values according to BACnet object property value path.

* Added BACnet Basic features to enable basic samples. Refactored the zephyr BACnet profile B-SS sample to use BACnet basic subsys.
This commit is contained in:
Steve Karg
2024-07-19 17:12:20 -05:00
committed by GitHub
parent 90714c094c
commit 1e889b633c
33 changed files with 3400 additions and 213 deletions
+23
View File
@@ -0,0 +1,23 @@
# CMake for BACnet settings library
#
# @author Steve Karg <skarg@users.sourceforge.net>
# @date May 2024
# @copyright SPDX-License-Identifier: MIT
zephyr_library(bacnet_basic)
zephyr_library_include_directories(include)
zephyr_library_sources(
bacnet_port.c
bacnet_port_ipv4.c
bacnet_port_ipv6.c
bacnet_basic.c
device.c
server.c
)
zephyr_library_sources_ifdef(CONFIG_BACNET_BASIC_DEVICE_SHELL
bacnet_shell_objects.c
bacnet_shell_packets.c
bacnet_shell_uptime.c
)