Lines Matching refs:be
13 …clocked from APB_CLK are powered off. The only parts of the chip which can still be powered on are:
23 …be done using several sources. These sources can be combined, in this case the chip will wake up w…
27 … or :cpp:func:`esp_deep_sleep_start` APIs. At this point the hardware will be configured according…
34 …ler_disable`, :cpp:func:`esp_wifi_stop`). WiFi and BT connections will not be maintained in deep s…
41 …ng appropriate calls (:cpp:func:`esp_wifi_stop`). WiFi connection will not be maintained in deep s…
43 If WiFi connection needs to be maintained, enable WiFi modem sleep, and enable automatic light slee…
51 RTC controller has a built in timer which can be used to wake up the chip after a predefined amount…
57 This wakeup mode doesn't require RTC peripherals or RTC memories to be powered on during sleep.
59 :cpp:func:`esp_sleep_enable_timer_wakeup` function can be used to enable deep sleep wakeup using a …
70 …keup mode when RTC peripherals are not forced to be powered on (i.e. ESP_PD_DOMAIN_RTC_PERIPH shou…
72 :cpp:func:`esp_sleep_enable_touchpad_wakeup` function can be used to enable this wakeup source.
79 …l. RTC IO is part of RTC peripherals power domain, so RTC peripherals will be kept powered on duri…
81 …ed in this mode, internal pullup or pulldown resistors can also be used. They need to be configure…
87 :cpp:func:`esp_sleep_enable_ext0_wakeup` function can be used to enable this wakeup source.
89 ….. warning:: After wake up from sleep, IO pad used for wakeup will be configured as RTC IO. Before…
94 …rigger wakeup using multiple RTC GPIOs. One of the two logic functions can be used to trigger wake…
99 …be powered down in this mode. However, if RTC peripherals are powered down, internal pullup and pu…
105 ….. warning:: After wake up from sleep, IO pad(s) used for wakeup will be configured as RTC IO. Bef…
107 :cpp:func:`esp_sleep_enable_ext1_wakeup` function can be used to enable this wakeup source.
114 …be used to poll sensors, monitor ADC or touch sensor values, and wake up the chip when a specific …
118 …keup mode when RTC peripherals are not forced to be powered on (i.e. ESP_PD_DOMAIN_RTC_PERIPH shou…
120 :cpp:func:`esp_sleep_enable_ulp_wakeup` function can be used to enable this wakeup source.
129 …be individually configured to trigger wakeup on high or low level using :cpp:func:`gpio_wakeup_ena…
133 …in can be individually configured to trigger wakeup on high or low level using :cpp:func:`gpio_wak…
135 :cpp:func:`esp_sleep_enable_gpio_wakeup` function can be used to enable this wakeup source.
138 … check if any GPIO pin to be driven is part of the {IDF_TARGET_SPI_POWER_DOMAIN} power domain. If …
141 …light sleep, the power domain should be configured to remain powered ON. This can be done with :cp…
149 …n be set using :cpp:func:`uart_set_wakeup_threshold` function. Note that the character which trigg…
151 :cpp:func:`esp_sleep_enable_uart_wakeup` function can be used to enable this wakeup source.
161 …2, RTC fast memory will always be kept enabled in deep sleep, so that the deep sleep stub can run …
165 …ing ``RTC_DATA_ATTR`` attribute), RTC slow memory will be kept powered on by default. This can be …
169 …attributes, all of them go to RTC fast memory. It will be kept powered on by default. This can be …
174 …be used to enter light sleep once wakeup sources are configured. It is also possible to go into li…
179 …be used to enter deep sleep once wakeup sources are configured. It is also possible to go into dee…
199 …start`, UART FIFOs will not be flushed. Instead, UART output will be suspended, and remaining char…
204 :cpp:func:`esp_sleep_get_wakeup_cause` function can be used to check which wakeup source has trigge…
218 Previously configured wakeup source can be disabled later using :cpp:func:`esp_sleep_disable_wakeup…