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

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


[docs]class StartRequests(EIEIOCommandMessage): """ Packet used in the context of buffering input for the host computer to\ signal to the SpiNNaker system that, if needed, it is possible to\ send more "SpinnakerRequestBuffers" packet """ def __init__(self): EIEIOCommandMessage.__init__( self, EIEIOCommandHeader( EIEIO_COMMAND_IDS.START_SENDING_REQUESTS.value))