Hardware & Technical Thrustmaster TFRP - Can I bind both toe pedals to a single axis?

Hi all,

I just got a set of Trustmaster TFRP pedals. I have the slaw set to the yaw axis, and this work perfectly.

However, I want to have the toe pedals set on the vertical thrust axis, so that I can use left toe pedal for up and right pedal for down.

Unfortunately, Elite only allows you to set a single axis on the vertical thrust, and the toe pedals are seen as two separate axis. I do not want to set them at "buttons", as this will lose the fine control I want. So is there a way to combine the two toe pedals into a single axis?

Thanks for any help... :)
 
Can you use Thrustmaster software, or Windows controller setup to configure the toe pedal axes as 'combined', as quite many racing wheel pedals like to do with gas & brake?
 
Last edited:
I know this is a total necro but I just stumbled upon it after doing this myself. Try this...


int EventHandle(int type, alias o, int x) {
int a, b, c;
if (&o == &TFRPRudder & (x == TRPLEFT | x == TRPRIGHT)) { // handle the combined toe brakes on the pedals
GetAxisData(&TFRPRudder, TRPLEFT);
a = 0 - (AxisVal(TFRPRudder[TRPLEFT], &axdata) / 2);

GetAxisData(&TFRPRudder, TRPRIGHT);
b = AxisVal(TFRPRudder[TRPRIGHT], &axdata) / 2;

// printf("
%d\t%d\t\t
%d\t%d\xa", TFRPRudder[TRPLEFT], a, TFRPRudder[TRPRIGHT], b);

c = a + b;
DXAxis(DX_ZROT_AXIS, c);

GetAxisData(&o, x);
axdata.val = AxisVal(o[x], &axdata);
GameOutput(&o, x, axdata.val);
} else
DefaultMapping(&o, x);
}


I use something very similar to combine my throttle and paddles into one axis - if it's acting weird - you may need to look at a and b using printf("%d\xa", a) to see if the axis is reversed and adjust accordingly.​
 
Back
Top Bottom