- Messages
- 238
- Country

Hi,
I'm requesting data every one second with
hr = SimConnect_RequestDataOnSimObject(hSimConnect, REQUEST_LLA, DEFINTION_LLA,
SIMCONNECT_OBJECT_ID_USER, SIMCONNECT_PERIOD_SECOND, 0, 0, 0, 0);
but I have need to get data every half or quarter second. Requesting it every frame seems excessively frequent. Are there ways to tune it to get more than once a second without going down to the once per frame? I guess I could use this...
hr = SimConnect_RequestDataOnSimObject(hSimConnect, REQUEST_LLA, DEFINTION_LLA, SIMCONNECT_OBJECT_ID_USER, SIMCONNECT_PERIOD_VISUAL_FRAME, 0, 0, 10, 0);
...but I wanted to see if there were best practices or more practical methods.
Gregg
I'm requesting data every one second with
hr = SimConnect_RequestDataOnSimObject(hSimConnect, REQUEST_LLA, DEFINTION_LLA,
SIMCONNECT_OBJECT_ID_USER, SIMCONNECT_PERIOD_SECOND, 0, 0, 0, 0);
but I have need to get data every half or quarter second. Requesting it every frame seems excessively frequent. Are there ways to tune it to get more than once a second without going down to the once per frame? I guess I could use this...
hr = SimConnect_RequestDataOnSimObject(hSimConnect, REQUEST_LLA, DEFINTION_LLA, SIMCONNECT_OBJECT_ID_USER, SIMCONNECT_PERIOD_VISUAL_FRAME, 0, 0, 10, 0);
...but I wanted to see if there were best practices or more practical methods.
Gregg
