Skip to content
Snippets Groups Projects
  1. Nov 22, 2018
    • Roman Bapst's avatar
      VTOL rate control architecture improvements (#10819) · 90bfdb6f
      Roman Bapst authored
      * attitude and rate setpoint message: use 3D array for thrust demand
      * FixedWingAttitudeControl: rework airspeed scaling
        * move airspeed and scaling calculation into separate method
        * if vtol in hover and airspeed disabled use minimum airspeed instead of trim airspeed
      90bfdb6f
  2. Nov 06, 2018
  3. Oct 27, 2018
    • Mara Bos's avatar
      Fix many format strings. · 10c20b38
      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)
      10c20b38
  4. Sep 27, 2018
  5. Aug 31, 2018
  6. Aug 09, 2018
  7. Jul 22, 2018
  8. Jul 02, 2018
  9. Jul 01, 2018
  10. Jun 12, 2018
  11. May 23, 2018
  12. May 18, 2018
  13. May 09, 2018
  14. May 04, 2018
  15. Apr 30, 2018
  16. Mar 27, 2018
  17. Mar 21, 2018
  18. Jan 27, 2018
  19. Jan 14, 2018
  20. Nov 26, 2017
  21. Oct 25, 2017
  22. Sep 21, 2017
  23. Sep 16, 2017
  24. Sep 13, 2017
  25. Aug 30, 2017
  26. Aug 20, 2017
  27. Aug 07, 2017
  28. Aug 01, 2017
  29. Jul 16, 2017
  30. Jun 26, 2017
Loading