Class WriteFPGAData

All Implemented Interfaces:
SerializableMessage

public class WriteFPGAData extends BMPRequest<BMPRequest.BMPResponse>
A request to upload a chunk of FPGA initialisation data. Must have been set up by InitFPGA. The upload process will be terminated by ResetFPGA. There is no response payload.

Calls ssp1_copy() in bmp_ssp.c.

  • Constructor Details

    • WriteFPGAData

      public WriteFPGAData(BMPBoard board, byte[] data)
      Parameters:
      board - Which board to upload the FPGA data to.
      data - What data to upload.
    • WriteFPGAData

      public WriteFPGAData(BMPBoard board, ByteBuffer data)
      Parameters:
      board - Which board to upload the FPGA data to.
      data - What data to upload. The position and limit of the buffer will not be updated by this method.
  • Method Details