Changeset 666:bb1cfa673969
- Timestamp:
- 08/17/15 16:23:05 (9 years ago)
- Branch:
- default
- Phase:
- public
- Location:
- src/mlx
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
src/mlx/checks.py
r661 r666 1444 1444 def isCondition(self, flight, aircraft, oldState, state): 1445 1445 """Check if the fault condition holds.""" 1446 return state.groundSpeed>80 and not state.pitotHeatOn1446 return state.groundSpeed>80 and state.pitotHeatOn is False 1447 1447 1448 1448 def logFault(self, flight, aircraft, logger, oldState, state): -
src/mlx/fs.py
r501 r666 227 227 the detection of the state of the landing lights is unreliable, and should 228 228 not be considered, this is set to None. 229 - pitotHeatOn: a boolean indicating if the pitot heat is on 229 - pitotHeatOn: a boolean indicating if the pitot heat is on. Maybe None, if 230 the pitot heat setting cannot be read 230 231 - parking: a boolean indicating if the parking brake is set 231 232 - gearControlDown: a boolean indicating if the gear control is set to down
Note:
See TracChangeset
for help on using the changeset viewer.