Skip to content
Snippets Groups Projects
  1. Mar 25, 2019
  2. Dec 22, 2018
  3. Sep 18, 2018
  4. Aug 06, 2018
    • Beat Küng's avatar
      replay: fix potential invalid memory access · e989c802
      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.
      e989c802
  5. Jul 01, 2018
  6. May 09, 2018
  7. Apr 30, 2018
  8. Apr 12, 2018
  9. Mar 29, 2018
    • Beat Küng's avatar
      uorb: fix constness for _uorb_topics_list · 0038a5e7
      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.
      0038a5e7
  10. Sep 16, 2017
  11. Sep 07, 2017
  12. Jul 16, 2017
  13. Jul 14, 2017
  14. Jul 07, 2017
  15. Apr 06, 2017
  16. Mar 29, 2017
  17. Mar 04, 2017
  18. Jan 29, 2017
  19. Oct 19, 2016
  20. Jul 07, 2016
    • Beat Küng's avatar
      168c7442
    • Beat Küng's avatar
      replay: add 'tryapplyparams' command · 6e447608
      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.
      6e447608
    • Beat Küng's avatar
      replay: add replay module, build for sitl_default, but do not load on startup · 28ad6066
      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)
      28ad6066
Loading