Most of the commonly reported issues and questions are answered in the Frequently Asked Questions (FAQ) option under the Support menu of this website.
*** PLEASE NOTE ***
Your forum account is not the same as the account used in the shop. They are completely separate accounts.
Your forum account is not the same as the account used in the shop. They are completely separate accounts.
1st December: A new version of the GoFlight Interface Tool for MSFS is now available.
12th November: A new version of the GoFlight Interface Tool for X-Plane is now available.
6th June: A new version of Virtual Flight Sim Hardware is now available (huge update)
21st November: A new version of the GoFlight Interface Tool for FSX/FSXSE/P3D is now available.
How to set SPD & HDG window for FBW A320
Hello, I have assigned all functions to my MCPPro, but I'm looking for a satisfactory solution for the SPD and HDG MCP windows when they are in managed mode (dot and dashes at the FBW Airbus FCU). At the moment I have A32NX_AUTOPILOT_HEADING (or SPEED)_SELECTED assigned, but it is not what I'm looking for. May I have for example an if condition (if dot is active, goto dashes indication, else goto true indication and vice versa). Has anyone a solution for it?
Best regards Ralf
Best regards Ralf
Comments
Speed Dec:
A320_FCU_SHOW_SELECTED_SPEED = 1
Send AP_SPD_VAR_DEC with 0
Speed Inc:
A320_FCU_SHOW_SELECTED_SPEED = 1
Send AP_SPD_VAR_INC with 0
Hdg Dec:
A320_FCU_SHOW_SELECTED_HEADING = 1
Send HEADING_BUG_DEC with 0
Hdg Inc:
A320_FCU_SHOW_SELECTED_HEADING = 1
Send HEADING_BUG_INC with 0
Best wishes
Steve
: Start
Remark: *** AP SPEED ***
Switch (AUTOPILOT_MANAGED_SPEED_IN_MACH)
Case 0:
Switch (AUTOPILOT_SPEED_SLOT_INDEX)
Case 0:
AP_SPEED = -9999
Case 1:
AP_SPEED = AUTOPILOT_AIRSPEED_HOLD_VAR1
Case 2:
Switch (A320_FCU_SHOW_SELECTED_SPEED)
Case 0:
AP_SPEED = -9999
Case 1:
AP_SPEED = AUTOPILOT_AIRSPEED_HOLD_VAR1
EndSwitch
EndSwitch
Case 1:
Switch (AUTOPILOT_SPEED_SLOT_INDEX)
Case 0:
AP_SPEED = -9999
Case 1:
AP_SPEED = AUTOPILOT_MACH_HOLD_VAR1
Case 2:
Switch (A320_FCU_SHOW_SELECTED_SPEED)
Case 0:
AP_SPEED = -9999
Case 1:
AP_SPEED = AUTOPILOT_MACH_HOLD_VAR1
EndSwitch
EndSwitch
EndSwitch
Remark: *** AP HEADING ***
Switch (A320_FCU_SHOW_SELECTED_HEADING)
Case 0:
AP_HEADING = -9999
Case 1:
AP_HEADING = AUTOPILOT_HEADING_LOCK_DIR3
EndSwitch
Remark: *** AP VS ***
Switch (A320_NE0_FCU_STATE)
Case 0:
AP_VS = -9999
Case 1:
AP_VS = AUTOPILOT_ALTITUDE_LOCK_VAR5
Case 2:
AP_VS = AUTOPILOT_ALTITUDE_LOCK_VAR7
Case 3:
AP_VS = AUTOPILOT_ALTITUDE_LOCK_VAR7
EndSwitch
Remark: *** EFIS NAV MODE ***
Switch (A320_Neo_MFD_NAV_MODE)
Case 0:
MFD_NAV_MODE = 0
Case 1:
MFD_NAV_MODE = 1
Case 3:
MFD_NAV_MODE = 2
Case 4:
MFD_NAV_MODE = 3
EndSwitch
Sleep 250
Goto Start
See if my attached configuration for Display IAS works for your GIT.
Steve G.
set MCPPro windows for SPD/HDG/VS to A32NX_AUTOPILOT_(SPD/HEADING/VS)_SELECTED Display Data and every Light Action to BLANK_LESS_THAN and every Light Value to 1. Now in Managed Mode all windows are blank and in selected mode all values are indicating. For the SPD value I have it with two decimal places xyz.uv but I can live with it or - I have no better idea at the moment to set both at a time: blank less than and indicate as integer. ALT window is as usual since values has to be there in every case. The Managed/Selected AP mode events I have set to the rotary's P/B, the SPD/MACH + HDG/TRK - VS/FPA + METRIC P/B set to the smaller black knobs at the MCPPro and the EXPED to LVL CHNG since it is the nearest translation from the Airbus to Boeing AP mode in my understanding. Again thanks for the help.
Best regards Ralf