Changeset 341:c18840deae77
- Timestamp:
- 11/17/12 14:16:56 (12 years ago)
- Branch:
- default
- Phase:
- public
- Tags:
- version_0.11
- Location:
- src/mlx
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
src/mlx/checks.py
r340 r341 1190 1190 return flight.stage!=const.STAGE_BOARDING and \ 1191 1191 flight.stage!=const.STAGE_PARKING and \ 1192 not state.navLightsOn1192 state.navLightsOn is False 1193 1193 1194 1194 def logFault(self, flight, aircraft, logger, oldState, state): -
src/mlx/fs.py
r340 r341 212 212 activated on any of the engines. The number of items equals to the number 213 213 of engines with a reverser. 214 - navLightsOn: a boolean indicating if the navigation lights are on 214 - navLightsOn: a boolean indicating if the navigation lights are on. If 215 the detection of the state of the landing lights is unreliable, and should 216 not be considered, this is set to None. 215 217 - antiCollisionLightsOn: a boolean indicating if the anti-collision lights are on 216 218 - strobeLightsOn: a boolean indicating if the strobe lights are on -
src/mlx/fsuipc.py
r340 r341 1789 1789 timestamp, 1790 1790 data) 1791 state.navLightsOn = None 1791 1792 state.landingLightsOn = None 1792 1793 state.nav2_manual = aircraft.flight.stage!=const.STAGE_CRUISE
Note:
See TracChangeset
for help on using the changeset viewer.