[Feature]Upload Modem source code
Change-Id: Id4294f30faced84d3e6fd6d5e61e1111bf287a37
diff --git a/mcu/interface/driver/peripheral/wdt_hw_public.h b/mcu/interface/driver/peripheral/wdt_hw_public.h
new file mode 100644
index 0000000..e4f4e58
--- /dev/null
+++ b/mcu/interface/driver/peripheral/wdt_hw_public.h
@@ -0,0 +1,26 @@
+#ifndef WDT_PUBLIC_H
+#define WDT_PUBLIC_H
+
+#include "drv_features_wdt.h"
+#include "reg_base.h"
+#include "kal_general_types.h"
+
+
+extern const kal_uint32 g_WATCHDOG_RESTART_REG;
+extern const kal_uint32 g_WATCHDOG_RESTART_VALUE;
+extern const kal_uint32 g_ABNORMAL_RST_REG;
+extern const kal_uint32 g_ABNORMAL_RST_VAL;
+
+//WDT_RESINTERVAL will be 0xfff(default) when the first bootup, then WDT_RESINTERVAL will be 0xffa when wdt_init()
+//if the value is 0xfff when bootup,we will kown this is the first bootup or normal reset
+//if the value is 0ffa when bootup,we will kown this is abnormal reset
+extern kal_bool Is_WDT_Init(void);
+
+extern kal_uint32 Get_WATCHDOG_BASE(void);
+
+extern kal_uint32 Get_WATCHDOG_RESTART_CMD(void);
+
+
+#endif
+
+