Jump to content
The simFlight Network Forums

pilotjohn

Members
  • Posts

    377
  • Joined

  • Last visited

  • Days Won

    3

Everything posted by pilotjohn

  1. I have not tried it or looked when it happened. If it happens again I will check. These seem to happen at inopportune times (this time on short final), so didn't have a lot of time to troubleshoot (had a few pauses before I was going to crash). I was triggering Pause with direct (in-sim) bound default keys. This is the first time. I don't do long flights (pretty much all are <30 mins) and it seems these all take time to manifest themselves. There have no changes in my platform/peripherals, except the upgrade to FSUIPC 7.0.1 and the Profile specific assignment for piston aircraft. Ack.
  2. This issue is similar to when FSUIPC would crash (and control would be lost), however this time there was no crash of FSUIPC, but MSFS would not react to input. You'll see a few pauses where I tried to troubleshoot, but it did not restore input. I had to quit FSUIPC and only after restarting it did controls start working again (without sim restart). The "prev" log is where MSFS stops responding to input. FSUIPC7_prev.zip FSUIPC7.ini FSUIPC7.log
  3. Ack, will let you know if I see crashes.
  4. Ok, so I can create a profile and remove the buttons/keys, which would then apply the generic profile?
  5. What would you suggest for change calibration type based on engine type? For example, I'd like mixture to not have a "reverse" zone (e.g. cutoff) for piston engines, but should have one for turbines. Or would you suggest using profile specific settings? Is there a way to apply one certain aspect via a profile, like the mixture (but not, say, buttons)?
  6. Ok, I removed AxisScanOnSimConnectOpen, and will let you know. My ipcinit and ipcReady simply launch some AutoHotkey scripts, the first to get FltPlan GO connected, the other to change my StreamDeck button profiles for the specific aircraft. FSUIPC7.ini
  7. I've started experiencing new FSUIPC crashes with the latest patch of MSFS, that don't seem to be related to the transmit client errors. Faulting application name: FSUIPC7.exe, version: 7.0.0.0, time stamp: 0x5f9c2f1a Faulting module name: ntdll.dll, version: 10.0.19041.546, time stamp: 0x5b56177b Exception code: 0xc0000374 Fault offset: 0x00000000000fed29 Faulting process id: 0x5640 Faulting application start time: 0x01d6b061a31e5c25 Faulting application path: D:\IslandJohn\FSUIPC7\FSUIPC7.exe Faulting module path: C:\Windows\SYSTEM32\ntdll.dll Report Id: bba1c786-f4c1-4c87-9b49-07142d488354 Faulting package full name: Faulting package-relative application ID: FSUIPC7.log
  8. I think that's a great idea, it makes it completely customizable.
  9. This is an interesting feature. Any chance this could made so that these are based on the stall speed (e.g. a fraction) instead of absolute values?
  10. It's offset 123E. Let me try to clarify what I'm trying to achieve. I have a button which I would like to use to toggle through available fuel tanks selections in sequence (e.g. L, R, Both, Aux L, Aux R for example). In order to do this, I need to programmatically determine which tanks are available in the aircraft through some FSUIPC offset. I see there's an offset for finding the number of tanks, but I didn't notice one for which tanks are available.
  11. I see there's a "number of fuel selectors available in this aircraft" reading, but how can I tell which specific ones are available? I'd like to assign a key to sequentially toggle through them (except the off position) with a script, but I would need to know which ones I can switch to.
  12. I was confused between the offset... I see, thanks.
  13. You mean use 0x3F02 for the event trigger instead?
  14. I have the following ipcReady.lua to switch my StreamDeck profiles based on aircraft (button layout). function onload(offs, data) acft = ipc.readSTR(0x3D00, 256) ipc.log("loading StreamDeck profile for: "..acft) if string.match(acft, "XCub") then os.execute('start D:\\IslandJohn\\Scripts\\sd\\profile_msfs_xcub.ahk') else os.execute('start D:\\IslandJohn\\Scripts\\sd\\profile_msfs.ahk') end end event.offset(0x3F02, "UW", "onload") This works well as it triggers right on the screen with the "Ready to Fly" button. However it also seems to trigger after I'm in the aircraft (as I started a takeoff roll for example). It also triggers on return to the main menu. Is this expected? Is there a better offset to use? I can always just keep state for last loaded profile, just curious.
  15. Here's another instance of FSUIPC crashing (and me, just before landing on a bush strip in strong winds:). This has "extras" logging enabled. I will now turn on UseAIClient=No. logs.zip
  16. Ok, I'll start with Extras logging to not compound issues, until it occurs again (seems to be less frequent).
  17. Yes, I'm just doing this for OCD reasons and to keep the numbering grouped in some way for compound buttons. 🙂 I assigned these, but haven't flow a plane to try them yet (I believe they're spoilers), and was not using them in this case (unless I accidentally pushed them). Ack, will do.
  18. Well... I finally managed to catch this in the act again (FSUIPC crash) with the latest FSUIPC and 1.9.3.0, while also having SimConnect logging on. All logs and settings attached. logs.zip
  19. This is awesome, as I couldn't find a way to toggle individual batteries. This works in the Baron for example, so great find! Unfortunately this doesn't seem to work for Toggle Avionics Master (if param is not 0, it does nothing). How did you do the "trace"?
  20. Thanks... is there a way to see what events are connected to what things in the aircraft model? For example, on some planes Avionics Mater switch events don't work. Are there options to try to inspect what should be sent instead?
  21. So does updating an offset (thus simvar) sometimes have the same ultimate effect/result as a control would? It would be nice if this document could split into a table (like the spreadsheet for the offsets) so that we could filter on what works for MSFS (e.g. a checkbox column for each sim instead of the colors). Ack, will try that. However, if I'm trying to make a generic starter button (which would need to send both magneto start and turbine start), there's no way to do this with repeat, correct? If I have to resort to Lua for some things, a QQ: are the scripts loaded each time they're activated (e.g. button press), or are they cached in some way?
  22. I noticed that some of the events listed in offsetStatus doc are not in the send control drop down, for example "GENERAL ENG STARTER:1". Are they supposed to be? Also are these new events toggles or settable? Lastly, in general (for example TOGGLE_STARTER1) how can I achieve a "hold" behavior? If I use toggle starter it will toggle on for only a little while, not enough for the engine to start. Is there a way to achieve a "on while held" functionality?
  23. In general, should we use "custom control" and the offsets, or the named event from the dropdown, for button presses? Or, does it not matter?
  24. Thanks. Spot checking, it seems like the official event name from this doc to the dropdown list is to TitleCase it, is that correct?
×
×
  • 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.