1

avl_evts method

Тема: avl_evts method

Hello,

I was receiving events using avl_evts method. as you can see here my device sends event code 21, with parameters (http://awesomescreenshot.com/0e95jukmc7) but I am unable to get the parameters using the  avl_evts method. only some parameters from the attached screen shot will be available. I mainly need to get rule_data2 parameter to serve my purpose. Please advise !

Thanks

2

avl_evts method

Re: avl_evts method

Hi

avl_events response depends on flags you passed in core/update_data_flags, so you have to decide what information you need

If you pass 0x100000 you'll get event about parameters changes (without real message inside it)
If you pass 0x400 - you'll get event about every new message (pure registered message, without information about message params changes)

3

avl_evts method

Re: avl_evts method

Thanks !!