PDA

View Full Version : Marker beacons in PM



Jackpilot
01-25-2008, 09:47 AM
Is there any way to get the marker beacons OM MM IM in PM?
I know they are slowly desappearing in real world but was nice to have.
Are they available in the PFD/ND?

Tomlin
01-25-2008, 09:55 AM
Hmmm...they show up in PMRJ for me...

Jan Pemöller
01-25-2008, 05:48 PM
yes, they are in the boeing software!

Jackpilot
01-25-2008, 10:46 PM
Do not have them on screen....any special key?

sas550
01-25-2008, 11:53 PM
Well they don't show up as ndb's. Some OM are at the same time also an ndb and will show up on the ND. The markers will show as a blue OM, yellow MM, and a white IM on the PFD when you pass over.

Michael Carter
01-26-2008, 01:53 AM
If it's co-located with the OM, it is then called a compass locator.

Jackpilot
01-26-2008, 05:14 PM
I Know that they are not identified on the Nav display but they should flash on the top right corner of the PFD when the airplane passes over...I have the sound but nothing on the PFD.
I use the last build. Any suggestion

Jan Pemöller
01-30-2008, 03:08 PM
Hello,

does anyone now how to turn on the sound when passing inner and outer marker? Is there an offset for PM Sound available? I think it is still a must to hear the sound in an IFR equiped aircraft.

Thanks for any help
Jan

Jackpilot
01-30-2008, 03:52 PM
Activate the sound on the Mrks button of the radio management panel. It is an FS sound.
A bit like the ident on the Nav radios. There is probably a keyboard command..check on FS.

sas550
01-30-2008, 04:40 PM
Here's the fsuipc offset.

<TABLE cellSpacing=0 cellPadding=2 width="80%" border=1><TBODY><TR><TD vAlign=top width=57>
3122
</TD><TD vAlign=top width=65>
1
</TD><TD vAlign=top>Radio audio switches (FS2002+ only). Read/write bit settings as follows: 2^7 COM1 transmit
2^6 COM2 transmit
2^5 COM receive both
2^4 NAV1 sound
2^3 NAV2 sound
2^2 Marker sound
2^1 DME sound
2^0 ADF1 sound
</TD></TR></TBODY></TABLE>

If you're using sioc I can post the code I use when I get home from work tomorrow.

excalibur67
04-28-2008, 10:07 AM
Here's the fsuipc offset.

<TABLE cellSpacing=0 cellPadding=2 width="80%" border=1><TBODY><TR><TD vAlign=top width=57>
3122
</TD><TD vAlign=top width=65>
1
</TD><TD vAlign=top>Radio audio switches (FS2002+ only). Read/write bit settings as follows: 2^7 COM1 transmit
2^6 COM2 transmit
2^5 COM receive both
2^4 NAV1 sound
2^3 NAV2 sound
2^2 Marker sound
2^1 DME sound
2^0 ADF1 sound
</TD></TR></TBODY></TABLE>

If you're using sioc I can post the code I use when I get home from work tomorrow.

Hi , i use SIOC and i have the same problem. Can you send me this code ? Thanks in advance.

Giuseppe Reda

sas550
04-28-2008, 11:02 AM
Here's the code. The red part is to set mrker sound to on and the green part is to indicate that it's on with a led.




//Audio panel
Var 0016, Link FSUIPC_OUT, Offset $3122, Length 1 // Radio Audio Bytes
Var 0017, Link IOCARD_SW, Input 10 // COM1 Audio
{
IF V0017 = 1
{
V0016 = SETBIT 6
}
ELSE
{
V0016 = SETBIT 7
}
IF V0017 = 1
{
V0016 = CLEARBIT 7
}
ELSE
{
V0016 = CLEARBIT 6
}
}
Var 0018, Link IOCARD_SW, Input 13 // BOTH Audio
{
IF V0018 = 1
{
V0016 = SETBIT 5
}
ELSE
{
V0016 = CLEARBIT 5
}
}
Var 0019, Link IOCARD_SW, Input 12 // NAV1 Audio
{
IF V0019 = 1
{
V0016 = SETBIT 4
}
ELSE
{
V0016 = CLEARBIT 4
}
}
Var 0020, Link IOCARD_SW, Input 16, // NAV2 Audio
{
IF V0020 = 1
{
V0016 = SETBIT 3
}
ELSE
{
V0016 = CLEARBIT 3
}
}
Var 0021, Link IOCARD_SW, Input 17, // MKR Audio
{
IF V0021 = 1
{
V0016 = SETBIT 2
}
ELSE
{
V0016 = CLEARBIT 2
}
}
Var 0022, Link IOCARD_SW, Input 9, // ADF Audio
{
IF V0022 = 1
{
V0016 = SETBIT 0
}
ELSE
{
V0016 = CLEARBIT 0
}
}
//audio out
Var 0110, Link FSUIPC_IN, Offset $3122, Length 1 // Radio Audio Bytes
{
V0111 = TESTBIT V0110, 7 // COM1
V0127 = TESTBIT V0110, 6 // COM2
V0113 = TESTBIT V0110, 5 // BOTH
V0115 = TESTBIT V0110, 4 // NAV1
V0117 = TESTBIT V0110, 3 // NAV2
V0119 = TESTBIT V0110, 2 // MRKR
V0121 = TESTBIT V0110, 0 // ADF
}