jsax25
    Preparing search index...

    Interface XIDFrameConstructor

    Exchange Identification Frame Constructor

    interface XIDFrameConstructor {
        commandOrResponse?: "command" | "response";
        destinationCallsign: string;
        destinationReservedBitOne?: boolean;
        destinationReservedBitTwo?: boolean;
        destinationSsid: number;
        pollOrFinal?: boolean;
        repeaters?: Repeater[];
        sourceCallsign: string;
        sourceReservedBitOne?: boolean;
        sourceReservedBitTwo?: boolean;
        sourceSsid: number;
    }

    Hierarchy (View Summary)

    Index

    Properties

    commandOrResponse?: "command" | "response"

    Whether the frame is a command frame or a response frame.

    'command'
    
    destinationCallsign: string

    The destination station's amateur radio callsign. Valid callsigns are 1 to 6 characters (inclusive), all uppercase.

    destinationReservedBitOne?: boolean

    Reserved bit that may be used in an agreed-upon manner in individual networks.

    false
    
    destinationReservedBitTwo?: boolean

    Reserved bit that may be used in an agreed-upon manner in individual networks.

    false
    
    destinationSsid: number

    The destination station's SSID. Valid SSIDs are integers 0 to 15 (inclusive).

    pollOrFinal?: boolean

    Used in all types of frames. The P/F bit is also used in a command (poll) mode to request an immediate reply to a frame. The reply to this poll is indicated by setting the response (final) bit in the appropriate frame.

    false
    
    repeaters?: Repeater[]

    The repeaters/digipeaters that the frame is addressed to travel through.

    []
    
    sourceCallsign: string

    The sending station's amateur radio callsign. Valid callsigns are 1 to 6 characters (inclusive), all uppercase.

    sourceReservedBitOne?: boolean

    Reserved bit that may be used in an agreed-upon manner in individual networks.

    false
    
    sourceReservedBitTwo?: boolean

    Reserved bit that may be used in an agreed-upon manner in individual networks.

    false
    
    sourceSsid: number

    The sending station's SSID. Valid SSIDs are integers 0 to 15 (inclusive).