zigbee-herdsman
    Preparing search index...
    type TLV = {
        length: number;
        tagId: number;
        tlv:
            | ManufacturerSpecificGlobalTLV
            | SupportedKeyNegotiationMethodsGlobalTLV
            | PanIdConflictReportGlobalTLV
            | NextPanIdChangeGlobalTLV
            | NextChannelChangeGlobalTLV
            | SymmetricPassphraseGlobalTLV
            | RouterInformationGlobalTLV
            | FragmentationParametersGlobalTLV
            | JoinerEncapsulationGlobalTLV
            | BeaconAppendixEncapsulationGlobalTLV
            | ConfigurationParametersGlobalTLV
            | DeviceCapabilityExtensionGlobalTLV
            | LocalTLVType;
    }
    Index

    Properties

    Properties

    length: number

    The Length byte encodes the number of bytes in the value field -1. This means that a TLV with length field of 3 is expected to contain 4 bytes of data in the value field.

    WARNING: This field is assumed to always include the +1 offset, and logic should do the appropriate reversal when writing the actual buffer.

    1-byte

    tagId: number

    1-byte - 0-63: Local, 64-255: Global

    Size = ${length + 1}