You need to sign in or sign up before continuing.
- Mar 25, 2019
-
-
CarlOlsson authored
Signed-off-by:
CarlOlsson <carlolsson.co@gmail.com>
-
- Dec 22, 2018
-
-
Julian Oes authored
This is a step towards isolating time from the system.
-
- Sep 18, 2018
- Aug 06, 2018
-
-
Beat Küng authored
_subscriptions is a vector that is resized when needed. However there could still be references to elements in the vector when the resize happens. These references then become invalid. Using a vector of pointers fixes that.
-
- Jul 01, 2018
-
-
Daniel Agar authored
-
- May 09, 2018
-
-
Beat Küng authored
-
- Apr 30, 2018
-
-
Daniel Agar authored
- px4_add_module now requires MAIN - px4_add_library doesn't automatically link
-
- Apr 12, 2018
-
-
Daniel Agar authored
-
Daniel Agar authored
-
- Mar 29, 2018
-
-
Beat Küng authored
_uorb_topics_list was marked as 'const char *' array, which means the data of the array was not actually const and thus landed in the data section (so in RAM instead of FLASH). The size of the array is 436 bytes.
-
- Sep 16, 2017
-
-
Daniel Agar authored
-
- Sep 07, 2017
-
-
Daniel Agar authored
-
- Jul 16, 2017
- Jul 14, 2017
-
-
Beat Küng authored
-
- Jul 07, 2017
-
-
Beat Küng authored
-
- Apr 06, 2017
-
-
Beat Küng authored
This got introduced the the addition of the perf counter to the log. Fixes the error: unknown log message type 73
-
- Mar 29, 2017
-
-
Beat Küng authored
Just to make sure that it will never be used on NuttX. This is not an architectural limitation, just a memory optimization, since we call clearenv() on NuttX.
-
- Mar 04, 2017
-
-
Beat Küng authored
-
Beat Küng authored
The error counter is an indicator that the logger missed samples or dropped due to a too small write buffer.
-
Beat Küng authored
-
Beat Küng authored
in preparation to the updated ekf2 replay
-
Beat Küng authored
-
Beat Küng authored
-
Beat Küng authored
-
Beat Küng authored
This could happen and then the sleep duration would wrap and be huge.
-
Beat Küng authored
-
Beat Küng authored
-
- Jan 29, 2017
-
-
Daniel Agar authored
-
- Oct 19, 2016
-
-
Beat Küng authored
-
- Jul 07, 2016
-
-
Beat Küng authored
-
Beat Küng authored
This only applies parameters from the log file and user-supplied overrides. It is intended to be called as one of the first startup commands (after param load), so that during startup, all applications find the parameters from the replayed system. Note that this is an optional command and 'replay start' will again load and apply the parameters in any case.
-
Beat Küng authored
This adds a new module that does: - read an parse an ULog file, given via ENV variable 'replay' - apply all parameters from the log file - read and apply user-defined override parameters from a file - publish all messages in 'real-time' from the log file and add a constant offset to the timestamp to match the system time. - apply changed parameters in the log (which are not overridden)
-