Home
last modified time | relevance | path

Searched refs:WDT_FLAG_RESET_NONE (Results 1 – 18 of 18) sorted by relevance

/Zephyr-Core-3.6.0/tests/drivers/watchdog/wdt_basic_reset_none/src/
Dmain.c53 m_cfg_wdt0.flags = WDT_FLAG_RESET_NONE; in test_wdt_callback_reset_none()
113 m_cfg_wdt0.flags = WDT_FLAG_RESET_NONE; in test_wdt_bad_window_max()
/Zephyr-Core-3.6.0/drivers/watchdog/
Dwdt_xmc4xxx.c54 if (data->mode == WDT_FLAG_RESET_NONE && !data->is_serviced) { in wdt_xmc4xxx_isr()
126 if (cfg->flags == WDT_FLAG_RESET_NONE && cfg->callback == NULL) { in wdt_xmc4xxx_install_timeout()
Dwdt_opentitan.c106 if (cfg->flags != WDT_FLAG_RESET_NONE || bite->flags != WDT_FLAG_RESET_SOC) { in ot_aontimer_install_timeout()
145 if (cfg->flags == WDT_FLAG_RESET_NONE) { in ot_aontimer_install_timeout()
Dwdt_npm1300.c90 case WDT_FLAG_RESET_NONE: in wdt_npm1300_install_timeout()
Dwdt_ambiq.c101 case WDT_FLAG_RESET_NONE: in wdt_ambiq_install_timeout()
Dwdt_rpi_pico.c123 } else if ((cfg->flags & WDT_FLAG_RESET_MASK) == WDT_FLAG_RESET_NONE) { in wdt_rpi_pico_install_timeout()
Dwdt_cc13xx_cc26xx.c121 case WDT_FLAG_RESET_NONE: in wdt_cc13xx_cc26xx_setup()
Dwdt_sam.c177 case WDT_FLAG_RESET_NONE: in wdt_sam_install_timeout()
Dwdt_counter.c14 #define WDT_SUPPORTED_CFG_FLAGS (WDT_FLAG_RESET_NONE | WDT_FLAG_RESET_SOC)
Dwdt_shell.c28 [WDT_FLAG_RESET_NONE] = "none",
Dwdt_cc32xx.c134 if (data->flags != WDT_FLAG_RESET_NONE) { in wdt_cc32xx_isr()
Dwdt_esp32.c138 case WDT_FLAG_RESET_NONE: in wdt_esp32_install_timeout()
Dwdt_gecko.c197 case WDT_FLAG_RESET_NONE: in wdt_gecko_install_timeout()
Dwdt_sifive.c216 case WDT_FLAG_RESET_NONE: in wdt_sifive_install_timeout()
Dwdt_tco.c184 case WDT_FLAG_RESET_NONE: in tco_install_timeout()
Dwdt_andes_atcwdt200.c289 case WDT_FLAG_RESET_NONE: in wdt_atcwdt200_install_timeout()
Dwdt_nxp_fs26.c530 case WDT_FLAG_RESET_NONE: in wdt_nxp_fs26_install_timeout()
/Zephyr-Core-3.6.0/include/zephyr/drivers/
Dwatchdog.h54 #define WDT_FLAG_RESET_NONE (0 << WDT_FLAG_RESET_SHIFT) macro