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
Team JARVIS has been working to set up the DUST environment for testing and is happy to report that we've got all commands to work.
After debugging, it appears that line 277 in server.c (handling the command 167 for sending lidar) will always fail the backend->running_pr_sim > 0 check. From my understanding, running_pr_sim is -1 when not running, and set to 0 when it is running.
After we changed the check to backend->running_pr_sim >= 0, we successfully received lidar data as expected.
The text was updated successfully, but these errors were encountered:
Team JARVIS has been working to set up the DUST environment for testing and is happy to report that we've got all commands to work.
After debugging, it appears that line 277 in server.c (handling the command 167 for sending lidar) will always fail the
backend->running_pr_sim > 0
check. From my understanding,running_pr_sim
is-1
when not running, and set to0
when it is running.After we changed the check to
backend->running_pr_sim >= 0
, we successfully received lidar data as expected.The text was updated successfully, but these errors were encountered: