Changeset 518:e17dbb8daa6a
- Timestamp:
- 06/04/13 15:44:31 (11 years ago)
- Branch:
- default
- Phase:
- public
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/mlx/checks.py
r480 r518 1122 1122 [const.STAGE_CRUISE, const.STAGE_DESCENT, 1123 1123 const.STAGE_GOAROUND] or \ 1124 (flight.stage==const.STAGE_LANDING 1124 (flight.stage==const.STAGE_LANDING and 1125 1125 state.groundSpeed>50.0) or \ 1126 1126 ((not state.autoXPDR or \ 1127 1127 (self._liftOffTime is not None and 1128 1128 state.timestamp > (self._liftOffTime+8))) and \ 1129 flight.stage in1130 [const.STAGE_TAKEOFF, const.STAGE_RTO, const.STAGE_CLIMB])1129 ((flight.stage==const.STAGE_TAKEOFF and 1130 not state.onTheGround) or flight.stage==const.STAGE_CLIMB)) 1131 1131 ) 1132 1132 )
Note:
See TracChangeset
for help on using the changeset viewer.