FlyByWire A320 Collection for MSFS 2020 Version 2

Working on a instrument project or just finished a project? Show it to others!

Moderators: russ, Ralph

Message
Author
catflyer38
Posts: 75
Joined: Sat May 11, 2019 1:13 pm
Location: EDDM

Re: FlyByWire A320 Collection for MSFS 2020 Version 2

#11 Post by catflyer38 »

Hi Samhaho, thanks for the info, we where using only using the development version for our testing.

If you made some changes for the experimental version, please share them so we can implement them in case they move into the development /stable version in the future.

Regards Alexander

Samhaho
Posts: 6
Joined: Fri Jan 07, 2022 10:24 am

Re: FlyByWire A320 Collection for MSFS 2020 Version 2

#12 Post by Samhaho »

Hi Alexander,

As discussed in the previous post, here is the AutoBrake instrument modified. In summary I run the FBW experimental and the AutoBrake instrument did not work (pushing the Autobrake buttons has no effect). But not sure if this was because of the FBW version or because of something else. I noticed that the problem came from the variable L:A32NX_AUTOBRAKES_ARMED_MODE when it is written. This should not have been the case since this variable exists in experimental. To work around the issue I have replaced this variable by the three variables:
L:A32NX_OVHD_AUTOBRK_LOW_ON_IS_PRESSED
L:A32NX_OVHD_AUTOBRK_MED_ON_IS_PRESSED
L:A32NX_OVHD_AUTOBRK_MAX_ON_IS_PRESSED
Those variables need to be reset on release so I have made the modification to do so.

The changes in the code attempted to modify as little as possible the original code so it is not optimized (see the if-then-else).

The instrument is now working for me (with the experimental).

Regards,

Sam
Airbus A320 FlyByWire - AutoBrake Samer.siff
(325.77 KiB) Downloaded 237 times

catflyer38
Posts: 75
Joined: Sat May 11, 2019 1:13 pm
Location: EDDM

Re: FlyByWire A320 Collection for MSFS 2020 Version 2

#13 Post by catflyer38 »

Hello Samhaho, thank you very much for sharing your changes.

Autobreak is working fine in my current Development version, but we will include your modifications as soon the development version requires these changes.

Regards Alexander

catflyer38
Posts: 75
Joined: Sat May 11, 2019 1:13 pm
Location: EDDM

Re: FlyByWire A320 Collection for MSFS 2020 Version 2

#14 Post by catflyer38 »

Hi Sam thanks again for your information, the variable changes in the Experimental version for the Autobrake buttons are now also implemented in the Development version.

I updated Yves original version with your changes.

Regards
Alexander

Captain_Tick
Posts: 3
Joined: Sun May 22, 2022 4:40 am

Re: FlyByWire A320 Collection for MSFS 2020 Version 2

#15 Post by Captain_Tick »

You think you guys could add the code to switch the variables to work with the new fenix? I have created a mcdu with simstrumentation and would be willing to share. Be great if you could add the fenix to your existing above panels. Thanks so much.@ylevesque

Maybe like a user option to run fenix or duplicate the panel and exchange the code with variables to work with fenix? However you need to make it easier on you. Thanks for all your work.

ylevesque
Posts: 69
Joined: Wed Jan 09, 2019 6:49 pm

Re: FlyByWire A320 Collection for MSFS 2020 Version 2

#16 Post by ylevesque »

We don’t plan to convert instruments for the fenix. This is not an easy task. All variables are specific to the FBW A320. Some logic may also be different.
If somebody wants to do it we can offer some support. I

Yves and Alexander

Captain_Tick
Posts: 3
Joined: Sun May 22, 2022 4:40 am

Re: FlyByWire A320 Collection for MSFS 2020 Version 2

#17 Post by Captain_Tick »

@ylevesque No problem. Would you care if I use your graphics. I am with Simstrumentation. I will make sure it is noted that the graphic work was provided thanks to you and Alexander. Thank you.

catflyer38
Posts: 75
Joined: Sat May 11, 2019 1:13 pm
Location: EDDM

Re: FlyByWire A320 Collection for MSFS 2020 Version 2

#18 Post by catflyer38 »

Hi Captain_Tick, i was not aware about Simstrumentation, its a great idea to work together on developing Air Manager instruments.
As long the graphics are not commercially used its fine with me to use the graphics included in our Air Manager panels.

It would be good to setup a call to talk about your development plans.

Regards Alexander

Captain_Tick
Posts: 3
Joined: Sun May 22, 2022 4:40 am

Re: FlyByWire A320 Collection for MSFS 2020 Version 2

#19 Post by Captain_Tick »

Hey Alexander,
Yes would be great to catch up and chat about development. If you want to join our discord this is where we talk about projects and communicate with a lot of others about instruments and such for Air Manager. We are NOT selling or commercially using these. Just 3 of us guys who share the passion for Air Manager and what it can do. So we just share our stuff to the community free.

https://discord.gg/Qg8wh79F

@catflyer38

User avatar
Puukka
Posts: 87
Joined: Sat Oct 02, 2021 1:25 pm
Location: Weißenkirchen in der Wachau

Re: FlyByWire A320 Collection for MSFS 2020 Version 2

#20 Post by Puukka »

Thanks a lot for the autobrake repair!

You now also can add the Experimental Version´s Terrain Radar on ND.
Here´s my version: (my instrument is too big for attaching here)

Regards, Herbert

-- 1.6 Terrain:
--=============================================================================
function terr_stat_cb(terrstat)
if terrstat == 0 then
terr_status = 0
visible(terr_on_nd_on_img , false)
else
terr_status = 1
visible(terr_on_nd_on_img , true)
end
end
fs2020_variable_subscribe("L:A32NX_EFIS_TERR_L_ACTIVE", "number", terr_stat_cb )

function setterr_p_cb()
if terr_status == 0 then
fs2020_variable_write("L:A32NX_EFIS_TERR_L_ACTIVE", "number",1 )
else
fs2020_variable_write("L:A32NX_EFIS_TERR_L_ACTIVE", "number", 0)
end

end

function setterr_r_cb()
visible(terr_on_nd_on_img,false)

end

setterr_but = button_add(nil,nil, 771, 306, 47, 47,setterr_p_cb,setterr_r_cb)
Herbert Puukka

MSFS - CRJ, X-Plane - Citation X, Air Manager, FSHud, Navigraph

Post Reply