optical/NxBase/iwdog.h
2025-09-04 09:45:08 +08:00

16 lines
191 B
C
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

#ifndef __IWDOG_H__
#define __IWDOG_H__
#include "config.h"
// 初始化看门狗
// ms 看门狗复位时间单位是ms支持最大值 6553
void InitIWDog(u16 ms);
// 喂狗
void FeedIWDog(void);
#endif