Source code for spinnman.messages.eieio.command_messages.stop_requests

from .eieio_command_message import EIEIOCommandMessage
from .eieio_command_header import EIEIOCommandHeader
from spinnman.constants import EIEIO_COMMAND_IDS


[docs]class StopRequests(EIEIOCommandMessage): """ Packet used in the context of buffering input for the host computer to\ signal to the SpiNNaker system that to stop sending\ "SpinnakerRequestBuffers" packet """ def __init__(self): EIEIOCommandMessage.__init__( self, EIEIOCommandHeader( EIEIO_COMMAND_IDS.STOP_SENDING_REQUESTS.value))