Fix/dealing with continuous joints#131
Open
clementPene wants to merge 21 commits intoloco-3d:mainfrom
Open
Conversation
02a12af to
0a1598d
Compare
…ration (pinocchio) and jointPosition (hardware (PD control mostly))
…nocchio (cf get_joint_configuration_nq)and joint space configuration used by hardware/ROS (cf get_joint_position_nq)
0a1598d to
d0a74b8
Compare
MaximilienNaveau
requested changes
Jan 15, 2026
Collaborator
MaximilienNaveau
left a comment
There was a problem hiding this comment.
Thank you very much for the work!
In this work package one needs to be extra carefull about system calls like malloc which preempt the CPU. These call are not real-time safe.
Hence you should verify that you do not create unnecessary variables on the fly.
I will merge this PR once all comment have been resolved.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
I ran into a problem when using LFC with Tiago. I wanted to control the wheels but it was a "continuous joint".
Problem was that in case of a continuous joint, Pinocchio will add 2 to nq (cos, sin).
So the modifications are mainly about :