February 29, 20242 yr I appreciate there is no official Support, but, maybe someone can help. The VrInsight MCP worked about 75% with the old Fenix A320 and as such I have not had to adjustb anything. The V2 does not work at all, If I open Linda the only thing that will connect is MSFS Default. THe Fenix Module is there but it will not connect. Any Ideas what I could do?
March 3, 20242 yr I’ve really enjoyed using LINDA, but it looks like folks making modules have moved on. I think the payware Axis and Ohs is the alternative, but not 100% sure it works with VRInsight MCP. Not sure if it needs FSUIPC… Hopefully someone here will help with a new module. "I am the Master of the Fist!" -Akuma
March 3, 20242 yr Hello. I had the same issue. But I've took the initiative to look at the files and adjust them to the new version (I'm currently using the CFM version, adjust to the IAE using the same logic). On your LINDA folders there are two main folders: LINDA and LINDA-CFG. Enter LINDA->aircrafts->Fenix A320->ident.lua. Here change the contents to: «simfolder="FNX_320_CFM"». Everything should be back to normal. Additionally I've added a new function to use the tiller. This should go inside «user.lua»: function FNX320_Misc_Tiller_Pedal_Disconnect_on() Lvar = "L:S_FC_CAPT_TILLER_PEDAL_DISCONNECT" if ipc.readLvar(Lvar) ~= 1 then ipc.writeLvar(Lvar, 1) ipc.writeLvar(Lvar .. '_Anim', 1) DspShow('PDL_DSC','on') end end function FNX320_Misc_Tiller_Pedal_Disconnect_off() Lvar = "L:S_FC_CAPT_TILLER_PEDAL_DISCONNECT" if ipc.readLvar(Lvar) ~= 0 then ipc.writeLvar(Lvar, 0) ipc.writeLvar(Lvar .. '_Anim', 0) DspShow('PDL_DSC','off') end end function FNX320_Misc_Tiller_Pedal_Disconnect_toggle() Lvar = "L:S_FC_CAPT_TILLER_PEDAL_DISCONNECT" if ipc.readLvar(Lvar) < 1 then FNX320_Misc_Tiller_Pedal_Disconnect_on() else FNX320_Misc_Tiller_Pedal_Disconnect_off() end end Have fun! Edited March 3, 20242 yr by Wolf0
March 6, 20242 yr Author Thanks very much.that has sorted it, in fact better than the previous version
March 31, 20242 yr I took the liberty to create a repository for this module on Github so we have a central place to enhance and improve it: https://github.com/winternet-studio/linda-fenix-a320 Pull requests are welcome. Edited March 31, 20242 yr by meandme Regards, Allan Jensen
Archived
This topic is now archived and is closed to further replies.