paparazzi-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[paparazzi-commits] [paparazzi/paparazzi] be2ef5: [flight plan] make 'un


From: GitHub
Subject: [paparazzi-commits] [paparazzi/paparazzi] be2ef5: [flight plan] make 'until' attribute consistent
Date: Fri, 16 Dec 2016 07:38:57 -0800

  Branch: refs/heads/fp_consistent_until
  Home:   https://github.com/paparazzi/paparazzi
  Commit: be2ef5f8e0ef4f03bd57f5371430f7ec36ac76b1
      
https://github.com/paparazzi/paparazzi/commit/be2ef5f8e0ef4f03bd57f5371430f7ec36ac76b1
  Author: Felix Ruess <address@hidden>
  Date:   2016-12-16 (Fri, 16 Dec 2016)

  Changed paths:
    M sw/tools/generators/gen_flight_plan.ml

  Log Message:
  -----------
  [flight plan] make 'until' attribute consistent

This makes the 'until' attribute of `heading`, `attitude` and `manual` 
consistent with the rest:
So until will always behave like:
- do something
- check if again

E.g. `<attitude ... until="some_condition"/>` will now create
```
NavAttitude(...);
if (some_condition) NextStageAndBreak();
break;
```

Fixes #1903



reply via email to

[Prev in Thread] Current Thread [Next in Thread]