/** ****************************************************************************** * @copyright Copyright (C), 2016-2022, ConvenientPower. Co., Ltd. * @file drv_watchdog.h * @version 1.0 * @author qing.cheng * @date 2022-10-24 * @brief Header file of DRV_WATCHDOG_H module. ****************************************************************************** */ #ifndef _DRV_WATCHDOG_H_ #define _DRV_WATCHDOG_H_ #include "core_comm.h" /* * @brief drv_watchdog_init * @param timeout_ms (reset time in ms) * @note null * @retval null */ void drv_watchdog_init(uint32_t timeout_ms); /* * @brief drv_watchdog_feed * @param null * @note null * @retval null */ void drv_watchdog_feed(void); #endif