-
Posts
38,265 -
Joined
-
Days Won
170
Content Type
Profiles
Forums
Events
Gallery
Downloads
Everything posted by Pete Dowson
-
What does "properly" mean? What's an add-on "bar"? If you mean menu entry, then if there's no Add-Ons menu entry, how do you think it might possibly "work"? If there's no FSUIPC in the menu it isn't talking to SimConnect so it cannot actually "work"! More information needed I'm afraid: -- Version number of FSUIPC, please? If not at least 4.50, install that first and try again. -- Version number of FSX? SP1, SP2, Acceleration? -- Install log for FSUIPC4 (from the FSX Modules folder), show that please. -- Any FSUIPC4.LOG file there at all? Show that too if so. Regards Pete
-
Mapping keyboard commands in PMDG
Pete Dowson replied to DaveAB's topic in FSUIPC Support Pete Dowson Modules
Okay. I thought you must have meant that. Not mad, just another sure indication of dual assignments. I doubt that will make any difference. If you temporarily remove FSUIPC4.DLL from the Modules folder, what do those switches do then? If nothing, then best to delete your FSUIPC INI file, as you evidently have dual assignments in there and don't even remember them. More likely, the other problems you are getting become the only actions, showing that the buttons are indeed assigned in FS. Regards Pete -
What version number is your "latest FSUIPC"? "Newest" is completely meaningless. Is there an FSUIPC.LOG file in the Modules folder? Show it to me, please. Pete
-
Problem with Main Flight Controls calibration
Pete Dowson replied to SAB114's topic in FSUIPC Support Pete Dowson Modules
They aren't assigned in FSUIPC then. There are two parts of FSUIPC relating to joystick axes -- assigning and calibrating. You don't have to assign in FSUIPC. In fact, generally, there's no good reason to, especially for beginners. The main advantages are to do with having different axes assigned for different aircraft types. The calibration facilities in FSUIPC have been there for many years, long before any axis assignments were supported there. They can be used to calibrate FS-assigned or FSUIPC-assigned axis -- in fact, unlerss you assign in FSUIPC "direct to FSUIPC" they cannot tell the difference, they are indistinguishable. So, it sounds as if you are doing the "normal" thing, using FS for all your assignments, making sure they work okay in FS, then using FSUIPC for that final accurate calibration. Eraren't you using those? Sorry, this is rather confused. Is this with the FS control surfaces neutral? If so, check the trims in FS, and check the realism setting for the aircraft -- some effects there pull left, some right, depending on other things like the rotation direction of the prop. If the control surfaces in FS are not neutral with the controls centred, then you haven't calibrated correctly for a proper central zone. Regards Pete -
If the levers don't give different values between two positions, then there's nothing any calibrating software can possibly do. Either your device is broken, or, more likely, it's drivers need sorting out. You'll need to contact the makers about that I fear. Sorry, I don't have either and I have no idea how their drivers work. Perhaps other Saitek users will be able to help you. Regards Pete
-
[Macro] Delay between actions
Pete Dowson replied to AUA144's topic in FSUIPC Support Pete Dowson Modules
You could certainly do that very easily in Lua. You'd send the actions using ipc.control or ipc.keypress depending on whether they are FS/FSUIPC controls or keypresses, and use ipc.sleep(500) between each one to delay half a second. If those operations are macros themselves, you'd need to send the macro name, instead of using ipc.control or ipc.keypress using ipc.writeString(0x0D70,"macro name") where the macro name is the same "filename:macroname" string you see in the FSUIPC dropdown when assigning keys or buttons to macros. I think I ought to add another ipc function to Lua, to execute Macros without folks needing to know about offsets like 0x0D70. I may also add one for pressing "virtual buttons". Regards Pete -
I've re-compressed the FSInterrogate2std.exe item with my newer compressor -- it actually does a better job, so the package is even smaller than before. Nothing else has been changed. Try downloading it -- use the link in the Updates Announcement above. I can send it to Enrico Schiratti to rpelace on his site too if needed, but I remain pretty sure the problem on the former one would have been a false positive. Let me know please. Regards Pete
-
Logitech G25 pedals and rudder
Pete Dowson replied to solex's topic in FSUIPC Support Pete Dowson Modules
You must have something screwedI've tested the new options here using two paddles on one game pad (a Saitek wireless one as it happens), and I can easily get it so the left paddle does the left rudder and the right paddle the right rudder. It works fine provided only one paddle is used at a time. When you apply both then you get random switching depends which is depressed furthest. This is the arbitration taking effect. Please show me both the relevant [Axes...] and [JoystickCalibration ...] sections from your INI file. Pete -
Well, there are, several. It is a collection of tools and examples, most of which have not been changed for years. Is this the first time you've tried to get the SDK? Classifying any LIB, DLL and EXE as executable, there are: FSInterrogate2std.exe Zips containing UIPChello.exe examples compiled in different languages Zips containing LIB files for the IPC interface Zips containing DLLs used by some language interfaces Mostly it is Zips withing the Zip. The FSInterrogate2std.exe may be compressed with Petite. It hasn't been changed in the SDK Zip, though, since 2007. Is this worm you detected that old? Neither Norton AV (full commercial version) nor AVG find anything wrong with it, but if necessary I can recompress the original using my current compressor instead. The only times any virus report has been made in the past it has proven to be a false positive, just resulting from the odd bit patterns you get from compression. I don't remember anyone ever reporting one on the SDK at all. Regards Pete
-
[Macro] Delay between actions
Pete Dowson replied to AUA144's topic in FSUIPC Support Pete Dowson Modules
No. But you could do this (and all sorts of other things) using Lua plug-ins. Quite easily. What would be the application? Regards Pete -
Mapping keyboard commands in PMDG
Pete Dowson replied to DaveAB's topic in FSUIPC Support Pete Dowson Modules
Sorry, please clarify. These "pulses" are what, joystick buttons flashing on and off? Well, the buttons are most certainly assigned in more than one place that is for sure. Have you explicitly disabled the buttons in FS? It assigns things like brakes and views automatically. Out of date and not supported. Please install 4.50. Regards Pete -
Mouse macros for a self centering switch
Pete Dowson replied to abz's topic in FSUIPC Support Pete Dowson Modules
Sounds like there's been some code changes and things have moved. You'll need to re-create the macros. The way these macros work is by finding out where, in actual code, the mouse clicking actually gets any action done. The number stuff recorded in the Macro file is merely an offset into a named Gauge file where FSUIPC has to actually jump to to make the action occur. The first two bytes of the location it jumps to are also recorded so that FSUIPC can check that this is still the correct place when, as you've done, the Gauge code is replaced by different code. It may be that the code has only moved a little way, but there is no safe way for my code to automatically find it. The only way it can find the right place is to trap and record the real, correct, places by hooking the actual mouse operations -- which is exactly what mouse macro creation does. Sorry, you need to create them again. At least you know about the more complicated ones now, and what to do. Regards Pete -
I don't know because I have no details and I cannot even look you up because I assume "ddfsx" is not your REAL name? Why on Earth keep yourself so totally anonymous and expect folks to know how to help? Are you sure you are entering it correctly, and not mixing up 1's and I's or O's and 0's, or even 2's and Z's? Best to cut and paste to be sure. If you can't sort it out, send me your registration details privately (not here), to petedowson@btconnect.com and I will check them. Include the FSUIPC.LOG and FSUIPC.KEY files, Zipped please. No, that is totally unrelated. Pete
-
CS727 Fuel Cut-Off Switches Not Working
Pete Dowson replied to signmanbob's topic in FSUIPC Support Pete Dowson Modules
FSUIPC doesn't touch any switch or axis unless you or a program asks it to. You've probably assigned something to make it happen. Remove your FSUIPC INI file and run FS again so it generates a default setting with nothing assigned. Pete -
The FSX replay 0628 = 0 problem
Pete Dowson replied to Slopey's topic in FSUIPC Support Pete Dowson Modules
How does one read messages displayed in graphics on screen? Seems like quite a lot of graphical analysisand made next to impossible if there's other red pixels around? No. Why would I? As far as I know there's been almost zero demand for those old offsets to be supported. Memory locations? Are you going back to the days of text-based screen buffers? Regards Pete -
FSUIPC Side By Side Errors
Pete Dowson replied to Stringbean's topic in FSUIPC Support Pete Dowson Modules
I'm sorry, it's been one of those days. People moaning and saying nasty things. I must admit it makes one "tetchy" sometimes. I still don't understand where you are coming from with this, but i did overreact. Apologies. Please take my word for it. As Documented, no harm is being done. I wrote it all up in the documentation especially to avoid rather inane exchanges like this one. Pete -
Help with Programming ProFlight Controllers
Pete Dowson replied to misterkleen's topic in FSUIPC Support Pete Dowson Modules
You assign them and calibrate them just like all the others. There's no mystery. They are all the same, just axes with values, to be assigned and calibrated. Pete -
FSUIPC Side By Side Errors
Pete Dowson replied to Stringbean's topic in FSUIPC Support Pete Dowson Modules
But you could look and find the side-by-side errors directly after FSX is fully started, as they occur when FSUIPC is initialised, right at the start. They are not real errors. I don't know why you don't believe me... what on Earth have I done to deserve it? What's all this about "living with it? What the blazes is it costing you? A few bytes of disk space in a log file? complain to MS about their stinking systems if you really feel so angry, but I would suggest you just ignore them as they are of absolutely no consequence! Gee. If you don't like the look of them, don't ***** look at them!!! :-( Pete -
Logitech G25 pedals and rudder
Pete Dowson replied to solex's topic in FSUIPC Support Pete Dowson Modules
You need to send it direct to FSUIPC calibration, for both. Then you need to actually calibrate the rudder, in FSUIPC. You seem to have missed that vital step! Pete -
FSUIPC Side By Side Errors
Pete Dowson replied to Stringbean's topic in FSUIPC Support Pete Dowson Modules
Does it? It's never done that to me. It should be checking the version! Of course. They are not only spurious, but they are fully explained in the documentation so that they wouldn't worry you. There's even a listing in the Contents. Nonsense! They are absolutely nothing to do with CTD and Screen freezes. They occur when FSUIPC initially runs whilst it is checking for the version of SimConnect it can use best. Please read what I write about these. There is no way you can stop them and they do absolutely no harm at all. There is no way I can program around them -- I complained to Microsoft about it three years ago and they confessed it was a weakness in Windows, which throws the error when a program "probes" for a side-by-side library to see if it can be used, even though such probing is the official way of doing it and provided in the Windows SDK. It is nothing to do with your problem. You need to look elsewhere. Pete -
Running EPIC USB on other PC than FS
Pete Dowson replied to Toby2's topic in FSUIPC Support Pete Dowson Modules
Hmm... have you checked with EPICUSB support? Isn't it still an active product? What's "LoadEPIC"? Is that a program supplied by RR to install the EPIC software? If your EPIC programming is designed to provide standard Windows-detectable button presses, then WideClient should see them and be able to send them to FSUIPC for programming. In fact Wideclient may be able to read them direct, I don't recall. If it is the axis facilities in an EPIC then I don't think there's anything which will work on those from a Networked PC. But I may be wrong. I haven't worked with or used an EPIC now for over ten years, except for updating my EPICINFO for FSX (an update actually untested by me on any real EPIC). I don't think there's anything in this forum about EPIC at all, really. Have you tried anywhere else? Isn't there a website from EPIC these days? I think it was hosted by FlightLink. There was also a user forum, some name similar to "bluesideup"? Regards Pete -
There was never any such reply! You are twisting the whole thread ridiculously. All you said was that the default autopilot wasn't so good and that, with the PMDG example, it could be better. And i agreed, it can be. As I explained, it just takes skill and timeand money therefore. I have neither the skill nor the time. Neither have you by the sound of it. You need to pursue your vendetta elsewhere. Good. I don't really want to hear from you again in any case. You either don't read or severely misread replies in any case, so it is a waste of effort. This has developed into a most unpleasant experience.
-
Ah, something completely different! WidevieW is by Luciano Napolitano and not anything of mine. Perhaps you mean WideFS? Why are you re-registering in any case? Updating the version is merely a matter of copying in the newer DLL. It doesn't affect Registration at all. Ah .. is this because of "i had to reload and format my hard drive", I just noticed? When you say it doesn't accept your registration, do you mean it actually rejects it when you enter it in the dialogue, or that it is accepted there but then FS still shows as unregistered next time you run it? If the former, then you are most certainly making a mistake. Maybe you are spelling your name differently, or your email address is not right? As the documentation points out, all three parts of what you enter MUST be correct, exactly as you were first informed. The name and email address are part of how it identifies you, uniquely. It amazes me how many ways folks have of mis-spelling their own names! ;-) Regards Pete