2019-05-07 02:18:18 +00:00
|
|
|
/*
|
|
|
|
* Copyright (C) 2019 Intel Corporation. All rights reserved.
|
2019-11-11 23:45:21 +00:00
|
|
|
* SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
|
2019-05-07 02:18:18 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
|
2019-05-17 09:15:25 +00:00
|
|
|
#ifndef _WATCHDOG_H_
|
|
|
|
#define _WATCHDOG_H_
|
|
|
|
|
|
|
|
#include "app_manager.h"
|
2019-05-07 02:18:18 +00:00
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
2019-05-17 09:15:25 +00:00
|
|
|
bool
|
|
|
|
watchdog_timer_init(module_data *module_data);
|
|
|
|
|
|
|
|
void
|
|
|
|
watchdog_timer_destroy(watchdog_timer *wd_timer);
|
|
|
|
|
|
|
|
void
|
|
|
|
watchdog_timer_start(watchdog_timer *wd_timer);
|
|
|
|
|
|
|
|
void
|
|
|
|
watchdog_timer_stop(watchdog_timer *wd_timer);
|
|
|
|
|
|
|
|
watchdog_timer*
|
|
|
|
app_manager_get_watchdog_timer(void *timer);
|
|
|
|
|
|
|
|
bool
|
|
|
|
watchdog_startup();
|
2019-05-07 02:18:18 +00:00
|
|
|
|
|
|
|
#ifdef __cplusplus
|
2019-05-17 09:15:25 +00:00
|
|
|
} /* end of extern "C" */
|
2019-05-07 02:18:18 +00:00
|
|
|
#endif
|
|
|
|
|
2019-05-17 09:15:25 +00:00
|
|
|
#endif /* _WATCHDOG_H_ */
|