[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[paparazzi-commits] [paparazzi/paparazzi] 6ffcc2: [flight plan] make 'un
From: |
GitHub |
Subject: |
[paparazzi-commits] [paparazzi/paparazzi] 6ffcc2: [flight plan] make 'until' attribute consistent (#... |
Date: |
Fri, 16 Dec 2016 07:57:23 -0800 |
Branch: refs/heads/master
Home: https://github.com/paparazzi/paparazzi
Commit: 6ffcc2c89ea73674d53de9a75807c98e54510384
https://github.com/paparazzi/paparazzi/commit/6ffcc2c89ea73674d53de9a75807c98e54510384
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 (#1970)
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
[Prev in Thread] |
Current Thread |
[Next in Thread] |
- [paparazzi-commits] [paparazzi/paparazzi] 6ffcc2: [flight plan] make 'until' attribute consistent (#...,
GitHub <=