-
-
Notifications
You must be signed in to change notification settings - Fork 1.1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
157db97
commit 8f22271
Showing
13 changed files
with
397 additions
and
138 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
57 changes: 57 additions & 0 deletions
57
...ems/instruments/src/MsfsAvionicsCommon/EcamMessages/AbnormalSensed/secondary-failures.tsx
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,57 @@ | ||
// Copyright (c) 2024 FlyByWire Simulations | ||
// SPDX-License-Identifier: GPL-3.0 | ||
|
||
import { AbnormalProcedure } from 'instruments/src/MsfsAvionicsCommon/EcamMessages'; | ||
|
||
// Convention for IDs: | ||
// First two digits: ATA chapter | ||
// Third digit: Sub chapter, if needed | ||
// Fourth digit: | ||
// 0 for MEMOs, | ||
// 1 for normal checklists, | ||
// 2 for infos, | ||
// 3 for INOP SYS, | ||
// 4 for limitations, | ||
// 7 for deferred procedures, | ||
// 8 for ABN sensed procedures, | ||
// 9 for ABN non-sensed procedures | ||
|
||
export const EcamAbnormalSecondaryFailures: { [n: number]: AbnormalProcedure } = { | ||
999800001: { | ||
title: '\x1b<4m*F/CTL', | ||
sensed: true, | ||
items: [], | ||
}, | ||
999800002: { | ||
title: '\x1b<4m*FUEL', | ||
sensed: true, | ||
items: [], | ||
}, | ||
999800003: { | ||
title: '\x1b<4m*WHEEL', | ||
sensed: true, | ||
items: [], | ||
}, | ||
999800004: { | ||
// AC | ||
title: '\x1b<4m*ELEC', | ||
sensed: true, | ||
items: [], | ||
}, | ||
999800005: { | ||
// DC | ||
title: '\x1b<4m*ELEC', | ||
sensed: true, | ||
items: [], | ||
}, | ||
999800006: { | ||
title: '\x1b<4m*BLEED', | ||
sensed: true, | ||
items: [], | ||
}, | ||
999800007: { | ||
title: '\x1b<4m*HYD', | ||
sensed: true, | ||
items: [], | ||
}, | ||
}; |
Oops, something went wrong.