PDA

View Full Version : OpenCockpit SIOC Newbie



rt72
02-07-2008, 11:39 PM
Hi all,


I've been trying to work this out, however I've hit a frustration point and wondering if anyone can take a quick look and see if anything is wrong here.

I've got a USBOutput card:

Registers as device 45
Connection is good using output test software

I'm trying to simply get a bulb to illuminate when changing the state of the pitot heat from off to on.


The file compiles OK and my SIOC.INI file has the card listed appropriately and loads this .ssi file on SIOC start.


Any help would be greatly appreciated!

------------------

// Pitot Heat Test Code //

Var 7, Link IOCARD_OUT, Output 0, device 45

Var 8, Link FSUIPC_IN, Offset $029C, Length 1
{
IF V8=1
{
V7=1
}
ELSE
{
V7=0
}
}
-------------------------

737NUT
02-08-2008, 12:05 AM
which version are you using?

rt72
02-08-2008, 12:44 AM
SIOC 3.5
FSUIPC 3.75 Registered
FS2004

737NUT
02-08-2008, 12:56 AM
OK, download the sioc.ini setup program and run it. You will make your card either 0,1,or 2. That is your device number, not 45. Get that fixed and all will work. I just went thru the same thing. :)

rt72
02-08-2008, 01:07 AM
Thanks, I'll give it a whirl!