- Dec 08, 2018
-
-
Matthias Grob authored
-
- Nov 29, 2018
-
-
Daniel Agar authored
-
- Nov 28, 2018
-
-
Paul Riseborough authored
-
- Nov 25, 2018
-
-
Daniel Agar authored
-
- Nov 19, 2018
-
-
David Sidrane authored
-
- 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 22, 2018
-
-
CarlOlsson authored
-
- Aug 30, 2018
-
-
Julian Oes authored
To my knowledge this hil transition function is not used anymore, however, it makes sending the DO_SET_MODE command unnecessarily complex. In my opinion the DO_SET_MODE command should only change the mode but not other things like arming (already removed) and HITL state (this commit). Often times, I was seeing the error message "Set SYS_HITL to 1 and reboot to enable HITL." when using QGC with a vehicle in HITL. HITL is set via parameter which then has an impact in the startup script where the CLI argument `-hil` is added to some of the commands that require it (like commander as well).
-
Julian Oes authored
This flag does not seem to be used anywhere.
-
Matthias Grob authored
after review comment request from @dagar. Thanks!
-
Matthias Grob authored
such that fractions of a second are configurable
-
- Aug 29, 2018
-
-
Daniel Agar authored
- #10359
-
- Aug 28, 2018
-
-
bresch authored
Failure Detector - use bitmask field instead of boolean in vehicle_status msg (failure_detector_status) and instead of struct in class
-
bresch authored
-
bresch authored
Failure Detector - move "force_failsafe" flag inside circuit_breaker protection; remove PX4_WARN and send mavlink msg only once
-
bresch authored
-
bresch authored
- use pragma once guard in FailureDetector.hpp - send Commander parent to ModuleParams and remove update_params() method - simplify attitude checks - FailureDetector::get_status() (previously named "get") is now a constant method that returns a constant reference
-
bresch authored
-
bresch authored
FailureDetector - New class, first working simple implementation. Outputs PX4_ERR messages if roll or pitch is exceeded.
-
- Aug 21, 2018
-
-
Daniel Agar authored
-
- Aug 08, 2018
- Aug 04, 2018
-
-
mcsauder authored
-
- Aug 03, 2018
-
-
Daniel Agar authored
-
Daniel Agar authored
-
- Jul 24, 2018
-
-
MaEtUgR authored
-
- Jul 22, 2018
-
-
Daniel Agar authored
-
- Jul 01, 2018
-
-
Daniel Agar authored
-
Daniel Agar authored
-
- Jun 27, 2018
-
-
Beat Küng authored
It's now the same way as in the ARM logic further down.
-
Beat Küng authored
A reason for using switch arming in the first place is that you cannot accidentally disarm in-air with the sticks during acrobatic flights. It also adds a low-throttle arming requirement for switch arming.
-
Beat Küng authored
This changes the arming logic such that the preflight checks don't need to be satisfied if arming happens < 5 seconds after the last disarming. This allows to recover from accidental in-air disarming.
-
Beat Küng authored
- this matches the logic in arming_state_transition() - if Commander::preflight_check was run in armed state and the checks failed, disarming was not possible anymore (because disarming checks for condition_system_sensors_initialized). That is currently not the case, but the existing logic is way too fragile. Alternative solution: check if armed in Preflight::preflightCheck, and only transition to false if disarmed (but also respect the re-arming grace period).
-
- Jun 12, 2018
-
-
Daniel Agar authored
-
- Jun 11, 2018
-
-
Daniel Agar authored
-
- Jun 09, 2018
-
-
Paul Riseborough authored
-
Paul Riseborough authored
-
- Jun 06, 2018
-
-
Philipp Oettershagen authored
Subsystem_info status flags & checks: Moved the set_health_flags helper functions out of the /lib/ folder and into the module/commander folder because they are actually only needed there
-
Philipp Oettershagen authored
Subsystem_info status flags & checks: Separate the functionality to a) set the health flags inside commander and b) to publish them from external modules
-
Philipp Oettershagen authored
Subsystem_info status flags & checks: 1) Set health flags in commander directly instead of publishing via uORB 2) move publish_subsystem_info into lib/ folder"
-