bsp_wdt.h 275 B

1234567891011121314
  1. #ifndef __bsp_wdt_h__
  2. #define __bsp_wdt_h__
  3. #include <stdbool.h>
  4. #include <stdint.h>
  5. #include <string.h>
  6. #include "sdk_common.h"
  7. #include "SEGGER_RTT.h"
  8. #include "usr_config.h"
  9. void watchdog_init(void);
  10. void feed_watchdog(void);
  11. uint32_t Get_FeedWatchDogTime(void);
  12. #endif