Interface that provides the methods that may be used to interact with the device.

interface IDevice {
    close(): boolean;
    getFPGA(): IDeviceFPGA;
    getInfo(): Promise<IDeviceInfo>;
    isOpen(): Promise<boolean>;
}

Methods

  • Closes the Device.

    Returns boolean

    • True if the Device was successfully closed, otherwise false.
  • The FPGA interface for the device.

    Returns IDeviceFPGA

    • The FPGA interface for the Device.
  • Retrieves the device information.

    Returns Promise<IDeviceInfo>

    • Promise that resolves to a Device information interface.
  • Determines if the Device is currently open.

    Returns Promise<boolean>

    • Promise that resolves to true if the Device is open, otherwise false.

Generated using TypeDoc