How can I add delay of 10 seconds in Home Appliance application of Zigbee?

キャンセル
次の結果を表示 
表示  限定  | 次の代わりに検索 
もしかして: 

How can I add delay of 10 seconds in Home Appliance application of Zigbee?

1,742件の閲覧回数
aamirlatif
Contributor I

Hi,

I need suggestion that how can I add delay of 10 seconds in Home Appliance application of Zigbee?

I will be thankful if you can guide me. I know there are timers but I am not able to use them to server my purpose.

Regards

Thanks

タグ(2)
0 件の賞賛
返信
1 返信

1,543件の閲覧回数
EarlOrlando
Senior Contributor II

Hello Aamir,

I think that the software timers are the best solution to generate a delay. Which is the problem with the timers that doesn't serve your purpose?

The software timers needs a callback, this callback is called either periodically or once (depending on the configuration). This callback needs to be defined as listed below:

#include "TMR_Interface.h"

void GenericTimerCallback(tmrTimerID_t timerID);

It is mandatory to allocate the timer before use it:

tmrTimerID_t timerID = TMR_AllocateTimer();

There is a function to start the timer:

int miliseconds = 10000;

TMR_StartTimer(timerID, gTmrSingleShotTimer_c, TmrMilliseconds(miliseconds), GenericTimerCallback);

The parameter gTmrSingleShotTimer_c can be changed to be gTmrIntervalTimer_c (periodical).

Also, there are another function to stop it.

TMR_StopTimer(timerID);

I recommend you to take a look into the file PLM/Interface/TMR_Interface.h to obtain a better description of these functions and macros.

I hope this helps.

Best regards,

Earl.

0 件の賞賛
返信