#include "legato.h"
Go to the source code of this file.
Macros | |
#define | LE_WDOG_TIMEOUT_NEVER -1 |
#define | LE_WDOG_TIMEOUT_NOW 0 |
Functions | |
void | le_wdog_ConnectService (void) |
void | le_wdog_DisconnectService (void) |
void | le_wdog_Kick (void) |
void | le_wdog_Timeout (int32_t milliseconds) |
Legato Watchdog Service include file.
Copyright (C) Sierra Wireless Inc. Use of this work is subject to license.
#define LE_WDOG_TIMEOUT_NEVER -1 |
Suspend the watchdog so that it never times out.
#define LE_WDOG_TIMEOUT_NOW 0 |
Timeout immediately
void le_wdog_ConnectService | ( | void | ) |
Special values that have specific meaning when used as durations in Timeout():
Connect the current client thread to the service providing this API.
This function must be called before any other functions in this API. Normally, it's automatically called for the main thread, but must be explicitly called for other threads. For details, see Client-specific Functions.
This function is created automatically.
void le_wdog_DisconnectService | ( | void | ) |
Disconnect the current client thread from the service providing this API.
Normally, this function doesn't need to be called. After this function is called, there's no longer a connection to the service, and the functions in this API can't be used. For details, see Client-specific Functions.
This function is created automatically.
void le_wdog_Kick | ( | void | ) |
Kicks the watchdog timer.
Once the watchdog has been kicked it must be kicked again before the expiration of the current effective timeout else the configured WatchdogAction will be executed.
void le_wdog_Timeout | ( | int32_t | milliseconds | ) |
Set a time out.
The watchdog is kicked and a new effective timeout value is set. The new timeout will be effective until the next kick at which point it will revert to the original value.
[in] | milliseconds | The number of milliseconds until this timer expires |