How to use Watchdog on Wiced smart SDK 1.1

Tip / Sign in to post questions, reply, level up, and achieve exciting badges. Know more

cross mob
Anonymous
Not applicable

As title, Is there any API to use Watchdog on SDK 1.1?

I found some APIs in bleappfwu.h

void restartWatchdog(INT32 checkWatchDog);

void watchdogExpired(UINT32 unused);

But there is no instruction to use. Can somebody help me.

I'm using BCM902732_BLE_KIT and WICED-Smart-SDK-1.1.0.


Thanks.

0 Likes
1 Solution
MichaelF_56
Moderator
Moderator
Moderator
250 sign-ins 25 comments on blog 10 comments on blog

Take a look at: Increasing/Disabling the watchdog timer

extern void wdog_configure(UINT8 enable);

wdog_configure(FALSE) - this will disable the watchdog.

wdog_configure(TRUE) - this re/enable the watchdog with the default settings.

View solution in original post

0 Likes
1 Reply
MichaelF_56
Moderator
Moderator
Moderator
250 sign-ins 25 comments on blog 10 comments on blog

Take a look at: Increasing/Disabling the watchdog timer

extern void wdog_configure(UINT8 enable);

wdog_configure(FALSE) - this will disable the watchdog.

wdog_configure(TRUE) - this re/enable the watchdog with the default settings.

0 Likes