Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(nd): wind and speed display update rate for more frequent updates #9829

Open
wants to merge 3 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .github/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -152,6 +152,7 @@
1. [FMS] Fix approach ident only showing on ND when approach is being flown - @BravoMike99 (bruno_pt99)
1. [A380X/FWS] Add support for deferred procedures, abnormal (non-)sensed procedures - @flogross89 (floridude)
1. [A380X/FWS] Enable FWS failures (FWS 1/2, FWS 1+2, ECP, Audio Function) - @flogross89 (floridude)
1. [ND] Fix wind and speed display update rate for more frequent updates - @bulenteroglu (senolitam)

## 0.12.0

Expand Down
4 changes: 2 additions & 2 deletions fbw-common/src/systems/instruments/src/ND/ND.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -532,7 +532,7 @@ class SpeedIndicator extends DisplayComponent<{ bus: EventBus }> {

sub
.on('groundSpeed')
.atFrequency(2)
.atFrequency(25)
.handle((value) => this.groundSpeedRegister.setWord(value));

this.groundSpeedRegister.sub((data) => {
Expand All @@ -543,7 +543,7 @@ class SpeedIndicator extends DisplayComponent<{ bus: EventBus }> {

sub
.on('trueAirSpeed')
.atFrequency(2)
.atFrequency(8)
.handle((value) => this.trueAirSpeedRegister.setWord(value));

this.trueAirSpeedRegister.sub((data) => {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ export class WindIndicator extends DisplayComponent<{ bus: EventBus }> {

sub
.on('windDirection')
.atFrequency(2)
.atFrequency(10)
.handle((value) => {
this.windDirectionWord.setWord(value);

Expand All @@ -43,7 +43,7 @@ export class WindIndicator extends DisplayComponent<{ bus: EventBus }> {

sub
.on('windSpeed')
.atFrequency(2)
.atFrequency(10)
.handle((value) => {
this.windSpeedWord.setWord(value);

Expand All @@ -54,7 +54,7 @@ export class WindIndicator extends DisplayComponent<{ bus: EventBus }> {

sub
.on('trueHeadingRaw')
.atFrequency(2)
.atFrequency(25)
.handle((value) => {
this.planeHeadingWord.setWord(value);
});
Expand Down