/** * @file * @brief The BACnet datalink tasks for handling the device specific * data link network port layer * @author Steve Karg * @date April 2024 * @copyright SPDX-License-Identifier: MIT */ #ifndef BACNET_PORT_H #define BACNET_PORT_H #include #include /* BACnet Stack defines - first */ #include "bacnet/bacdef.h" #ifdef __cplusplus extern "C" { #endif /* __cplusplus */ bool bacnet_port_init(void); void bacnet_port_task(void); #ifdef __cplusplus } #endif /* __cplusplus */ #endif