123456789101112131415161718 |
- #ifndef BSP_CUSTOM_H
- #define BSP_CUSTOM_H
- #ifdef __cplusplus
- extern "C" {
- #endif
- #include "bsp.h"
- #include "hal_module_adapter.h"
- //enable wdt
- #define WDT_FEATURE_ENABLE 1
- void BSP_CustomInit(void);
- #ifdef __cplusplus
- }
- #endif
- #endif /* BSP_CUSTOM_H */
|