CoNa
07-04-2008, 06:41 PM
Following up my default FSX SIOC config with a new thread.
I'm trying to emulate a toggle switch (the GPS/NAV) with a momentary button on my OC MCP (VNAV button).
So far I have managed to switch it, but as the button is momentary
the switch goes back to previous state when I release the button.
Is there away to make this working?
This is the setup I have come up with so far.
Var 0032, Link FSUIPC_INOUT, Offset $132C, Length 4 // AP_VNAV emulate NAV/GPS Switch
{
IF V0032 <> 1
{
&O_VNAV = 1
}
ELSE
{
&O_VNAV = 0
}
}
Var 0090, name O_VNAV, Link IOCARD_OUT, Output 25
Var 0154, name I_VNAV, Link IOCARD_SW, Input 30
{
IF &I_VNAV <> 1
{
V0032 = 1
}
ELSE
{
V0032 = 0
}
}
I have an idea that I can possibly use 2 buttons , VNAV and LNAV that are note used in the default FSX 737 anyway.
Could that be a solution?
I'm trying to emulate a toggle switch (the GPS/NAV) with a momentary button on my OC MCP (VNAV button).
So far I have managed to switch it, but as the button is momentary
the switch goes back to previous state when I release the button.
Is there away to make this working?
This is the setup I have come up with so far.
Var 0032, Link FSUIPC_INOUT, Offset $132C, Length 4 // AP_VNAV emulate NAV/GPS Switch
{
IF V0032 <> 1
{
&O_VNAV = 1
}
ELSE
{
&O_VNAV = 0
}
}
Var 0090, name O_VNAV, Link IOCARD_OUT, Output 25
Var 0154, name I_VNAV, Link IOCARD_SW, Input 30
{
IF &I_VNAV <> 1
{
V0032 = 1
}
ELSE
{
V0032 = 0
}
}
I have an idea that I can possibly use 2 buttons , VNAV and LNAV that are note used in the default FSX 737 anyway.
Could that be a solution?