Home
last modified time | relevance | path

Searched refs:SLP_PU (Results 1 – 8 of 8) sorted by relevance

/hal_espressif-latest/components/soc/esp32c3/include/soc/
Dio_mux_reg.h28 #define SLP_PU (BIT(3)) macro
77 #define PIN_SLP_PULLUP_ENABLE(PIN_NAME) SET_PERI_REG_MASK(PIN_NAME,SLP_PU)
78 #define PIN_SLP_PULLUP_DISABLE(PIN_NAME) CLEAR_PERI_REG_MASK(PIN_NAME,SLP_PU)
/hal_espressif-latest/components/soc/esp32c2/include/soc/
Dio_mux_reg.h29 #define SLP_PU (BIT(3)) macro
78 #define PIN_SLP_PULLUP_ENABLE(PIN_NAME) SET_PERI_REG_MASK(PIN_NAME,SLP_PU)
79 #define PIN_SLP_PULLUP_DISABLE(PIN_NAME) CLEAR_PERI_REG_MASK(PIN_NAME,SLP_PU)
/hal_espressif-latest/components/soc/esp32/include/soc/
Dio_mux_reg.h28 #define SLP_PU (BIT(3)) macro
72 #define PIN_SLP_PULLUP_ENABLE(PIN_NAME) SET_PERI_REG_MASK(PIN_NAME,SLP_PU)
73 #define PIN_SLP_PULLUP_DISABLE(PIN_NAME) CLEAR_PERI_REG_MASK(PIN_NAME,SLP_PU)
/hal_espressif-latest/components/soc/esp32c6/include/soc/
Dio_mux_reg.h27 #define SLP_PU (BIT(3)) macro
76 #define PIN_SLP_PULLUP_ENABLE(PIN_NAME) SET_PERI_REG_MASK(PIN_NAME,SLP_PU)
77 #define PIN_SLP_PULLUP_DISABLE(PIN_NAME) CLEAR_PERI_REG_MASK(PIN_NAME,SLP_PU)
/hal_espressif-latest/components/soc/esp32h2/include/soc/
Dio_mux_reg.h27 #define SLP_PU (BIT(3)) macro
94 #define PIN_SLP_PULLUP_ENABLE(PIN_NAME) SET_PERI_REG_MASK(PIN_NAME,SLP_PU)
95 #define PIN_SLP_PULLUP_DISABLE(PIN_NAME) CLEAR_PERI_REG_MASK(PIN_NAME,SLP_PU)
/hal_espressif-latest/components/soc/esp32s3/include/soc/
Dio_mux_reg.h27 #define SLP_PU (BIT(3)) macro
76 #define PIN_SLP_PULLUP_ENABLE(PIN_NAME) SET_PERI_REG_MASK(PIN_NAME,SLP_PU)
77 #define PIN_SLP_PULLUP_DISABLE(PIN_NAME) CLEAR_PERI_REG_MASK(PIN_NAME,SLP_PU)
/hal_espressif-latest/components/soc/esp32s2/include/soc/
Dio_mux_reg.h28 #define SLP_PU (BIT(3)) macro
77 #define PIN_SLP_PULLUP_ENABLE(PIN_NAME) SET_PERI_REG_MASK(PIN_NAME,SLP_PU)
78 #define PIN_SLP_PULLUP_DISABLE(PIN_NAME) CLEAR_PERI_REG_MASK(PIN_NAME,SLP_PU)
/hal_espressif-latest/components/hal/esp32/include/hal/
Dgpio_ll.h210 return REG_GET_BIT(GPIO_PIN_MUX_REG[gpio_num], SLP_PU) ? true : false; in gpio_ll_sleep_pullup_is_enabled()