23 lines
578 B
C
23 lines
578 B
C
/*----------------------------------------------------------------------------
|
|
* Copyright (c) Fenda Technologies Co., Ltd. 2020. All rights reserved.
|
|
*
|
|
* Description: watchdog_api.h
|
|
*
|
|
* Author: saimen
|
|
*
|
|
* Create: 2022-7-16
|
|
*--------------------------------------------------------------------------*/
|
|
|
|
#ifndef WATCHDOG_API_H
|
|
#define WATCHDOG_API_H
|
|
|
|
#include <stdint.h>
|
|
|
|
extern void watchdog_api_init(void);
|
|
extern uint8_t watchdog_api_get_status(void);
|
|
extern uint32_t watchdog_api_get_rst_ms(void);
|
|
extern void watchdog_api_feed(void);
|
|
|
|
#endif
|
|
|