Jump to content
Sign in to follow this  
Tezbedz

Fenix A320 V2 and MCP

Recommended Posts

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?

  • Like 1

Share this post


Link to post
Share on other sites

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
 

Share this post


Link to post
Share on other sites
Posted (edited)

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 by Wolf0
  • Like 1
  • Upvote 1

Share this post


Link to post
Share on other sites

Thanks very much.that has sorted it, in fact better than the previous version

Share this post


Link to post
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
Sign in to follow this  

  • Tom Allensworth,
    Founder of AVSIM Online


  • Flight Simulation's Premier Resource!

    AVSIM is a free service to the flight simulation community. AVSIM is staffed completely by volunteers and all funds donated to AVSIM go directly back to supporting the community. Your donation here helps to pay our bandwidth costs, emergency funding, and other general costs that crop up from time to time. Thank you for your support!

    Click here for more information and to see all donations year to date.
×
×
  • Create New...