Kvaser CanKing GUI Extensions SDK - v7.5.1
    Preparing search index...

    Interface ISignalDataEnvelope

    Interface for signal data envelope. Each envelope contains arrays of time, min, and max values for a signal. All arrays are aligned by index.

    interface ISignalDataEnvelope {
        max: number[];
        min: number[];
        qualifiedName: string;
        sourceId?: string;
        timeUs: number[];
    }
    Index

    Properties

    max: number[]

    The maximum values of the signal data.

    min: number[]

    The minimum values of the signal data.

    qualifiedName: string

    The qualified name of the signal.

    sourceId?: string

    The source identifier of the signal.

    timeUs: number[]

    The timestamps of the signal data in microseconds.