1e889b633c
* 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.
31 lines
750 B
C
31 lines
750 B
C
/**
|
|
* @file
|
|
* @brief The BACnet/IPv6 datalink tasks for handling the device specific
|
|
* data link network port layer
|
|
* @author Steve Karg <skarg@users.sourceforge.net>
|
|
* @date April 2024
|
|
* @copyright SPDX-License-Identifier: MIT
|
|
*/
|
|
#ifndef BACNET_PORT_IPV6_H
|
|
#define BACNET_PORT_IPV6_H
|
|
|
|
#include <stdbool.h>
|
|
#include <stdint.h>
|
|
/* BACnet Stack defines - first */
|
|
#include "bacnet/bacdef.h"
|
|
#include "bacnet/datalink/bvlc6.h"
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif /* __cplusplus */
|
|
|
|
void bacnet_port_ipv6_foreign_device_init(
|
|
const uint16_t ttl_seconds, const BACNET_IP6_ADDRESS *bbmd_address);
|
|
void bacnet_port_ipv6_task(uint16_t elapsed_seconds);
|
|
bool bacnet_port_ipv6_init(void);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif /* __cplusplus */
|
|
#endif
|