Skip to content

Commit

Permalink
fix(a380x/fws): Improve AP&A/THR disco logic; also process quick succ…
Browse files Browse the repository at this point in the history
…essions of AP instinctive disc. p/b presses (flybywiresim#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
  • Loading branch information
flogross89 authored Oct 22, 2024
1 parent 909ed7f commit 4471ff1
Show file tree
Hide file tree
Showing 5 changed files with 133 additions and 94 deletions.
2 changes: 1 addition & 1 deletion fbw-a380x/src/systems/systems-host/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ class SystemsHost extends BaseInstrument {

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

private readonly fwsCore = new FwsCore(1, this.bus, this);
private readonly fwsCore = new FwsCore(1, this.bus);

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

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -256,7 +256,7 @@ export class FwsAbnormalSensed {
this.moveUp();
}*/

if (this.fws.clCheckLeftPulseNode.read() || this.fws.clCheckRightPulseNode.read()) {
if (this.fws.clCheckPulseNode.read()) {
if (!this.showAbnormalSensed.get()) {
return;
}
Expand Down
Loading

0 comments on commit 4471ff1

Please sign in to comment.