bsp_wdog.h 171 B

1234567891011
  1. #ifndef _BSP_WDOG_H
  2. #define _BSP_WDOG_H
  3. #include "Platform.h"
  4. void xc_wdog_init(uint32_t counter_value);//看门狗初始化
  5. void xc_wdog_feed(void);//喂狗
  6. #endif