From the documentation of MPSEND:
Delivery of sent data is guaranteed, but with a delay
KKEQ83RJ
MPSTART 2,"TEST" IF MPLOCAL THEN FOR I%=1 TO 16 VSYNC 2 MPSEND STR$(I%) NEXT ELSE WAIT 60 FOR I%=1 TO 16 MPRECV OUT S%,I$ ?S%,I$ NEXT ENDIFThe output on the receiving console is
1 1 1 2 1 3 1 4 1 5 1 6 1 7 1 8 1 9 1 10 1 11 1 12 1 13 1 14 1 16 -1One console sends the message "15", the other console does not receive it, and there is no "Communication buffer overflow" error.