You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
publicstaticfinalintsimx_error_timeout_flag = 2; /* command reply not received in time for simx_opmode_oneshot_wait operation mode */
737
+
publicstaticfinalintsimx_error_timeout_flag = 2; /* command reply not received in time for simx_opmode_blocking operation mode */
737
738
publicstaticfinalintsimx_error_illegal_opmode_flag = 4; /* command doesn't support the specified operation mode */
738
739
publicstaticfinalintsimx_error_remote_error_flag = 8; /* command caused an error on the server side */
739
740
publicstaticfinalintsimx_error_split_progress_flag = 16; /* previous similar command not yet fully processed (applies to simx_opmode_oneshot_split operation modes) */
@@ -743,6 +744,7 @@ public class remoteApi
743
744
744
745
/* Regular operation modes */
745
746
publicstaticfinalintsimx_opmode_oneshot = 0; /* sends command as one chunk. Reply will also come as one chunk. Doesn't wait for the reply. */
747
+
publicstaticfinalintsimx_opmode_blocking = 65536; /* sends command as one chunk. Reply will also come as one chunk. Waits for the reply (_REPLY_WAIT_TIMEOUT_IN_MS is the timeout). */
746
748
publicstaticfinalintsimx_opmode_oneshot_wait = 65536; /* sends command as one chunk. Reply will also come as one chunk. Waits for the reply (_REPLY_WAIT_TIMEOUT_IN_MS is the timeout). */
0 commit comments