HAI SDK and User Settings

psharrock

Member
Hi, hopefully someone can help with my problem?

I have written code that successfully requests user setting data, and can receive this data.

However, I cannot find anyway to update HAC with this new information.



I have tried using CopyAuxStatus and CopyStatus but none appear to update HAC



Could anyone possibly give me an example line of code to update the HAC with user setting status info.



Here is my code to date



clsOL2MsgStatus MSG = new clsOL2MsgStatus(_hac.Connection, B);
for (int i = 0; i < MSG.UserSettingStatusCount(); i++)
{


_hac.UserSettings[_requestedUserSettingDataID + i].CopyAuxStatus(MSG, (byte)i);

_hac.UserSettings[_requestedUserSettingDataID + i].CopyStatus(MSG, (byte)i);
_hac.UserSettings.CopyAuxStatus(MSG, 0);
}



All the above attempts to update hac do not work, and I have tried each one separately.





Should unsolicited message be received for User Setting changes? The reason for asking is that none appear to have been received to date



My Omnipro firmware is 3.8A


Does anyone have any great ideas?

Paul
 
Answer posted on HAI Developer Forun where you psted the same question.

FYI: The HAI Developer Forum is the offical support forum for the SDK and is monitored by HAI engineers.
 
Back
Top