125Hz Flight Controls after 1.20b Update / Elevators Opposite deflection (RESOLVED)
I just update my PRO version to 1.20b (FSX Steam), implement 125Hz flight controls as per forum & youtube instructions. My elevator deflections are now opposite as it suppose to be.
Joystick: logitech extreme 3d pro
FSX Steam
my mjc84.ini file text as follows:
[FLIGHTCONTROLS]
; this means, no real force feedback available
ElevatorInFSXmode = 1
; TillerInput = 0: tiller control is with mouse only
; TillerInput = 1: turning ailerons below 40kts will steer the plane
; TillerInput = 2: tiller is mapped to the spoiler axis
TillerInput =1
; Tiller dead zone in percent/100
TillerDeadZone=0.1
; Flight Controls positions from FSX
ElevatorsByFSX=0
AileronsByFSX=0
RuddersByFSX=0
; CENTER AND DEFLECTION ARE IN THE 0x0000-0xFFFF range
ELEVATOR0_CENTER =32768
ELEVATOR0_DEFLECTION =32768
AILERON0_CENTER =32768
AILERON0_DEFLECTION =32768
RUDDER0_CENTER =32768
RUDDER0_DEFLECTION =32768
BRAKEL0_OFF =1
BRAKEL0_ON =65535
BRAKER0_OFF =1
BRAKER0_ON =65535
ELEVATOR1_CENTER =32768
ELEVATOR1_DEFLECTION =0
AILERON1_CENTER =32768
AILERON1_DEFLECTION =0
RUDDER1_CENTER =32768
RUDDER1_DEFLECTION =0
BRAKEL1_OFF =1
BRAKEL1_ON =65535
BRAKER1_OFF =1
BRAKER1_ON =65535
TILLER_CENTER =32768
TILLER_DEFLECTION =32768
FORCEFEEDBACK_TWIST =0.00
YAW_DUE_TO_PROPWASH =1.0
TURBULENCE_FACTOR =0.75
ELEVATOR_EFFECTIVENESS =0.4
AILERONS_EFFECTIVENESS =1.0
RUDDERS_EFFECTIVENESS =0.5
PEDALS_STEERING_EFFECTIVENESS = 0.5
AUTO_RUDDER_FACTOR =1.0
[JOYSTICK_INTERFACE_ASSIGNMENTS]
; See SpecialFeatures.pdf Joystick Connector section for description
; Ailerons
J0_X=FlightControls_->sensors.Aileron0_ADC
; Elevators
J0_Y=-FlightControls_->sensors.Elevator0_ADC
; Rudder
J0_Rz=FlightControls_->sensors.Rudder0_ADC
; AP DISC
J0_b0=AFCS_->inputs.AP_disengage
J0_b1=AFCS_->inputs.TCS_button
J0_b10=AFCS_->inputs.GA_button
P.S. I have no issues with 125Hz flight control prior 1.20b update.
Comments
I figure this out, I removed the minus sign (-) on the elevators:
; Elevators
J0_Y=-FlightControls_->sensors.Elevator0_ADC
SpecialFeatures.pdf document states that:
(PRO ONLY) is the joystick axis name, which should be one of :
X,Y,Z,Rx,Ry,Rz,Ax,Ay,Az,ARx,ARy,ARz,Fx,Fy,Fz,FRx,FRy,FRz,Vx,Vy,Vz,VRx,
VRy,VRz,Slider1,Slider2,ASlider1,ASlider2,VSlider1,VSlider2,FSlider1,FSlider2
<-> is an optional minus sign, telling the connector that an axis or a button press
must be inversed.
Thank you, stay safe.