-
Notifications
You must be signed in to change notification settings - Fork 0
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
169 all commands are not sent at all time #180
Conversation
Ready for review! |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Test pass
src/reachy2_sdk/orbita2d.py
Outdated
@@ -286,8 +290,8 @@ def _pop_command(self) -> Orbita2dCommand: | |||
command = Orbita2dCommand(**values) | |||
|
|||
self._register_needing_sync.clear() | |||
for obj in list(self._joints.values()) + list(self._motors.values()): | |||
obj._register_needing_sync.clear() | |||
# for obj in list(self._joints.values()) + list(self._motors.values()): |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Remove dead code?
src/reachy2_sdk/orbita3d.py
Outdated
@@ -312,8 +316,8 @@ def _pop_command(self) -> Orbita3dCommand: | |||
command = Orbita3dCommand(**values) | |||
|
|||
self._register_needing_sync.clear() | |||
for obj in list(self._joints.values()) + list(self._motors.values()): | |||
obj._register_needing_sync.clear() | |||
# for obj in list(self._joints.values()) + list(self._motors.values()): |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
same
☂️ Python Coverage
Overall Coverage
New FilesNo new covered files... Modified Files
|
Use branch 87 on reachy2-sdk-api and branch 86 of reachy2_sdk_server.
Joints are sent in 2 messages, but all commands are sent.
NOTE : modifications have to be done on server side. Please wait before review