Hi there
I'm in the process of making a airbus cockpit using the Wilco model.
While trying to map all input/output using FSUIPC, I'm having this strange problem with FSUIPC (4.938c reg)
I'm using the following program:
...
while (true) {
FSUIPC_Read(0x560E, 1, &ILS, &dwResult1); // Wilco AIRBUS ILS Button
FSUIPC_Process(&dwResult2);
printf("%d\n", ILS);
Sleep(10000);
}
...
The program works ok...
.. if i use FSX panels to change ILS ... the value is read correctly by the program.
.. however after 10 min... the reads don't reflect anymore the state of the panel.
.. it basically get stucked in the lastest state.
Meanwhile , the panels work ok and the plane continues to respond correctly.
I'm using a fresh installed PC with Win7, FSX Accelerator, and VC++ 2010 Express.
(this is a deedicated FSX PC....so nothing else is installed)
I've already tested with other memory positions and it looks like all Wilco specific variables have the same problem.
Any ideas, suggestions , recomendations ?
thx