UNPKG

zigbee-herdsman

Version:

An open source ZigBee gateway solution with node.js.

25 lines 1.18 kB
"use strict"; var __importDefault = (this && this.__importDefault) || function (mod) { return (mod && mod.__esModule) ? mod : { "default": mod }; }; Object.defineProperty(exports, "__esModule", { value: true }); exports.apsTcLinkKeyTable = void 0; const node_assert_1 = __importDefault(require("node:assert")); const table_1 = require("../table"); const aps_tc_link_key_entry_1 = require("./aps-tc-link-key-entry"); const emptyAddress = Buffer.alloc(8, 0x00); /** * Creates an APS trust center link key data table. * * @param data Data to initialize table with. * @param alignment Memory alignment of initialization data. */ const apsTcLinkKeyTable = (dataOrCapacity, alignment = "unaligned") => { const table = table_1.Table.new() .struct(aps_tc_link_key_entry_1.apsTcLinkKeyEntry) .occupancy((e) => !e.extAddr.equals(emptyAddress)); (0, node_assert_1.default)(dataOrCapacity !== undefined, "dataOrCapacity cannot be undefined"); return typeof dataOrCapacity === "number" ? table.build(dataOrCapacity) : table.build(dataOrCapacity, alignment); }; exports.apsTcLinkKeyTable = apsTcLinkKeyTable; //# sourceMappingURL=aps-tc-link-key-table.js.map