Re: Use Nav1 Radio to set NAV1 and Nav2
Posted: Fri Jun 22, 2018 1:01 am
Here's what I just tried for this and it seems to be working.
First find this block. For me it was around line 6,791
Under that last line I added: &N2STtoNGX = TOBCD &ST_NAV1
So it now looks like this:
With this, rotating the Nav 1 knobs changed the numbers on both Nav1 and Nav2.
For the transfer button, I then simply assigned NAV2's button to the same input as Nav 1.
So this is Nav 1:
I copied the Device and Input part down to the Nav 2 line, like so:
After that, both my NAV panels are synced up.
Hope that helps ya!
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!