Results 1 to 9 of 9
  1. #1
    300+ Forum Addict



    Join Date
    Mar 2009
    Location
    Body in Netherlands, Hart in the Fairest Cape!
    Posts
    387
    Contribute If you enjoy reading the
    content here, click the below
    image to support MyCockpit site.
    Click Here To Contribute To Our Site

    HELP HELP HELP - SIOC problem with USB Outputs

    Hi Guys,

    I have a problem that is really bugging me now.

    I have two Master card connected to a USB expansion card and one USBOutputs card. i have listed the cards in my SIOC script as:

    MASTER=0,4,2,8
    MASTER=1,6,1,10

    Obviously the latter is the USBOutputs card. Now I noticed that the example in the USB cards manual differs to that on Nico's page.
    So I have tried both of them:

    // annunciators
    Var 0500, NAME LP_CL, Link IOCARD_OUT, Output 40, Device 10
    Var 0501, Link IOCARD_OUT, Device 10, Output 38

    Now if I look in the IOCP console I can see the values being cycled:

    21=0 - Fuel Right Fwd On
    22=0 - Fuel Right Aft On
    20=0 - Fuel Left Fwd On
    19=0 - Fuel Left Aft On
    23=0 - Fuel Center Fwd On
    501=0 - V0501
    18=0 - Fuel Center Aft On
    500=0 - V0500
    23=1 - Fuel Center Fwd On
    18=1 - Fuel Center Aft On
    501=1 - V0501
    500=1 - V0500
    22=1 - Fuel Right Aft On
    21=1 - Fuel Right Fwd On
    20=1 - Fuel Left Fwd On
    19=1 - Fuel Left Aft On

    But that's where the problem lies .... no annunciators light up. Now I do know that the USB card is wired correctly becausewith the Opencockpits USBOutputs program I can cycle all the LED's on and off (I only have 20-ood connected at the moment, but I can cycle them all or individually.

    Thus, I assume that the problem is in the communication between SIOC and the card. But I don't know what to try now.

    Any ideas and tips would be really welcome.

    Thanks in advance,

    Andrew

  2. #2
    300+ Forum Addict



    Join Date
    Mar 2009
    Location
    Body in Netherlands, Hart in the Fairest Cape!
    Posts
    387
    Contribute If you enjoy reading the
    content here, click the below
    image to support MyCockpit site.
    Click Here To Contribute To Our Site

    Re: HELP HELP HELP - SIOC problem with USB Outputs

    Ha! FIXED.

    Well, I fixed the bit about the lights not going on, I was in the above example referring to the physical device when I should have been referring to the SIOC device number, I changed the 10 to 1 and new the LEDS light up ... but ... now I seem to have another problem. the leds are flashing, on and off, and this is when they are turned on, it's like a , anybody have an idea what might be causing this?

  3. Thanks Steve A thanked for this post
  4. #3
    300+ Forum Addict



    Join Date
    Mar 2009
    Location
    Body in Netherlands, Hart in the Fairest Cape!
    Posts
    387
    Contribute If you enjoy reading the
    content here, click the below
    image to support MyCockpit site.
    Click Here To Contribute To Our Site

    Re: HELP HELP HELP - SIOC problem with USB Outputs

    ... and I think I have soplved the 'flashing' problem too, I think it has to do with the power supply that I have been using to test with. I will test tomorrow with a PC power supply supplying 12v and 5v to the overhead. Hopefully the problem will then be solved too.

  5. Thanks Steve A thanked for this post
  6. #4
    25+ Posting Member



    Join Date
    Nov 2009
    Location
    Hamburg / Germany
    Posts
    41
    Contribute If you enjoy reading the
    content here, click the below
    image to support MyCockpit site.
    Click Here To Contribute To Our Site

    Re: HELP HELP HELP - SIOC problem with USB Outputs

    Quote Originally Posted by capetonian View Post
    Ha! FIXED.
    I changed the 10 to 1 and new the LEDS light up ...
    Hi Andrew,
    think I have the same problem here. So do I nderstand right.you change the device-number from 10 to 1 ? I don't understand that logic. How can find SIOC your card when you change the device to a not presented device. 10 is given from the PC.
    Mine is 21 shall I change it to 2
    Greetings, Kai

  7. #5
    300+ Forum Addict



    Join Date
    Mar 2009
    Location
    Body in Netherlands, Hart in the Fairest Cape!
    Posts
    387
    Contribute If you enjoy reading the
    content here, click the below
    image to support MyCockpit site.
    Click Here To Contribute To Our Site

    Re: HELP HELP HELP - SIOC problem with USB Outputs

    Quote Originally Posted by Schraddel View Post
    Hi Andrew,
    think I have the same problem here. So do I nderstand right.you change the device-number from 10 to 1 ? I don't understand that logic. How can find SIOC your card when you change the device to a not presented device. 10 is given from the PC.
    Mine is 21 shall I change it to 2
    Greetings, Kai
    Hi there,

    When you refer to a device number in your SIOC ini it is not the physical USB device but the device in SIOC.

    In my example that it might not be that clear, .. let me explain in detail:

    In my SIOC.ini I have the following:

    MASTER=0,4,2,8 8 is the USB device Number
    MASTER=1,6,1,10 10 is the USB device number

    Now in that above example we are also telling SIOC that we have two devices, look only at the first digit of each entry:

    MASTER=0 0 is the SIOC device ID
    MASTER=1 1 is the SIOC device ID

    Now I made my initial mistake by having entries like this:

    Var 0500, NAME LP_CL, Link IOCARD_OUT, Output 40, Device 10

    That's where I was making a mistake, SIOC was looking for a device with an ID of 10 in the ini file when it should have been talking to the device with the ID of 1

    So when I changed it to the line below, it worked:


    Var 0500, NAME LP_CL, Link IOCARD_OUT, Output 40, Device 1

    I hope that clears it up a bit

  8. #6
    300+ Forum Addict



    Join Date
    Jan 2009
    Location
    Tampa
    Posts
    487
    Contribute If you enjoy reading the
    content here, click the below
    image to support MyCockpit site.
    Click Here To Contribute To Our Site

    Re: HELP HELP HELP - SIOC problem with USB Outputs

    Thanks for all the good data, little chunks like this help those of us starting to move from IOCards software to SIOC.

    Buddy

  9. #7
    25+ Posting Member



    Join Date
    Nov 2009
    Location
    Hamburg / Germany
    Posts
    41
    Contribute If you enjoy reading the
    content here, click the below
    image to support MyCockpit site.
    Click Here To Contribute To Our Site

    Re: HELP HELP HELP - SIOC problem with USB Outputs

    Not quite shure if I understand it really..but I will give it a try. Seein is believing
    I connected the mastercard yesterday for the first time. I configured my OC MCP and EFIS first. And they have the device # 19 and 23 and this devices I put in the sioc code and it works well.
    To change now the device # of the mastercard from 21 to 2 confuses me. But as I said..lets give it a try.
    Thanks for help.

    Greetings, Kai

  10. #8
    300+ Forum Addict



    Join Date
    Mar 2009
    Location
    Body in Netherlands, Hart in the Fairest Cape!
    Posts
    387
    Contribute If you enjoy reading the
    content here, click the below
    image to support MyCockpit site.
    Click Here To Contribute To Our Site

    Re: HELP HELP HELP - SIOC problem with USB Outputs

    Quote Originally Posted by Schraddel View Post
    Not quite shure if I understand it really..but I will give it a try. Seein is believing
    I connected the mastercard yesterday for the first time. I configured my OC MCP and EFIS first. And they have the device # 19 and 23 and this devices I put in the sioc code and it works well.
    To change now the device # of the mastercard from 21 to 2 confuses me. But as I said..lets give it a try.
    Thanks for help.

    Greetings, Kai
    Hi there,

    Before you change anything.... take note that I am using an example of a situation in which a USB Outputs card was not working. The MCP and EFIS scripts are fare more advanced than that.
    But that said... in your SIOC.ini you will have to list your cards, and later reference the cards by the correct device ID.

  11. #9
    25+ Posting Member



    Join Date
    Nov 2009
    Location
    Hamburg / Germany
    Posts
    41
    Contribute If you enjoy reading the
    content here, click the below
    image to support MyCockpit site.
    Click Here To Contribute To Our Site

    Re: HELP HELP HELP - SIOC problem with USB Outputs

    GOT IT.
    It was a little tricky but finally I found out the mistake.
    My sioc.ini is:
    Master=0,4,1,21 // Mastercard through Expansion card
    Master=1,5,1,1 // OC MCP
    Master=2,7,1,3 // OC EFIS
    I first linked the sioc-code to device 21 , output 11 (for example)
    But after I change it to device "0" (resp. blank) everything works well now.

    Thanks for help again. now I can go on with the next step of my cockpit-adventure
    Cheers, Kai

Similar Threads

  1. Sioc trim sound problem
    By themax222 in forum OpenCockpits General Discussion
    Replies: 13
    Last Post: 05-03-2010, 01:33 PM
  2. Mastercard Outputs Problem?
    By Buddym in forum OpenCockpits General Discussion
    Replies: 0
    Last Post: 03-02-2009, 05:05 PM
  3. strange SIOC problem, anyone?
    By stabell in forum OpenCockpits General Discussion
    Replies: 7
    Last Post: 12-08-2008, 02:51 PM
  4. iocards,SIOC and fswide conection problem
    By mvc340 in forum General Builder Questions All Aircraft Types
    Replies: 6
    Last Post: 01-20-2008, 12:10 PM
  5. Altitude SIOC code problem
    By bindook in forum I/O Interfacing Hardware and Software
    Replies: 0
    Last Post: 03-03-2007, 12:38 AM