Class FloodFillData
java.lang.Object
uk.ac.manchester.spinnaker.messages.sdp.SpinnakerRequest
uk.ac.manchester.spinnaker.messages.scp.SCPRequest<EmptyResponse>
uk.ac.manchester.spinnaker.messages.scp.FloodFillData
- All Implemented Interfaces:
- SerializableMessage
A request to flood fill some data. There is no response payload.
 
 Handled by cmd_ffd() in scamp-cmd.c (which sends many
 messages to actually move the data, handled by nn_cmd_fbs(),
 nn_cmd_fbd() and nn_cmd_fbe() on their receiving cores).
- See Also:
- 
Field SummaryFields inherited from class uk.ac.manchester.spinnaker.messages.scp.SCPRequestargument1, argument2, argument3, BOOT_CHIP, BOOT_MONITOR_CORE, data, NO_DATA, scpRequestHeaderFields inherited from class uk.ac.manchester.spinnaker.messages.sdp.SpinnakerRequestsdpHeader
- 
Constructor SummaryConstructorsConstructorDescriptionFloodFillData(byte nearestNeighbourID, int blockNumber, MemoryLocation baseAddress, byte[] data) FloodFillData(byte nearestNeighbourID, int blockNumber, MemoryLocation baseAddress, byte[] data, int offset, int length) FloodFillData(byte nearestNeighbourID, int blockNumber, MemoryLocation baseAddress, ByteBuffer data) 
- 
Method SummaryModifier and TypeMethodDescriptiongetSCPResponse(ByteBuffer buffer) Parse the response to this message.Methods inherited from class uk.ac.manchester.spinnaker.messages.scp.SCPRequestaddToBufferMethods inherited from class uk.ac.manchester.spinnaker.messages.sdp.SpinnakerRequestgetMessageData
- 
Constructor Details- 
FloodFillDatapublic FloodFillData(byte nearestNeighbourID, int blockNumber, MemoryLocation baseAddress, byte[] data) - Parameters:
- nearestNeighbourID- The ID of the packet, between 0 and 127
- blockNumber- Which block this block is, between 0 and 255
- baseAddress- The base address where the data is to be loaded
- data- The data to load, between 4 and 256 bytes and the size must be divisible by 4.
 
- 
FloodFillDatapublic FloodFillData(byte nearestNeighbourID, int blockNumber, MemoryLocation baseAddress, byte[] data, int offset, int length) - Parameters:
- nearestNeighbourID- The ID of the packet, between 0 and 127
- blockNumber- Which block this block is, between 0 and 255
- baseAddress- The base address where the data is to be loaded
- data- The data to load, between 4 and 256 bytes and the size must be divisible by 4
- offset- Where in the array the data starts at.
- length- The length of the data; must be divisible by 4.
 
- 
FloodFillDatapublic FloodFillData(byte nearestNeighbourID, int blockNumber, MemoryLocation baseAddress, ByteBuffer data) - Parameters:
- nearestNeighbourID- The ID of the packet, between 0 and 127
- blockNumber- Which block this block is, between 0 and 255
- baseAddress- The base address where the data is to be loaded
- data- The data to load, starting at the position and going to the limit. Must be between 4 and 256 bytes and the size must be divisible by 4. The position and limit of the buffer will not be updated by this constructor.
 
 
- 
- 
Method Details- 
getSCPResponseDescription copied from class:SCPRequestParse the response to this message.- Specified by:
- getSCPResponsein class- SCPRequest<EmptyResponse>
- Parameters:
- buffer- The buffer to parse.
- Returns:
- The message response.
- Throws:
- UnexpectedResponseCodeException
 
 
-