bsp_wdt.h 238 B

12345678910111213
  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. #endif