369da70f2a
* format: Strip trailing whitespaces
We want to get rid of trailing whitespaces completly as they make just git
noice. Much better to start using automated tools to get rid of them once and
not getting them back again. This way git history will be cleaner and review
easier.
Commit was generated with:
pre-commit run --all-files trailing-whitespace
* format: Files should have exactly one new line end of them
It is good practice that every file has one new line. It is not now days so
mandatory but it also is not nice if file has lot of newlines end of it. We will
use pre-commit which takes automatically care about this so let's fix all.
Commit was generated with:
pre-commit run --all-files end-of-file-fixer
* format: Convert tabs to spaces
Project mostly use spaces over tabs. When mixing tabs and spaces this usually
makes formatting issues and also when changing those in commits it will make lot
of git noise. We will force spaces most of the time and use pre-commit to fix.
Commit was generated with:
pre-commit run --all-files remove-tabs
---------
Co-authored-by: Kari Argillander <kari.argillander@fidelix.com>
105 lines
3.2 KiB
C
105 lines
3.2 KiB
C
/**
|
|
* @file
|
|
* @brief The BACnet datalink tasks for handling the device specific
|
|
* data link layer
|
|
* @author Steve Karg <skarg@users.sourceforge.net>
|
|
* @date April 2024
|
|
* @copyright SPDX-License-Identifier: MIT
|
|
*/
|
|
#include <stdint.h>
|
|
#include <stdbool.h>
|
|
#include <stdlib.h>
|
|
#include <string.h>
|
|
/* BACnet definitions */
|
|
#include "bacnet/bacdef.h"
|
|
/* BACnet library API */
|
|
#include "bacnet/basic/object/netport.h"
|
|
#include "bacnet/basic/bbmd6/h_bbmd6.h"
|
|
#include "bacnet/datalink/bip6.h"
|
|
#include "bacnet/datalink/bvlc6.h"
|
|
#include "bacnet/datalink/datalink.h"
|
|
/* me! */
|
|
#include "bacnet_basic/bacnet_port_ipv6.h"
|
|
|
|
#if defined(BACDL_BIP6)
|
|
|
|
/* timer used to renew Foreign Device Registration */
|
|
static uint16_t BBMD_Timer_Seconds;
|
|
static uint16_t BBMD_TTL_Seconds = 60000;
|
|
static BACNET_IP6_ADDRESS BBMD_Address;
|
|
|
|
/**
|
|
* @brief Initialize the datalink network port
|
|
* @param ttl_seconds [in] The time-to-live in seconds for the Foreign Device Registration
|
|
* @param bbmd_address [in] The address of the BBMD
|
|
*/
|
|
void bacnet_port_ipv6_foreign_device_init(
|
|
const uint16_t ttl_seconds, const BACNET_IP6_ADDRESS *bbmd_address)
|
|
{
|
|
BBMD_TTL_Seconds = ttl_seconds;
|
|
if (bbmd_address) {
|
|
memcpy(&BBMD_Address, bbmd_address, sizeof(BACNET_IP6_ADDRESS));
|
|
}
|
|
}
|
|
|
|
/**
|
|
* @brief Renew the Foreign Device Registration
|
|
*/
|
|
void bacnet_port_ipv6_task(uint16_t elapsed_seconds)
|
|
{
|
|
if (BBMD_Timer_Seconds) {
|
|
if (BBMD_Timer_Seconds <= elapsed_seconds) {
|
|
BBMD_Timer_Seconds = 0;
|
|
} else {
|
|
BBMD_Timer_Seconds -= elapsed_seconds;
|
|
}
|
|
if (BBMD_Timer_Seconds == 0) {
|
|
if (BBMD_Address.port > 0) {
|
|
(void)bvlc6_register_with_bbmd(&BBMD_Address,
|
|
BBMD_TTL_Seconds);
|
|
}
|
|
BBMD_Timer_Seconds = BBMD_TTL_Seconds;
|
|
}
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Initialize the network port object.
|
|
* @return true if successful
|
|
*/
|
|
bool bacnet_port_ipv6_init(void)
|
|
{
|
|
uint32_t instance = 1;
|
|
uint8_t prefix = 0;
|
|
BACNET_ADDRESS addr = { 0 };
|
|
BACNET_IP6_ADDRESS addr6 = { 0 };
|
|
|
|
if (!bip6_init(NULL)) {
|
|
return false;
|
|
}
|
|
Network_Port_Object_Instance_Number_Set(0, instance);
|
|
Network_Port_Name_Set(instance, "BACnet/IPv6 Port");
|
|
Network_Port_Type_Set(instance, PORT_TYPE_BIP6);
|
|
Network_Port_BIP6_Port_Set(instance, bip6_get_port());
|
|
bip6_get_my_address(&addr);
|
|
Network_Port_MAC_Address_Set(instance, &addr.mac[0], addr.mac_len);
|
|
bip6_get_addr(&addr6);
|
|
Network_Port_IPv6_Address_Set(instance, &addr6.address[0]);
|
|
bip6_get_broadcast_addr(&addr6);
|
|
Network_Port_IPv6_Multicast_Address_Set(instance, &addr6.address[0]);
|
|
Network_Port_IPv6_Subnet_Prefix_Set(instance, prefix);
|
|
|
|
Network_Port_Reliability_Set(instance, RELIABILITY_NO_FAULT_DETECTED);
|
|
Network_Port_Link_Speed_Set(instance, 0.0);
|
|
Network_Port_Out_Of_Service_Set(instance, false);
|
|
Network_Port_Quality_Set(instance, PORT_QUALITY_UNKNOWN);
|
|
Network_Port_APDU_Length_Set(instance, MAX_APDU);
|
|
Network_Port_Network_Number_Set(instance, 0);
|
|
/* last thing - clear pending changes - we don't want to set these
|
|
since they are already set */
|
|
Network_Port_Changes_Pending_Set(instance, false);
|
|
|
|
return true;
|
|
}
|
|
#endif
|