Source code for spinnman.messages.scp.impl.scp_read_link_response

from spinnman.messages.scp.abstract_messages.abstract_scp_response import AbstractSCPResponse
from spinnman.messages.scp.scp_result import SCPResult
from spinnman.exceptions import SpinnmanUnexpectedResponseCodeException


[docs]class SCPReadLinkResponse(AbstractSCPResponse): """ An SCP response to a request to read a region of memory via a link on\ a chip """ def __init__(self): """ """ super(SCPReadLinkResponse, self).__init__() self._data = None
[docs] def read_scp_response(self, byte_reader): """ See :py:meth:`spinnman.messages.scp.abstract_scp_response.AbstractSCPResponse.read_scp_response` """ super(SCPReadLinkResponse, self).read_scp_response(byte_reader) result = self.scp_response_header.result if result != SCPResult.RC_OK: raise SpinnmanUnexpectedResponseCodeException( "ReadLink", "CMD_READ_LINK", result.name) self._data = byte_reader.read_bytes()
@property def data(self): """ The data read :rtype: bytearray """ return self._data