drv_wdt.h 568 B

1234567891011121314151617181920212223
  1. /*
  2. * Copyright (c) 2020-2021, Bluetrum Development Team
  3. *
  4. * SPDX-License-Identifier: Apache-2.0
  5. *
  6. * Change Logs:
  7. * Date Author Notes
  8. * 2021-03-11 Meco Man first version
  9. */
  10. #ifndef DRV_WDT_H__
  11. #define DRV_WDT_H__
  12. #define AB32_WDT_TIMEOUT_1MS 0
  13. #define AB32_WDT_TIMEOUT_256MS 1
  14. #define AB32_WDT_TIMEOUT_512MS 2
  15. #define AB32_WDT_TIMEOUT_1024MS 3
  16. #define AB32_WDT_TIMEOUT_2048MS 4
  17. #define AB32_WDT_TIMEOUT_4096MS 5
  18. #define AB32_WDT_TIMEOUT_8192MS 6
  19. #define AB32_WDT_TIMEOUT_16384MS 7
  20. #endif