rp2040/driver/inc/watchdog.h
2025-06-01 16:18:31 +08:00

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__ */