20 lines
261 B
C
20 lines
261 B
C
|
|
#ifndef __HARDWARE_WATCHDOG_H__
|
||
|
|
#define __HARDWARE_WATCHDOG_H__
|
||
|
|
|
||
|
|
#include "reg.h"
|
||
|
|
#include "watchdog_reg.h"
|
||
|
|
|
||
|
|
|
||
|
|
|
||
|
|
#ifdef __cplusplus
|
||
|
|
extern "C" {
|
||
|
|
#endif
|
||
|
|
|
||
|
|
void watchdog_start_tick(uint16_t cycles);
|
||
|
|
|
||
|
|
#ifdef __cplusplus
|
||
|
|
}
|
||
|
|
#endif
|
||
|
|
|
||
|
|
#endif /* __HARDWARE_WATCHDOG_H__ */
|