bsp_custom.h 259 B

123456789101112131415161718
  1. #ifndef BSP_CUSTOM_H
  2. #define BSP_CUSTOM_H
  3. #ifdef __cplusplus
  4. extern "C" {
  5. #endif
  6. #include "bsp.h"
  7. #include "hal_module_adapter.h"
  8. //enable wdt
  9. #define WDT_FEATURE_ENABLE 1
  10. void BSP_CustomInit(void);
  11. #ifdef __cplusplus
  12. }
  13. #endif
  14. #endif /* BSP_CUSTOM_H */