This repository has been archived on 2025-02-28. You can view files and clone it, but cannot push or open issues or pull requests.
|
#ifndef __IWDGS_H__
|
|
#define __IWDGS_H__
|
|
|
|
#include "main.h"
|
|
#include "lib.h"
|
|
|
|
/// 喂狗
|
|
#define WATCHDOG_RESET() LL_IWDG_ReloadCounter(IWDG)
|
|
|
|
extern BOOL check_watchdog_reset(void);
|
|
extern void debug_freeze_watchdog(void);
|
|
extern void debug_unfreeze_watchdog(void);
|
|
|
|
#endif
|