Source code for spinn_front_end_common.utilities.utility_objs.extra_monitor_scp_messages.reset_counters_message

# 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.scp import SCPRequestHeader
from spinnman.messages.scp.abstract_messages import AbstractSCPRequest
from spinnman.messages.sdp import SDPFlag, SDPHeader
from spinnman.messages.scp.impl.check_ok_response import CheckOKResponse
from spinn_front_end_common.utilities.constants import SDP_PORTS
from .reinjector_scp_commands import ReinjectorSCPCommands


[docs]class ResetCountersMessage(AbstractSCPRequest): """ An SCP Request to reset the statistics counters of the dropped packet\ reinjection """ __slots__ = [] def __init__(self, x, y, p): """ :param x: The x-coordinate of a chip, between 0 and 255 :type x: int :param y: The y-coordinate of a chip, between 0 and 255 :type y: int :param p: \ The processor running the extra monitor vertex, between 0 and 17 :type p: int """ super(ResetCountersMessage, self).__init__( SDPHeader( flags=SDPFlag.REPLY_NOT_EXPECTED, destination_port=( SDP_PORTS.EXTRA_MONITOR_CORE_REINJECTION.value), destination_cpu=p, destination_chip_x=x, destination_chip_y=y), SCPRequestHeader(command=ReinjectorSCPCommands.RESET_COUNTERS))
[docs] def get_scp_response(self): return CheckOKResponse( "Reset dropped packet reinjection counters", ReinjectorSCPCommands.RESET_COUNTERS)