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
For the sub to calculate its current pose, it needs to continually pull data from the gyroscope, accelerator, compass, etc. Currently the CommandDispatcher uses getLine() to receive commands from the JavaScript code. The getLine() function blocks the current thread until a full line of data is available for processing. Another thread or a non-blocking version of the CommandDispatcher's loop is needed.
Acceptance Criteria
Discuss options, and decided on solution.
Implement new loop structure.
The text was updated successfully, but these errors were encountered:
Summary
For the sub to calculate its current pose, it needs to continually pull data from the gyroscope, accelerator, compass, etc. Currently the CommandDispatcher uses getLine() to receive commands from the JavaScript code. The getLine() function blocks the current thread until a full line of data is available for processing. Another thread or a non-blocking version of the CommandDispatcher's loop is needed.
Acceptance Criteria
The text was updated successfully, but these errors were encountered: