Jump to content
The simFlight Network Forums

skalarki

Members
  • Posts

    6
  • Joined

  • Last visited

About skalarki

  • Birthday 01/01/1970

Contact Methods

  • Website URL
    http://www.a320-project.skalarki.co.uk

Profile Information

  • Location
    Birmingham, UK

skalarki's Achievements

Newbie

Newbie (1/14)

0

Reputation

  1. That's right Pete, I know that is out of 16-bit integer. But the question is why that's happend after installing new FSUIPC4.60. With 4.40 version reading was correct 16-bit only? I was thinking, probably something has changed in nev version and this is the reason. Anyway I will check with FSInterrogate as you suggest. Thank you Marcin
  2. Hi I was using this offset to read and write reference pressure. Everything was ok except fact I could read range only from 1000 hPa and whatever below still I am reading 1000 hPa. FSUIPC 4.40 registered Then I downloaded FSUIPC 4.60 and now my reading is like that: 1062485632 for 1000 hPa in fsx Am I missing something? Thanks for help.
  3. Hi I need this time some help with that task. Simply need to run saved mouse macro by clicking button in my C# application. I am using FSX and registered version of FSUIPC. I will appreciate for any help or pointing me to right direction. Thanks Marcin
  4. Hi Pete Thanks for quick reply, but unfortunatelly I don't know completely what are you talking about, sorry for that but my knowledge of C is very limited. I am trying to learn something to get my project working. Is there any chance to get any link or more clear tips for me. I will appreciate very much for more help. Regards Marcin
  5. Hi As I am new on this forum I'd like to say hello to everybody. From some time I am into little project development. This is small I/O boards project based on PIC microcontrollers. I have done PIC part and now I am trying to connect everything to FSUIPC. I am not very good C programmer but I will try to build simple application to connect my hardware with FSUIPC. I have tried sample code from C SDK library and I am getting errors, which I can't fix. This is my C++ code /* UIPChello.c Displays UIPC link data in a message box */ #include "stdafx.h" #include #include "FSUIPC_User.h" char *pszErrors[] = { "Okay", "Attempt to Open when already Open", "Cannot link to FSUIPC or WideClient", "Failed to Register common message with Windows", "Failed to create Atom for mapping filename", "Failed to create a file mapping object", "Failed to open a view to the file map", "Incorrect version of FSUIPC, or not FSUIPC", "Sim is not version requested", "Call cannot execute, link not Open", "Call cannot execute: no requests accumulated", "IPC timed out all retries", "IPC sendmessage failed all retries", "IPC request contains bad data", "Maybe running on WideClient, but FS not running on Server, or wrong FSUIPC", "Read or Write request cannot be added, memory for Process is full", }; int WINAPI WinMain(HINSTANCE hInstance, HINSTANCE hPrevInstance, PSTR szCmdLine, int iCmdShow) { DWORD dwResult; if (FSUIPC_Open(SIM_ANY, &dwResult)) { char chMsg[128], chTimeMsg[64]; char chTime[3]; BOOL fTimeOk = TRUE; static char *pFS[] = { "FS98", "FS2000", "CFS2", "CFS1", "Fly!", "FS2002", "FS2004" }; // Change made 060603 // Okay, we're linked, and already the FSUIPC_Open has had an initial // exchange with FSUIPC to get its version number and to differentiate // between FS's. // Now to auto-Register with FSUIPC, to save the user of an Unregistered FSUIPC // having to Register UIPCHello for us: static char chOurKey[] = "IKB3BI67TCHE"; // As obtained from Pete Dowson if (FSUIPC_Write(0x8001, 12, chOurKey, &dwResult)) FSUIPC_Process(&dwResult); // Process the request(s) // I've not checked the reslut of the above -- if it didn't register us, // and FSUIPC isn't fully user-Registered, the next request will not // return the FS lock time // As an example of retrieving data, well also get the FS clock time too: if (!FSUIPC_Read(0x238, 3, chTime, &dwResult) || // If we wanted other reads/writes at the same time, we could put them here !FSUIPC_Process(&dwResult)) // Process the request(s) fTimeOk = FALSE; // Now display all the knowledge we've accrued: if (fTimeOk) wsprintf(chTimeMsg, "Request for time ok: FS clock = %02d:%02d:%02d", chTime[0], chTime[1], chTime[2]); else wsprintf(chTimeMsg, "Request for time failed: %s", pszErrors[dwResult]); wsprintf(chMsg, "Sim is %s, FSUIPC Version = %c.%c%c%c%c\r%s", (FSUIPC_FS_Version && (FSUIPC_FS_Version <= 7)) ? pFS[FSUIPC_FS_Version - 1] : "Unknown FS", // Change made 060603 '0' + (0x0f & (FSUIPC_Version >> 28)), '0' + (0x0f & (FSUIPC_Version >> 24)), '0' + (0x0f & (FSUIPC_Version >> 20)), '0' + (0x0f & (FSUIPC_Version >> 16)), (FSUIPC_Version & 0xffff) ? 'a' + (FSUIPC_Version & 0xff) - 1 : ' ', chTimeMsg); MessageBox (NULL, chMsg, "UIPChello: Link established to FSUIPC", 0) ; } else MessageBox (NULL, pszErrors[dwResult], "UIPChello: Failed to open link to FSUIPC", 0) ; FSUIPC_Close(); // Closing when it wasn't open is okay, so this is safe here return 0 ; } And errors I'm getting after debuging in VISUAL C++ 2005: 1>------ Build started: Project: test2, Configuration: Debug Win32 ------ 1>Compiling... 1>test2.cpp 1>.\test2.cpp(28) : error C2373: 'WinMain' : redefinition; different type modifiers 1> C:\Program Files\Microsoft Platform SDK for Windows Server 2003 R2\Include\winbase.h(1875) : see declaration of 'WinMain' 1>Build log was saved at "file://c:\Documents and Settings\MEDIA\My Documents\Visual Studio 2005\Projects\test2\test2\Debug\BuildLog.htm" 1>test2 - 1 error(s), 0 warning(s) ========== Build: 0 succeeded, 1 failed, 0 up-to-date, 0 skipped ========== I was trying to google it but nothing helps. Anyone can help me with this code, please. Thanks in advance.
×
×
  • 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.