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
In the preprocess callback of SkipperStateMachine, we first deserialize the ByteBuffer to command to see what types of command it is then pass ByteBuffer to preprocess of module. We should pass command directly because normally we'll deserialize the bytebuffer again in preprocess of module.
The text was updated successfully, but these errors were encountered:
Currently the
preprocess
callback for SkipperModule is defined like this :In the preprocess callback of SkipperStateMachine, we first deserialize the ByteBuffer to command to see what types of command it is then pass ByteBuffer to preprocess of module. We should pass command directly because normally we'll deserialize the bytebuffer again in preprocess of module.
The text was updated successfully, but these errors were encountered: