FrontPanel Platform API - v6.1.0
    Preparing search index...

    Interface AXITransferError

    Shape of the Error an AXI read/transfer operation rejects with on failure. It is a FrontPanelError (carrying the errorCode) that also reports the partial-transfer byte count the device provides even on error. Narrow with isAXITransferError. Mirrors the C# AXITransferException.

    interface AXITransferError {
        errorCode: ErrorCode;
        message: string;
        name: string;
        stack?: string;
        transferByteCount: number;
    }

    Hierarchy (View Summary)

    Index

    Properties

    errorCode: ErrorCode

    The ErrorCode for the failed operation.

    message: string
    name: string
    stack?: string
    transferByteCount: number

    Bytes transferred before the operation failed.