Home
last modified time | relevance | path

Searched refs:blocking (Results 1 – 25 of 39) sorted by relevance

12

/hal_espressif-3.4.0/examples/peripherals/uart/uart_select/
DREADME.md7 character from UART using `select()` until a blocking read without delay or a
8 successful non-blocking read is possible.
14 This example can be used to develop applications for non-blocking read and write from/to various so…
59 blocking read (without delay). The following output shows the result of pushing `a` on the keyboard:
/hal_espressif-3.4.0/tools/esp_prov/prov/
Dwifi_scan.py30 def scan_start_request(security_ctx, blocking=True, passive=False, group_channels=5, period_ms=120): argument
34 cmd.cmd_scan_start.blocking = blocking
/hal_espressif-3.4.0/examples/protocols/sockets/non_blocking/
DREADME.md2 # TCP non-blocking client and server examples
23 The server example creates a non-blocking TCP socket with the specified port number and polls till
44 * Set `EXAMPLE_TCP_SERVER` to use the example as a non-blocking TCP server
48 * Set `EXAMPLE_TCP_CLIENT` to use the example as a non-blocking TCP client
/hal_espressif-3.4.0/components/vfs/
Dvfs_cdcacm.c279 bool blocking = (arg & O_NONBLOCK) == 0; in cdcacm_fcntl() local
281 if (blocking && !s_blocking) { in cdcacm_fcntl()
283 } else if (!blocking && s_blocking) { in cdcacm_fcntl()
/hal_espressif-3.4.0/examples/peripherals/sdio/slave/main/
Dapp_main.c213 const TickType_t non_blocking = 0, blocking = portMAX_DELAY; in app_main() local
226 ret = sdio_slave_recv_packet(&handle, blocking); in app_main()
/hal_espressif-3.4.0/components/wifi_provisioning/src/
Dhandlers.c157 static esp_err_t scan_start(bool blocking, bool passive, in scan_start() argument
161 return wifi_prov_mgr_wifi_scan_start(blocking, passive, group_channels, period_ms); in scan_start()
Dwifi_provisioning_priv.h51 esp_err_t wifi_prov_mgr_wifi_scan_start(bool blocking, bool passive,
Dmanager.c533 static bool wifi_prov_mgr_stop_service(bool blocking) in wifi_prov_mgr_stop_service() argument
535 if (blocking) { in wifi_prov_mgr_stop_service()
604 if (blocking) { in wifi_prov_mgr_stop_service()
896 esp_err_t wifi_prov_mgr_wifi_scan_start(bool blocking, bool passive, in wifi_prov_mgr_wifi_scan_start() argument
958 if (!blocking) { in wifi_prov_mgr_wifi_scan_start()
Dwifi_scan.c76 resp->status = (h->scan_start(req->cmd_scan_start->blocking, in cmd_scan_start_handler()
/hal_espressif-3.4.0/docs/en/api-reference/storage/
Dvfs.rst78 …the given driver. This should be a non-blocking call which means the function should immediately r…
81 …:cpp:func:`socket_select` described later on this page. This is a blocking call which means that i…
209 …ut into UART FIFO, and reads are non-blocking, returning only the data present in the FIFO. Due to…
211blocking read and write functions instead. This can be done using a call to the ``esp_vfs_dev_uart…
/hal_espressif-3.4.0/components/esp_http_server/src/
Dhttpd_ws.c32 bool blocking; member
507 if (trans->blocking) { in httpd_ws_send_cb()
529 transfer->blocking = true; in httpd_ws_send_data()
/hal_espressif-3.4.0/components/wifi_provisioning/include/wifi_provisioning/
Dwifi_scan.h111 esp_err_t (*scan_start)(bool blocking, bool passive,
/hal_espressif-3.4.0/components/wifi_provisioning/proto/
Dwifi_scan.proto7 bool blocking = 1; field
/hal_espressif-3.4.0/components/openssl/
DKconfig74 …Enable assert debugging and blocking, it will check, show debugging message and block by "while (1…
/hal_espressif-3.4.0/components/esp_system/
DKconfig246 … non-blocking mode without using REPL. If you want to output in blocking mode with REPL or
256 The output currently only supports non-blocking mode without using the console.
257 … If you want to output in blocking mode with REPL or input through USB_SERIAL_JTAG port,
/hal_espressif-3.4.0/docs/en/api-guides/esp-ble-mesh/
Dble-mesh-feature-list.rst30 * No blocking between client model and server model
/hal_espressif-3.4.0/components/wifi_provisioning/proto-c/
Dwifi_scan.pb-c.h47 protobuf_c_boolean blocking; member
/hal_espressif-3.4.0/tools/esp_prov/
Desp_prov.py221 message = prov.scan_start_request(sec, blocking=True, group_channels=group_channels)
/hal_espressif-3.4.0/docs/en/api-reference/system/
Drandom.rst61 The ``flags`` argument is ignored, this function is always non-blocking but the strength of any ran…
/hal_espressif-3.4.0/docs/en/api-guides/jtag-debugging/
Dusing-debugger.rst234 …g actions on a single command line allowing convenient setup of blocking and non-blocking actions …
/hal_espressif-3.4.0/docs/en/api-reference/protocols/
Desp_http_server.rst11 …provided handle and frees up any associated memory/resources. This is a blocking function that fir…
/hal_espressif-3.4.0/components/usb/
Dmaintainers.md114 - Some static functions may be blocking. Those functions will have a note in their descriptions.
133 …mmand must block until all pipes to finish their current transfers. The blocking and unblocking is…
/hal_espressif-3.4.0/docs/en/api-guides/
Dapp_trace.rst197 …s) for available trace data. If greater than 0 then command runs in non-blocking mode. By default …
221 …The tracing data will be retrieved and saved in non-blocking mode. This process will stop automati…
227 2. Retrieve tracing data indefinitely in non-blocking mode.
376 …s) for available trace data. If greater then 0 then command runs in non-blocking mode. By default …
396 …The tracing data will be retrieved and saved in non-blocking mode. To stop data this process enter…
/hal_espressif-3.4.0/docs/en/api-reference/peripherals/
Dsdio_slave.rst186 …ta by calling ``sdio_slave_recv`` or ``sdio_slave_recv_packet``. If non-blocking call is needed, s…
222 …If non-blocking call is needed, set ``wait=0``. If the ``wait`` is not ``portMAX_DELAY`` (wait unt…
Dtimer.rst94 …lback handler will be invoked in ISR context, so user shouldn't put any blocking API in the callba…

12