| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586 |
- /**
- * @file wm_watchdog.h
- *
- * @brief watchdog Driver Module
- *
- * @author dave
- *
- * Copyright (c) 2014 Winner Microelectronics Co., Ltd.
- */
- #ifndef WM_WATCHDOG_H
- #define WM_WATCHDOG_H
- /**
- * @defgroup Driver_APIs Driver APIs
- * @brief Driver APIs
- */
- /**
- * @addtogroup Driver_APIs
- * @{
- */
- /**
- * @defgroup WDG_Driver_APIs WDG Driver APIs
- * @brief WDG driver APIs
- */
- /**
- * @addtogroup WDG_Driver_APIs
- * @{
- */
- /**
- * @brief This function is used to feed the dog.
- *
- * @param None
- *
- * @return None
- *
- * @note None
- */
- void tls_watchdog_clr(void);
- /**
- * @brief This function is used to init and start the watchdog.
- *
- * @param[in] usec microseconds
- *
- * @return None
- *
- * @note None
- */
- void tls_watchdog_init(u32 usec);
- /**
- * @brief This function is used to deinit watchdog
- *
- * @param[in] None
- *
- * @return None
- *
- * @note None
- */
- void tls_watchdog_deinit(void);
- /**
- * @brief This function is used to reset the system.
- *
- * @param None
- *
- * @return None
- *
- * @note None
- */
- void tls_sys_reset(void);
- /**
- * @}
- */
- /**
- * @}
- */
- #endif /* WM_WATCHDOG_H */
|