Getting started questions: ask anything here #23
-
|
If you are trying to get FusionCore running and hit a wall, ask here rather than opening an issue. Issues are for confirmed bugs: questions, config help, and "why is my odom drifting" belong here. Include in your question:
Common things to check first:
I check discussions daily and respond within 24 hours. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 2 replies
-
AMCL Localization supportHi, this repo has promising advantages over the regular robot localization package. As stated in the docu, you are directly publishing the tf between map and base_link, and it says to disable the amcl node altogether. Is there a recommended approach on how one can still leverage amcl? Thank you in advance! |
Beta Was this translation helpful? Give feedback.
Hey @sebatztian.... good news, AMCL is fully compatible with FusionCore.
There was a misleading sentence in the migration guide that said AMCL "will conflict with the TF tree".... that was wrong without qualification and I just fixed it. FusionCore publishes
odom → base_link. AMCL publishesmap → odom. These are different TF edges and do not conflict at all.Your setup should look like this:
The only thing to check: make sure nothing else is also publishing
odom → base_linkalongside FusionCore. If you were previously usingrobot_localizationorros2_controlwithenable_odom_tf: true, disable those. FusionC…