12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879 |
- #ifndef NRF_BOOTLOADER_WDT_H
- #define NRF_BOOTLOADER_WDT_H
- #include "sdk_errors.h"
- #ifdef __cplusplus
- extern "C" {
- #endif
- void nrf_bootloader_wdt_init(void);
- void nrf_bootloader_wdt_feed(void);
- #ifdef __cplusplus
- }
- #endif
- #endif
|