Glideslope on Beechcraft B58 - Bendix/King KCS 55A HSI

Discuss suspected bugs with other users and Sim Innovations Staff

Moderators: russ, Ralph

Message
Author
User avatar
Ralph
Posts: 7933
Joined: Tue Oct 27, 2015 7:02 pm
Location: De Steeg
Contact:

Re: Glideslope on Beechcraft B58 - Bendix/King KCS 55A HSI

#11 Post by Ralph »

A lot of FS2020 variables do not work, or they show different behavior with different aircraft. I'm afraid that it'll always be a struggle with FS2020, until they really get things fixed, but I don't think they bother too much.

flyingmusician
Posts: 9
Joined: Sat Apr 18, 2020 9:37 pm

Re: Glideslope on Beechcraft B58 - Bendix/King KCS 55A HSI

#12 Post by flyingmusician »

ericrolfe wrote: Sat Dec 05, 2020 5:25 am A longshot, but try changing the code at line 91 from:

Code: Select all

glideslope = fif(gs_flag, 0, 1)
to

Code: Select all

glideslope = fif(glide, 0, 1)
So I finally had a chance to come back to this...work got in the way. When I went to look at the online version of this instrument it was already like this:

Code: Select all

glideslope = fif(glide, 1, 0)


Maybe the author made part of both changes you've suggested, however it still wasn't working. So I've now changed it to:

Code: Select all

glideslope = fif(glide, 0, 1)
IT WORKS!

Eric, I want to thank you for time time you've spent looking over the code and making suggestions.

BIll

Post Reply