123456789101112131415161718192021222324252627282930313233343536373839404142434445 |
- #ifdef __cplusplus
- extern "C" {
- #endif
- void stm32_watchdog_init(void);
- void stm32_watchdog_pat(void);
- bool stm32_was_watchdog_reset(void);
- void stm32_watchdog_save_reason(void);
- void stm32_watchdog_clear_reason(void);
- void stm32_watchdog_save(const uint32_t *data, uint32_t nwords);
- void stm32_watchdog_load(uint32_t *data, uint32_t nwords);
-
- #ifdef __cplusplus
- }
- #endif
-
|