-
Hi, But this will cause the plane to fly to the desired point and then the velocity becomes zero and the trajectory is not smooth. Is there any way to solve this problem? Or is there any more suitable way to reach my initial purpose, like using Looking forward to and appreciate your answers. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
The idea of Should the commander continue to maintain the same velocity forever? Or should there be some kind of timeout period? When maintaining velocity after a So far, nobody has needed this feature enough to try to resolve these design decisions and do the implementation work. You can certainly achieve your goal with low-level streaming modes like BTW, this question is not Crazyswarm-specific. You may get more answers on the Bitcraze discussions. |
Beta Was this translation helpful? Give feedback.
The idea of
goTo
with nonzero final velocity raises some questions about how the commander should behave after the trajectory has ended.Should the commander continue to maintain the same velocity forever? Or should there be some kind of timeout period?
When maintaining velocity after a
goTo
trajectory has ended, should the controller still attempt to track the positionfinal_velocity * time_since_trajectory_ended
? Or should we switch to a velocity-only controller?So far, nobody has needed this feature enough to try to resolve these design decisions and do the implementation work.
You can certainly achieve your goal with low-level streaming modes like
cmdFullState
,cmdVelocityWorld
, andc…