Jump to content
The simFlight Network Forums

windquest

Members
  • Posts

    10
  • Joined

  • Last visited

Posts posted by windquest

  1. Pete,

    Please don't yell at me for asking, but ORBX just announced that they are bringing out two areas for aeroflyFS.  Obviously this Steam Game, just might be getting enough recognition to become a player.  Especially true as this comes on the heals of the p3dv4 upgrade.  You have supported legitimate Sims for years, I wonder if you would let us know your thoughts and the likelihood of supporting it.

    I can't fly without fsuipc for my calibration...period!

    Thanks Pete for all you do.

    henry

  2. I honestly don't know how anyone flies without it.  Wonderful calibration of controls, assignment of controls for each airplane if you want.  Scripts and more.  I can't remember not using the PAID version, but as Pete said, you can get the free version and read the manual.  And do read it, because questions that are answered in the manual won't be answered here!

    Henry

  3. Hello Pete.....Before I get started, this is entirely self inflicted.....but I don't know what to do. I download to another computer and place it on the network. Sometimes I install from the network drive to the installation drive as I did in this case. You will see that the installer for FSUIPC looks in the \\READYSHARE\USB_storage......etc first, clickink ok resumes the install. This is followed by the popup saying that 3.000z8 is installed into FS9 okay! When I press ok out of this window I am returned to the windows screen, not the registration page like I have gotten on every other installation. Now then, I opened FS9 before I made the log file and FSUIPC is where it is supposed to be, but obviously unregistered. The screen text and log file are attached: I feel sure the problem is that after I have installed FS9 in several locations today trying to get more than one installation working that I have screwed up the registry and with 6 active hard drives, I really don't want to start over again. I might add that FSUIPC works fine in my FSX and my p3d and p3dv2 installations. I did a clean download of the FSUIPC directly to a drive on the main computer, but it still starts off looking in the wrong place. Like I said,, It was working just fine until.........As I am sure you can guess, I removed the FS9 folder and all of the app data. Hopefully you will know exactly what to do....many thanks in advance. Henry

     

    win 7Home, i7 processor

    Installer for FSUIPC.txt

  4. Just a quick note to Pete, thanks for the help, worked fine....back to normal.  I really feel bad to have troubled you......I guess my curiosity was, why did everything work but one, and because this was non commercial code, I didn't even think to look for an up date.  We all can be greatful that Pete is this dedicated to his product.  And, as a side note, the radio tuning is now expanded to include OBS tuning, and heading as well as a couple of other extras.  Works fine in P3d2

    Henry

  5. Ok Pete, bear with me, I am trying.... but this may be above my level of incompitance!!

     

    This is the script that doesn't work:

     

    acr = ipc.get("ACTIVE_RADIO")
    ipc.set("KEY_STR", 0)
    ipc.set("KEY_POS", 1)
    ipc.set("DECIMAL_SET", false)

    onoff = ipc.get("ONOFF")

    if (not(onoff == nil) and onoff == "OFF") then
        return
    end

    if ipcPARAM == 1 then
        acr = "ADF_2"
    else
        if ipcPARAM == 2 then
            acr = "ADF_1"
        end
    end

    if not(acr == nil) and acr == "ADF_1" then
        nacr = "ADF_2"
        b1 = ipc.readUB(0x02D4)
        b2 = ipc.readUB(0x02D5)
        
        n1 = logic.And(b1, 15)
        n2 = logic.And(b2, 15)
        
        b3 = ipc.readUB(0x02D6)
        b4 = ipc.readUB(0x02D7)
        
        ipc.writeSTR(0x3380, nacr .. ":  " .. b4 .. n2 .. logic.Shr(b1, 4) .. n1 .. "." .. b3);

    else
        nacr = "ADF_1"
        b1 = ipc.readUB(0x034C)
        b2 = ipc.readUB(0x034D)
        
        n1 = logic.And(b1, 15)
        n2 = logic.And(b2, 15)
        
        b3 = ipc.readUB(0x0356)
        b4 = ipc.readUB(0x0357)
        
        ipc.writeSTR(0x3380, nacr .. ":  " .. b4 .. n2 .. logic.Shr(b1, 4) .. n1 .. "." .. b3);
    end
    ipc.set("ACTIVE_RADIO", nacr);

    ipc.writeSW(0x32FA, 8);

     

     

     

     

    This one works:

    acr = ipc.get("ACTIVE_RADIO")

    ipc.set("KEY_STR", 0)

    ipc.set("KEY_POS", 1)

    ipc.set("DECIMAL_SET", false)

     

    onoff = ipc.get("ONOFF")

     

    if (not(onoff == nil) and onoff == "OFF") then

                   return

    end

     

    if ipcPARAM == 1 then

                   acr = "COM_2"

    else

                   if ipcPARAM == 2 then

                                  acr = "COM_1"

                   end

    end

     

    if not(acr == nil) and acr == "COM_1" then

                   nacr = "COM_2"

                   b1 = ipc.readUB(0x3118)

                   b2 = ipc.readUB(0x3119)

                  

                   n1 = logic.And(b1, 15)

                   n2 = logic.And(b2, 15)

                  

                   b3 = ipc.readUB(0x311C)

                   b4 = ipc.readUB(0x311D)

                  

                   n3 = logic.And(b3, 15)

                   n4 = logic.And(b4, 15)

                  

                   ipc.writeSTR(0x3380, nacr .. ":  1" .. logic.Shr(b2, 4) .. n2 .. "." .. logic.Shr(b1, 4) .. n1 .. "  -  " .. "1" .. logic.Shr(b4, 4) .. n4 .. "." .. logic.Shr(b3, 4) .. n3);

    else

                   nacr = "COM_1"

                   b1 = ipc.readUB(0x034E)

                   b2 = ipc.readUB(0x034F)

                  

                   n1 = logic.And(b1, 15)

                   n2 = logic.And(b2, 15)

                  

                   b3 = ipc.readUB(0x311A)

                   b4 = ipc.readUB(0x311B)

                  

                   n3 = logic.And(b3, 15)

                   n4 = logic.And(b4, 15)

                  

                   ipc.writeSTR(0x3380, nacr .. ":  1" .. logic.Shr(b2, 4) .. n2 .. "." .. logic.Shr(b1, 4) .. n1 .. "  -  " .. "1" .. logic.Shr(b4, 4) .. n4 .. "." .. logic.Shr(b3, 4) .. n3);

    end

    ipc.set("ACTIVE_RADIO", nacr);

     

    ipc.writeSW(0x32FA, 8);

     

    I hope this is what you wanted.  If not, then I need specific direction.

    Henry

  6. Hi Pete,

    This problem is really small but I hope you can help. I use a LUA script to tune my radios,( I didn't write it), but the script was published some time ago and and I have had no problems in FSX and P3d and even with the "fix" in P3D2 (prior 4.923), but when I installed 4.923 everything across the board seemed fine except in the ADF radio tuning; the . (dot) and 0 will not work and therefor will not tune. The . (dot) and 0 work for all other radios. The same problem exists in P3D and FSX as well with 4.923. Any thoughts? Henry

×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use. Guidelines Privacy Policy We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.