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 11 #ifndef DRV_WDT_H__ 12 #define DRV_WDT_H__ 13 14 #define AB32_WDT_TIMEOUT_1MS 0 15 #define AB32_WDT_TIMEOUT_256MS 1 16 #define AB32_WDT_TIMEOUT_512MS 2 17 #define AB32_WDT_TIMEOUT_1024MS 3 18 #define AB32_WDT_TIMEOUT_2048MS 4 19 #define AB32_WDT_TIMEOUT_4096MS 5 20 #define AB32_WDT_TIMEOUT_8192MS 6 21 #define AB32_WDT_TIMEOUT_16384MS 7 22 23 #endif 24