Page 1 of 2 12 LastLast
Results 1 to 10 of 20
  1. #1
    10+ Posting Member
    Join Date
    Jan 2008
    Location
    Denmark
    Posts
    16
    Contribute If you enjoy reading the
    content here, click the below
    image to support MyCockpit site.
    Click Here To Contribute To Our Site

    (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

  2. #2
    10+ Posting Member kevinE's Avatar
    Join Date
    Jul 2006
    Location
    IRELAND
    Posts
    22
    Contribute If you enjoy reading the
    content here, click the below
    image to support MyCockpit site.
    Click Here To Contribute To Our Site

    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 ?

  3. #3
    10+ Posting Member
    Join Date
    Jan 2008
    Location
    Denmark
    Posts
    16
    Contribute If you enjoy reading the
    content here, click the below
    image to support MyCockpit site.
    Click Here To Contribute To Our Site

    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

  4. #4
    75+ Posting Member Olympic260's Avatar
    Join Date
    Dec 2006
    Location
    Athens Greece
    Posts
    79
    Contribute If you enjoy reading the
    content here, click the below
    image to support MyCockpit site.
    Click Here To Contribute To Our Site

    John I would be interesting to see this code, since I am using SIOC this will help a lot...
    Chris

  5. #5
    10+ Posting Member jberinge's Avatar
    Join Date
    Feb 2007
    Location
    Melbourne, Australia
    Posts
    14
    Contribute If you enjoy reading the
    content here, click the below
    image to support MyCockpit site.
    Click Here To Contribute To Our Site

    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

  6. #6
    10+ Posting Member
    Join Date
    Jan 2008
    Location
    Denmark
    Posts
    16
    Contribute If you enjoy reading the
    content here, click the below
    image to support MyCockpit site.
    Click Here To Contribute To Our Site

    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

  7. #7
    10+ Posting Member jberinge's Avatar
    Join Date
    Feb 2007
    Location
    Melbourne, Australia
    Posts
    14
    Contribute If you enjoy reading the
    content here, click the below
    image to support MyCockpit site.
    Click Here To Contribute To Our Site

    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

  8. #8
    10+ Posting Member
    Join Date
    Jan 2008
    Location
    Denmark
    Posts
    16
    Contribute If you enjoy reading the
    content here, click the below
    image to support MyCockpit site.
    Click Here To Contribute To Our Site

    hi and sorry....

    I can see my full email adresse is missing...

    It is----- dsl325961@vip.cybercity.dk


    Regards John Hansen

  9. #9
    150+ Forum Groupie
    Join Date
    Jan 2007
    Location
    Italy
    Posts
    204
    Contribute If you enjoy reading the
    content here, click the below
    image to support MyCockpit site.
    Click Here To Contribute To Our Site

    More simple, why don't post the code here?
    I did this in the past posting my SIOC codes.

  10. #10
    10+ Posting Member
    Join Date
    Jan 2008
    Location
    Denmark
    Posts
    16
    Contribute If you enjoy reading the
    content here, click the below
    image to support MyCockpit site.
    Click Here To Contribute To Our Site

    Sioc code without Flashing Mastercaution

    Hi here it is

    RGD John Hansen, Denmark



    // *****************************************************************************
    // * Config_SIOC ver 3.5 - By Manolo Vélez - 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

Page 1 of 2 12 LastLast

Similar Threads

  1. Offset?
    By Pierre24 in forum PM General Q & A
    Replies: 4
    Last Post: 05-22-2008, 02:32 AM
  2. Offset for DF 737-400
    By APAK in forum I/O Interfacing Hardware and Software
    Replies: 0
    Last Post: 09-24-2007, 09:32 AM
  3. QNH offset
    By bindook in forum I/O Interfacing Hardware and Software
    Replies: 2
    Last Post: 03-20-2007, 08:00 AM
  4. Offset again
    By lucas1971 in forum FS2Phidget Users
    Replies: 3
    Last Post: 12-09-2004, 01:49 AM