First find this block. For me it was around line 6,791
Code: Select all
Var 0526, name Nav1ToNGX, Link SUBRUTINE
{
IF &NAV1_Power_ON > 0
{
L0 = &ST_NAV1High * 100
&ST_NAV1 = L0 + &ST_NAV1Low
&N1STtoNGX = TOBCD &ST_NAV1
}
}
So it now looks like this:
Code: Select all
Var 0526, name Nav1ToNGX, Link SUBRUTINE
{
IF &NAV1_Power_ON > 0
{
L0 = &ST_NAV1High * 100
&ST_NAV1 = L0 + &ST_NAV1Low
&N1STtoNGX = TOBCD &ST_NAV1
&N2STtoNGX = TOBCD &ST_NAV1
}
}
For the transfer button, I then simply assigned NAV2's button to the same input as Nav 1.
So this is Nav 1:
Code: Select all
Var 2805, name bNAV1_TFR, static, Link IOCARD_SW, Device 31, Input 60, Type P // Active/Standby swap button
Code: Select all
Var 2807, name bNAV2_TFR, static, Link IOCARD_SW, Device 31, Input 60, Type P // Active/Standby swap button
Hope that helps ya!