You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
31 lines
728 B
31 lines
728 B
4 months ago
|
/**
|
||
|
******************************************************************************
|
||
|
* @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
|