Source code for spinn_front_end_common.utilities.scp.scp_update_runtime_request

# Copyright (c) 2017-2019 The University of Manchester
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program.  If not, see <http://www.gnu.org/licenses/>.

from spinnman.messages.sdp import SDPHeader, SDPFlag
from spinnman.messages.scp.abstract_messages import AbstractSCPRequest
from spinnman.messages.scp import SCPRequestHeader
from spinnman.messages.scp.impl import CheckOKResponse
from spinn_front_end_common.utilities.constants import (
    SDP_RUNNING_MESSAGE_CODES)
import struct


[docs]class SCPUpdateRuntimeRequest(AbstractSCPRequest): def __init__( self, x, y, p, current_time, run_time, infinite_run, destination_port, expect_response=True): # pylint: disable=too-many-arguments sdp_flags = SDPFlag.REPLY_NOT_EXPECTED if expect_response: sdp_flags = SDPFlag.REPLY_EXPECTED super(SCPUpdateRuntimeRequest, self).__init__( SDPHeader( flags=sdp_flags, destination_port=destination_port, destination_cpu=p, destination_chip_x=x, destination_chip_y=y), SCPRequestHeader( command=SDP_RUNNING_MESSAGE_CODES.SDP_NEW_RUNTIME_ID_CODE), argument_1=run_time, argument_2=infinite_run, argument_3=current_time, data=struct.pack("<B", int(bool(expect_response))))
[docs] def get_scp_response(self): return CheckOKResponse( "update runtime", SDP_RUNNING_MESSAGE_CODES.SDP_NEW_RUNTIME_ID_CODE.value)