Skip to content

Commit 593ef1a

Browse files
committed
fix(a380x/fws): Improve AP&A/THR disco logic; also process quick successions of AP instinctive disc. p/b presses (#9111)
* remove LegacyFuel debug messages * fix constructor call bug * change FWS input architecture: Buffer inputs, convert to pulses in following FWS cycle Improve AP + A/THR off logic * rename 1.8s to 1.9s (cherry picked from commit 4471ff1)
1 parent 89fefe9 commit 593ef1a

File tree

5 files changed

+133
-94
lines changed

5 files changed

+133
-94
lines changed

fbw-a380x/src/systems/systems-host/index.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ class SystemsHost extends BaseInstrument {
9292

9393
private readonly fuelssystemPublisher = new FuelSystemPublisher(this.bus);
9494

95-
private readonly fwsCore = new FwsCore(1, this.bus, this);
95+
private readonly fwsCore = new FwsCore(1, this.bus);
9696

9797
private readonly legacyFuel = new LegacyFuel(this.bus);
9898

fbw-a380x/src/systems/systems-host/systems/FlightWarningSystem/FwsAbnormalSensed.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -256,7 +256,7 @@ export class FwsAbnormalSensed {
256256
this.moveUp();
257257
}*/
258258

259-
if (this.fws.clCheckLeftPulseNode.read() || this.fws.clCheckRightPulseNode.read()) {
259+
if (this.fws.clCheckPulseNode.read()) {
260260
if (!this.showAbnormalSensed.get()) {
261261
return;
262262
}

0 commit comments

Comments
 (0)