1 2 3 4 5 6 7 8 9
/* SPDX-License-Identifier: MIT */ #ifndef __WDT_H__ #define __WDT_H__ void wdt_disable(void); void wdt_reboot(void); #endif