- Nov 06, 2018
-
-
bresch authored
-
bresch authored
- move the update after the integration: a new computed jerk has an impact at the next epoch only - add jerk reduction in case of too large integration time: when a jerk of "min_jerk" during dt is too much - add jerk reduction if the integration time is larger than the predicted one and that integrating that jerk would lead to an acceleration overshoot - rename some variables
-
bresch authored
-
bresch authored
-
Beat Küng authored
Derivation by Mathieu Bresciani: https://github.com/Auterion/trajectory_generator
-
James Goppert authored
* Add attitude sub to mc_pos_control for yaw usage. * Initialize pos control _states struct. * Remove unnecessary init for struct in mc pos ctrl. * Only use att topic for yaw setting in FlightTask.
-
Roman authored
Signed-off-by:
Roman <bapstroman@gmail.com>
-
- Oct 27, 2018
-
-
Mara Bos authored
Fixes these invalid format strings: - A `%d` for a pointer (replaced it by `%p`) - A 0x%08x (and a 0x%0x8!) for a pointer (replaced by %p) - 2 cases of `%d` for a `ssize_t` (replaced it by `%zi`) - 1 case of a %u for an `int` (replaced by %i) - 3 cases of %d for a `long` (replaced by %ld) - 19 cases of `%d`, `%i`, `%u` or `%lu` for a `size_t` (replaced it by `%zu`) - An unused formatting argument (removed it) - A missing `%d` (added it) - A missing `%s` (added it) - 2 cases of `%llu` for a `uint64_t` (replaced it by `"%" PRIu64`) - 6 cases of giving a string directly as format string (replaced it by `("%s", string)`) - 2 cases of %*-s, which should probably have been %-*s. (Looks like NuttX accepts (the invalid) %*-s, but other platforms don't.) - A %04x for a `uint32_t` (replaced by "%04" PRIx32)
-
- Oct 16, 2018
-
-
Dennis Mannhart authored
-
Dennis Mannhart authored
-
Dennis Mannhart authored
-
Dennis Mannhart authored
mc_pos_control_main smooth takeoff: enable position-xy/yaw control once above 0.5m from takeoff reference
-
Dennis Mannhart authored
-
Dennis Mannhart authored
just keep thrust vector pointing upward
-
Dennis Mannhart authored
smooth-takeoff. This is only required if someone writes a FlightTask where both position and velocity setpoints are finite
-
- Oct 10, 2018
-
-
Dennis Mannhart authored
vehicle state.
-
Dennis Mannhart authored
refactor use_obstacle_avoidance method
-
- Oct 02, 2018
-
-
Martina authored
desired such that it's possible to use it in manual modes
-
- Sep 28, 2018
- Sep 19, 2018
-
-
Roman authored
- in auto mode we always run weather vane - in manual model we just use it in position control mode Signed-off-by:
Roman <bapstroman@gmail.com>
-
Roman authored
Signed-off-by:
Roman <bapstroman@gmail.com>
-
Roman authored
Signed-off-by:
Roman <bapstroman@gmail.com>
-
Roman authored
-
Roman authored
Signed-off-by:
Roman <bapstroman@gmail.com>
-
Roman authored
Signed-off-by:
Roman <bapstroman@gmail.com>
-
Roman authored
Signed-off-by:
Roman <bapstroman@gmail.com>
-
Roman authored
Signed-off-by:
Roman <bapstroman@gmail.com>
-
- Aug 31, 2018
-
-
Martina Rivizzigno authored
- The first waypoint contains the vehicle current position and the desired velocity setpoint
-
Daniel Agar authored
-
- Aug 30, 2018
-
-
Daniel Agar authored
- fixes #10345
-
Dennis Mannhart authored
-
Dennis Mannhart authored
-
Dennis Mannhart authored
the Flighttask fail. A failure of the Flighttask can occur if the demanded Flighttask does not have the required data.
-
Dennis Mannhart authored
-
- Aug 28, 2018
-
-
Dennis Mannhart authored
-
- Aug 20, 2018
-
-
Martina Rivizzigno authored
-
- Aug 16, 2018
-
-
ChristophTobler authored
without this tasks will be switched all the time and the drone starts driftig
-