Results 1 to 10 of 20
-
01-23-2008, 11:46 AM #1
- Join Date
- Jan 2008
- Location
- Denmark
- Posts
- 16
(A/P-P/RST),(A/T-P/RST),(FMC-P/RST) Offset
Hi.
I am using Project Magenta, Boing software..
I having trouble finding (A/P-P/RST),(A/T-P/RST),(FMC-P/RST) Offset's
for both switch function and annonciator light,(backlight)
I have run through pmsysvar.txt and ProjectMagenta Fsuipc offset's,
but with no luck....
Can anyone help with these offsets????
Regards John Hansen, Denmark
-
02-06-2008, 02:23 PM #2
Hi john
I was about to ask the same thing and is this option on the flightdeck technology software and if so were is it ?
-
02-07-2008, 09:26 AM #3
- Join Date
- Jan 2008
- Location
- Denmark
- Posts
- 16
Hi KevinE
I've got reply from ProjectMagenta, about this subject,
and there is no offsets for this funktion. You have to
program it your self...I have already made a script in
SIOC ( opencockpits )... So if you are using Opencockpits
hardware i can provide you with my ssi. script.( PROGRAM )
It is not finnist yet but it is working....
All the offsets to make this logic function work is advailerble in
FSUIPC and Project magenta....
Best regards John Hansen
-
02-07-2008, 10:50 AM #4
John I would be interesting to see this code, since I am using SIOC this will help a lot...
Chris
-
02-07-2008, 06:48 PM #5
Good timing. I am also wiring up my MIP and use opencockpits code. If you could post it I would be most appreciative.
Thanks
Jason
-
02-08-2008, 04:43 AM #6
- Join Date
- Jan 2008
- Location
- Denmark
- Posts
- 16
Hi
My sioc code is a beta, but working. Second...it is not a total
replica of the real logics but it's quite simple to modifi at your own
will. I have used Project Magenta's video called "Cockpit Test" to
compair with...In real read the Continental Boing 737 manual ( at this site)
to get the correct function. Sioc programming is quite new for me so
i challenge ny self with this little program incorporating a flash generator
for the Master Caution....
The function is simple : disconnect A/P and you get a flashing Master Caution
and i light in A/P P/RST sw. Push Master sw to reset Master Caution and push
A/P P/RST sw to reset that. Disconnection A/T will only get light in A/T P/RST
sw, push to reset..Thats it for now..I will find out next when FMC P/RST will
annonciate. Send a email to dsl325961@vip.cybercity, i'll send the ssi. code
to you of interrest.... Best regards John Hansen, Denmark
-
02-08-2008, 05:37 AM #7
Hi John,
Your email address bounced. It would be great if you could send it to jason.beringer@arts.monash.edu.au If I modify it I will post it back to you
Thanks
Jason
-
02-08-2008, 05:50 AM #8
- Join Date
- Jan 2008
- Location
- Denmark
- Posts
- 16
hi and sorry....
I can see my full email adresse is missing...
It is----- dsl325961@vip.cybercity.dk
Regards John Hansen
-
02-08-2008, 06:08 AM #9
- Join Date
- Jan 2007
- Location
- Italy
- Posts
- 204
More simple, why don't post the code here?
I did this in the past posting my SIOC codes.
-
02-08-2008, 10:45 AM #10
- Join Date
- Jan 2008
- Location
- Denmark
- Posts
- 16
Sioc code without Flashing Mastercaution
Hi here it is
RGD John Hansen, Denmark
// *****************************************************************************
// * Config_SIOC ver 3.5 - By Manolo V閘ez - www.opencockpits.com
// *****************************************************************************
// * FileName : WithoutFlash&MasterReset.txt
// * Date : 08-02-2008
Var 0000, Value 0 // AutoDisconnectPanel
Var 0001 // disconnect flag pm
{
IF V0001 = 1
{
IF V0006 = 1
{
V0008 = 1
}
}
IF V0001 = 1
{
IF V0007 = 1
{
V0009 = 1
}
}
IF V0001 = 0
{
V0006 = 0
V0007 = 0
}
}
Var 0002 // A/P from 04F2 bit 0
{
V0003 = DELAY V0002 ,10
IF V0002 < V0003
{
V0006 = 1
}
ELSE
{
V0006 = 0
}
}
Var 0003 // delay A/P calc
Var 0004 // A/T from 04F2 bit 11
{
V0005 = DELAY V0004 ,10
IF V0004 < V0005
{
V0007 = 1
}
ELSE
{
V0007 = 0
}
}
Var 0005 // delay A/T calc
Var 0006 // A/P disconnect flag
{
IF V0001 = 1
{
IF V0006 = 1
{
V0008 = 1
}
}
}
Var 0007 // A/T disconnect flag
{
IF V0001 = 1
{
IF V0007 = 1
{
V0009 = 1
}
}
}
Var 0008, Link IOCARD_OUT, Output 12 // A/P disconnect led
Var 0009, Link IOCARD_OUT, Output 13 // A/T disconnect led
Var 0010, Link IOCARD_SW, Input 1 // A/P reset sw
{
V0008 = TOGGLE 0
V0014 = TOGGLE 0
}
Var 0011, Link IOCARD_SW, Input 2 // A/T reset sw
{
V0009 = TOGGLE 0
V0014 = TOGGLE 0
}
Var 0012, Link FSUIPC_IN, Offset $04FE, Length 2 // PM flag
{
V0001 = TESTBIT V0012 ,2
}
Var 0013, Link FSUIPC_IN, Offset $04F0, Length 2 // PM A/P & A/T read
{
V0002 = TESTBIT V0013 ,0
V0004 = TESTBIT V0013 ,11
}
Var 0014, Link FSUIPC_OUT, Offset $56F8, Length 2 // Master reset write
Var 0016, Link FSUIPC_OUT, Offset $050A, Length 2 // disconnect main sw
Similar Threads
-
Offset?
By Pierre24 in forum PM General Q & AReplies: 4Last Post: 05-22-2008, 02:32 AM -
Offset for DF 737-400
By APAK in forum I/O Interfacing Hardware and SoftwareReplies: 0Last Post: 09-24-2007, 09:32 AM -
QNH offset
By bindook in forum I/O Interfacing Hardware and SoftwareReplies: 2Last Post: 03-20-2007, 08:00 AM -
Offset again
By lucas1971 in forum FS2Phidget UsersReplies: 3Last Post: 12-09-2004, 01:49 AM
Looking for Fun? Connect with Women Seeking Casual Encounters in Your Town
JH startup on Client PC