Home
last modified time | relevance | path

Searched refs:connection (Results 1 – 25 of 264) sorted by relevance

1234567891011

/hal_espressif-3.6.0/examples/bluetooth/nimble/throughput_app/blecent_throughput/main/
DKconfig.projbuild10 int "Minimum connection itvl"
13 Set the minimum connection interval in 1.25msec units.
16 int "Maximum connection itvl"
19 Set the maximum connection interval in 1.25msec units.
25 Set the connection latency.
34 int "Minimum connection event length"
37 Set the minimum connection event length in 0.625msec units.
40 int "Maximum connection event length"
43 Set the maximum connection event length in 0.625msec units.
/hal_espressif-3.6.0/components/esptool_py/esptool/docs/en/esptool/
Dadvanced-options.rst25 …ion doesn't have to be used directly. Esptool should be able to detect connection through USB-JTAG…
53 …The optional ``--spi-connection`` argument overrides the SPI flash connection configuration on ESP…
55 …Supply the ``--spi-connection`` argument after the ``esptool.py`` command, ie ``esptool.py flash_i…
60 …If the ``--spi-connection`` argument is not provided, the SPI flash is configured to use :ref:`pin…
62 …. In this case, efuse values are ignored and ``--spi-connection`` will default to ``--spi-connecti…
67 ``--spi-connection SPI`` uses the default SPI pins:
82 …``--spi-connection HSPI`` uses the HSPI peripheral instead of the SPI peripheral for SPI flash com…
95 …``--spi-connection <CLK>,<Q>,<D>,<HD>,<CS>`` allows a custom list of pins to be configured for the…
97 …For example, ``--spi-connection 6,17,8,11,16`` sets an identical configuration to the factory efus…
/hal_espressif-3.6.0/examples/bluetooth/bluedroid/classic_bt/a2dp_source/
DREADME.md41 …of Device (COD). If a candidate target is found, the local device will initiate connection with it.
43 After connection with A2DP sink is established, the example performs the following running loop 1-2…
51 After the local device discovers the target device and initiates connection, there will be logging …
60 If connection is set up successfully, there will be such message:
89 * As a usage limitation, ESP32 A2DP source can support at most one connection with remote A2DP sink…
90 …is set to `2` but not `1` as one is used for a2dp connection and the other is used for avrcp conne…
/hal_espressif-3.6.0/docs/en/api-reference/protocols/
Desp_http_client.rst10 … of the esp_http_client, from opening the connection, sending data, downloading data and closing t…
11 …nt's** task, this is the last function to be called. It will close the connection (if any) and fre…
72 …HTTP client can re-use the same connection for several transfers. If the server does not request t…
134 Some applications need to open the connection and control the reading of the data in an active mann…
137 …* ``esp_http_client_set_*`` or ``esp_http_client_delete_*``: to modify the http connection informa…
138 …* :cpp:func:`esp_http_client_open`: Open the http connection with ``write_len`` parameter, ``write…
140 … and we can call :cpp:func:`esp_http_client_get_status_code` for the HTTP status of the connection.
142 * :cpp:func:`esp_http_client_close`: We should the connection after finish
Desp_tls.rst8 …rios like CA certification validation, SNI, ALPN negotiation, non-blocking connection among others.
11 * :cpp:func:`esp_tls_conn_new`: for opening a new TLS connection.
12 * :cpp:func:`esp_tls_conn_read`: for reading from the connection.
13 * :cpp:func:`esp_tls_conn_write`: for writing into the connection.
14 * :cpp:func:`esp_tls_conn_delete`: for freeing up the connection.
21 Simple HTTPS example that uses ESP-TLS to establish a secure socket connection: :example:`protocols…
44 … selected then client will return a fatal error by default at the time of the TLS connection setup.
54 …*WARNING:Enabling this option comes with a potential risk of establishing a TLS connection with a …
117 …To enable the secure element support, and use it in you project for TLS connection, you will have …
153 …he DS context passed to the esp-tls context should not be freed till the TLS connection is deleted.
[all …]
Desp_websocket_client.rst66 …`websocket_client_config_t`. If no certficate is provided then the TLS connection will to default …
88 …nt to the subprotocol field in the server response and will accept the connection no matter what t…
94 * `WEBSOCKET_EVENT_CONNECTED`: The client has successfully established a connection to the server. …
95 * `WEBSOCKET_EVENT_DISCONNECTED`: The client has aborted the connection due to the transport layer …
96 … size. This event will also be posted for non-payload frames, e.g. pong or connection close frames.
112 A simple WebSocket example that uses esp_websocket_client to establish a websocket connection and s…
/hal_espressif-3.6.0/examples/bluetooth/nimble/throughput_app/
DREADME.md3 …rt to select GATT operation from READ/WRITE/NOTIFY. It can also accept connection parameters at st…
7 …er may choose to configure connection parameters (`MTU`, `connection interval`, `latency`, `superv…
/hal_espressif-3.6.0/examples/bluetooth/bluedroid/ble/ble_compatibility_test/
Dble_compatibility_test_case.md54 … LightBlue® Explorer scan list and tap on the device name ` BLE_COMP_TEST` to establish connection.
62 * If the connection is successful:
153 * Break the connection
154 * Re-establish the connection
161 * Your phone establishes the connection successfully, and the ESP device outputs the log: `(1) ****…
162 * Your phone breaks the connection, and the device outputs the log: `ESP_GATTS_DISCONNECT_EVT`.
167 The connection must be stable throughout the tests.
171 If the existing connection breaks:
180 * Multi-connection Test
181 * Automatic Re-connection Test
/hal_espressif-3.6.0/examples/bluetooth/bluedroid/ble/gattc_multi_connect/tutorial/
DGatt_Client_Multi_Connection_Example_Walkthrough.md1 # GATT Client Multi-connection Example Walkthrough
4connection BLE GATT client example for the ESP32. In this implementation, a single ESP32 working a…
6connection implementation, a GATT client searches for three specific server names and once that it…
16 The multi-connection example’s main source file is [gattc_multi_connect.c](../main/gattc_multi_conn…
27 * connection to devices of interest,
116 …n ``ESP_GAP_BLE_SCAN_STOP_COMPLETE_EVT`` event which is used to open a connection to the first rem…
134connection is opened with the ``esp_ble_gattc_open()`` function which takes the GATT interface, th…
136 … event checks that the connection is opened successfully, if not, the device is ignored and the cl…
149 …If the connection is successful the client saves the connection ID, prints the remote device infor…
196 …The ``esp_ble_gattc_get_characteristic()`` function takes the GATT interface, the connection ID an…
[all …]
/hal_espressif-3.6.0/examples/protocols/asio/asio_chat/main/
DKconfig.projbuild27 string "Client connection address"
33 string "Client connection port"
36 Client's connection port.
/hal_espressif-3.6.0/components/bt/host/bluedroid/stack/btm/
Dbtm_ble_bgconn.c76 background_connection_t *connection = hash_map_get(background_connections, address); in background_connection_add() local
77 if (!connection) { in background_connection_add()
78 connection = osi_calloc(sizeof(background_connection_t)); in background_connection_add()
79 connection->address = *address; in background_connection_add()
80 hash_map_set(background_connections, &(connection->address), connection); in background_connection_add()
104 background_connection_t *connection = hash_entry->data; in background_connections_pending_cb() local
105 const bool connected = BTM_IsAclConnectionUp(connection->address.address, BT_TRANSPORT_LE); in background_connections_pending_cb()
/hal_espressif-3.6.0/examples/protocols/sockets/non_blocking/main/
DKconfig.projbuild35 string "Client connection address or hostname"
41 string "Client connection port"
44 Client connection port.
/hal_espressif-3.6.0/tools/test_apps/protocols/pppos/
DREADME.md6 Testing connection of PPP client (ESP) to PPP server (raspberry pi)
21 * Test IPv6 connection
24 * Test IPv4 connection
/hal_espressif-3.6.0/examples/bluetooth/nimble/throughput_app/blecent_throughput/
DREADME.md16 * `idf.py menuconfig` and configure the parameters as needed (connection related parameters in exam…
18 * After connection link is established between these two devices, user is given a window of `YES_NO…
19connection parameters. Enter `MTU` and other connection parameters as directed on console instruct…
54 I (1163) blecent_throughput: Do you want to configure connection params ?
73 GAP procedure initiated: connection parameter update; conn_handle=0 itvl_min=6 itvl_max=6 latency=0…
/hal_espressif-3.6.0/examples/peripherals/uart/uart_echo_rs485/
DREADME.md6 …ware driver in RS485 half duplex transmission mode and requires external connection of bus drivers.
15 #### RS485 example connection circuit schematic:
44 Note: Some GPIOs can not be used with some chip because they are used for flash chip connection. Pl…
76 When example software does not show the `.` symbol, the issue is most likely related to connection
77 Check the RS485 interface connection with the environment according to schematic above and restart …
/hal_espressif-3.6.0/examples/protocols/
DREADME.md11connection. This function is implemented in [examples/common_components/protocol_examples/common/c…
13 …, this helper function needs to be replaced with full Wi-Fi / Ethernet connection handling code. S…
25 By default, `example_connect()` function waits until Wi-Fi or Ethernet connection is established, a…
/hal_espressif-3.6.0/examples/bluetooth/bluedroid/ble/gatt_client/tutorial/
DGatt_Client_Example_Walkthrough.md32 * `esp_gap_ble_api.h`: implements the GAP configuration, such as advertising and connection paramet…
406connection to the remote device using the `esp_ble_gattc_open()` function. This function takes as …
410 … data units (PDUs). This is done after the opening of a connection. After opening the connection, …
428 The connection ID and the address of the remote device (server) are stored in the Application Profi…
440connection is 23 bytes. A client can change the size of MTU, using `esp_ble_gattc_send_mtu_req()` …
450 The connection opening also triggers an `ESP_GATTC_OPEN_EVT`, which is used to check that the openi…
474 …meters of the function are the GATT interface, the Application Profile connection ID and the UUID …
620 … `esp_ble_gattc_get_attr_count()` function are the GATT interface, the connection ID, the attribut…
722 …istics of servers of interest. When the server of interest is found, a connection is made with tha…
/hal_espressif-3.6.0/examples/protocols/modbus/serial/mb_master/
DREADME.md28 Simplified Modbus connection schematic for example test:
37 Modbus multi slave segment connection schematic:
64 …he slave addresses for each board have to be configured as defined in "connection schematic" above.
65 One ESP32 WROVER-KIT board flashed with modbus_master example. All the boards require connection of…
68 RS485 example circuit schematic for connection of master and slave devices into segment:
107 …an not be used with ESP32-S2 chip because they are used for flash chip connection. Please refer to…
119 …2 WROVER KIT board and connect boards together as showed on the Modbus connection schematic above.…
/hal_espressif-3.6.0/examples/bluetooth/bluedroid/classic_bt/hfp_ag/
DREADME.md89 | 2. Setup a service level connection |
98 You can type `con` to establish a service level connection with HF Unit device and log prints such …
103 I (2221) BT_APP_HF: --connection state CONNECTED, peer feats 0x0, chld_feats 0x0
107 I (2331) BT_APP_HF: --connection state SLC_CONNECTED, peer feats 0xff, chld_feats 0x4010
110 **Note: Only after Hands-free Profile(HFP) service is initialized and a service level connection ex…
116 W (77321) BT_RFCOMM: port_rfc_closed RFCOMM connection in state 2 closed: Closed (res: 19)
118 I (77321) BT_APP_HF: --connection state DISCONNECTED, peer feats 0x0, chld_feats 0x0
125 You can type `cona` to establish the audio connection between HF Unit and AG device. Also, you can …
140 …termine which codec to use by exchanging features during service level connection. The choice of c…
279 - If you want to `hf con;` to establish a service level connection with a specific HF Unit, you sho…
[all …]
/hal_espressif-3.6.0/tools/test_apps/protocols/pppos/main/
DKconfig.projbuild8 where the TCP server is started to test the connection
22 once the PPP connection established
/hal_espressif-3.6.0/examples/bluetooth/bluedroid/classic_bt/hfp_hf/
DREADME.md91 | 2. Setup a service level connection |
100 You can type `con` to establish a service level connection with AG device and log prints such as:
106 I (79642) BT_HF: --connection state connected, peer feats 0x0, chld_feats 0x0
122 I (79862) BT_HF: --connection state slc_connected, peer feats 0x16e, chld_feats 0x0
127 **Note: Only after Hands-Free Profile(HFP) service is initialized and a service level connection ex…
133 W (93702) BT_RFCOMM: port_rfc_closed RFCOMM connection in state 3 closed: Closed (res: 19)
136 I (93712) BT_HF: --connection state disconnected, peer feats 0x0, chld_feats 0x0
141 You can type `cona` to establish the audio connection between HF Unit and AG device. Log prints suc…
172 …termine which codec to use by exchanging features during service level connection. The choice of c…
325 - If you want to use `con` to establish a service level connection with specific AG device, you sho…
[all …]
/hal_espressif-3.6.0/tools/test_apps/protocols/openssl/
DREADME.md11 test-type: "conn" connection test (host, port, test-case)
14 …e executed on any ESP32 board, the only required interface is WiFi and connection to a local netwo…
/hal_espressif-3.6.0/examples/protocols/https_x509_bundle/
DREADME.md4 establish a simple HTTPS connection over a secure connection. The path of the certificates are spec…
10 - The application loops through the given URLs, establishing a secure TLS connection to all of them…
/hal_espressif-3.6.0/docs/en/api-guides/
Dblufi.rst19 …rocedure, including broadcast, connection, service discovery, negotiation of the shared key, data …
25 3. After the GATT connection is successfully established, the mobile phone will send a data frame f…
37 9. The mobile phone sends a control frame of Wi-Fi connection request to {IDF_TARGET_NAME}. When re…
39 …_NAME} will send a control frame of Wi-Fi connection status report to the mobile phone,to report t…
63 Phone -> {IDF_TARGET_NAME} [label="Create GATT connection"];
211 …a follow-up frame of Wi-Fi connection state report to the mobile phone with the information of the…
271 - Set the maximum connection number for SoftAP mode.
273 …- data[0] represents the value of the connection number, ranging from 1 to 4. When the transmissio…
324 …data[1]:the connection state of the STA device, 0x0 indicates a connection state, and others repre…
326 … data[2]:the connection state of the SoftAP, that is, how many STA devices have been connected.
/hal_espressif-3.6.0/examples/protocols/coap_client/main/
DKconfig.projbuild11 string "Preshared Key (PSK) to used in the connection to the CoAP server"
16 used at both ends of the CoAP connection, and the CoaP client must request

1234567891011