initial commit

This commit is contained in:
2025-08-05 15:53:44 +08:00
commit 09dc02ae52
553 changed files with 137665 additions and 0 deletions

View File

@@ -0,0 +1,32 @@
#ifndef __HAL_INTERFACE_WATCHDOG_H__
#define __HAL_INTERFACE_WATCHDOG_H__
#include <stdint.h>
#include "hal.h"
#ifdef __cplusplus
extern "C"
{
#endif /* __cplusplus */
uint32_t hal_watchdog_init();
uint32_t hal_watchdog_deinit();
uint32_t hal_watchdog_start();
uint32_t hal_watchdog_stop();
void *hal_watchdog_kick(void *param);
//return interval unit ms
uint32_t hal_watchdog_get_interval();
#ifdef __cplusplus
}
#endif /* __cplusplus */
#endif