Source code for spinnman.messages.scp.impl.scp_router_alloc_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 SCPRouterAllocResponse(AbstractSCPResponse): """ An SCP response to a request to allocate router entries """ def __init__(self): """ """ super(SCPRouterAllocResponse, self).__init__() self._base_address = None
[docs] def read_scp_response(self, byte_reader): """ See :py:meth:`spinnman.messages.scp.abstract_scp_response.AbstractSCPResponse.read_scp_response` """ super(SCPRouterAllocResponse, self).read_scp_response(byte_reader) result = self.scp_response_header.result if result != SCPResult.RC_OK: raise SpinnmanUnexpectedResponseCodeException( "Router Allocation", "CMD_ALLOC", result.name) self._base_address = byte_reader.read_int()
@property def base_address(self): """ The base address allocated, or 0 if none :rtype: int """ return self._base_address