Add BACnet Zigbee VMAC table and unit test. (#1054)

This commit is contained in:
Steve Karg
2025-07-31 08:57:53 -05:00
committed by GitHub
parent 262ee3fb40
commit f31193998c
13 changed files with 1003 additions and 3 deletions
+8
View File
@@ -47,6 +47,10 @@ PORT_MSTP_SRC = \
PORT_ETHERNET_SRC = \
$(BACNET_PORT_DIR)/ethernet.c
PORT_ZIGBEE_SRC = \
$(BACNET_PORT_DIR)/bzll-init.c \
$(BACNET_SRC_DIR)/bacnet/basic/bzll/bzllvmac.c
PORT_BIP_SRC = \
$(BACNET_PORT_DIR)/bip-init.c \
$(BACNET_SRC_DIR)/bacnet/basic/bbmd/h_bbmd.c
@@ -81,6 +85,7 @@ PORT_ALL_SRC = \
$(PORT_ARCNET_SRC) \
$(PORT_MSTP_SRC) \
$(PORT_ETHERNET_SRC) \
$(PORT_ZIGBEE_SRC) \
$(PORT_BIP_SRC) \
$(PORT_BIP6_SRC) \
$(PORT_BSC_SRC)
@@ -103,6 +108,9 @@ endif
ifeq (${BACDL_DEFINE},-DBACDL_ETHERNET=1)
BACNET_PORT_SRC = ${PORT_ETHERNET_SRC} ${APPS_ENVIRONMENT_SRC}
endif
ifeq (${BACDL_DEFINE},-DBACDL_ZIGBEE=1)
BACNET_PORT_SRC = ${PORT_ZIGBEE_SRC} ${APPS_ENVIRONMENT_SRC}
endif
ifeq (${BACDL_DEFINE},-DBACDL_NONE=1)
BACNET_PORT_SRC = ${PORT_NONE_SRC}
endif