Home
last modified time | relevance | path

Searched refs:WDT_FLAG_RESET_MASK (Results 1 – 6 of 6) sorted by relevance

/Zephyr-latest/drivers/watchdog/
Dwdt_ene_kb1200.c93 if ((config->flags & WDT_FLAG_RESET_MASK) == WDT_FLAG_RESET_SOC) { in wdt_kb1200_install_timeout()
96 } else if ((config->flags & WDT_FLAG_RESET_MASK) == WDT_FLAG_RESET_CPU_CORE) { in wdt_kb1200_install_timeout()
Dwdt_rpi_pico.c133 } else if ((cfg->flags & WDT_FLAG_RESET_MASK) == WDT_FLAG_RESET_NONE) { in wdt_rpi_pico_install_timeout()
142 data->reset_type = (cfg->flags & WDT_FLAG_RESET_MASK); in wdt_rpi_pico_install_timeout()
Dwdt_npm2100.c78 switch (timeout->flags & WDT_FLAG_RESET_MASK) { in wdt_npm2100_install_timeout()
Dwdt_npm1300.c89 switch (timeout->flags & WDT_FLAG_RESET_MASK) { in wdt_npm1300_install_timeout()
Dwdt_cc13xx_cc26xx.c120 switch ((data->flags & WDT_FLAG_RESET_MASK)) { in wdt_cc13xx_cc26xx_setup()
/Zephyr-latest/include/zephyr/drivers/
Dwatchdog.h52 #define WDT_FLAG_RESET_MASK (0x3 << WDT_FLAG_RESET_SHIFT) macro