mcu_hi3321_watch/tjd/driver/watchdog/watchdog_api.h
2025-05-26 20:15:20 +08:00

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