/hal_espressif-3.6.0/components/bt/esp_ble_mesh/mesh_core/include/ |
D | mesh_access.h | 314 #define BLE_MESH_TRANSMIT_COUNT(transmit) (((transmit) & (uint8_t)BIT_MASK(3))) argument 324 #define BLE_MESH_TRANSMIT_INT(transmit) ((((transmit) >> 3) + 1) * 10) argument 347 #define BLE_MESH_PUB_TRANSMIT_COUNT(transmit) BLE_MESH_TRANSMIT_COUNT(transmit) argument 357 #define BLE_MESH_PUB_TRANSMIT_INT(transmit) ((((transmit) >> 3) + 1) * 50) argument
|
D | cfg_srv.h | 93 uint8_t transmit; member 104 uint8_t transmit; member 211 uint8_t transmit; member
|
D | cfg_cli.h | 78 uint8_t transmit; member 178 uint8_t transmit; member 308 int bt_mesh_cfg_net_transmit_set(bt_mesh_client_common_param_t *param, uint8_t transmit);
|
/hal_espressif-3.6.0/components/esptool_py/esptool/docs/en/esptool/ |
D | serial-connection.rst | 15 | RX | TX (transmit) | 20 Note that TX (transmit) on the ESP chip is connected to RX (receive) on the serial port connection,…
|
/hal_espressif-3.6.0/components/driver/ |
D | Kconfig | 51 ``transmit`` functions into the IRAM to avoid possible cache miss. 75 ``transmit`` functions into the IRAM to avoid possible cache miss. 121 …On the ESP32, when a transmit interrupt occurs, and interrupt register is read on the same APB clo… 122 …cycle, the transmit interrupt could be lost. Enabling this option will add a workaround that check… 123 transmit buffer status bit to recover any lost transmit interrupt.
|
/hal_espressif-3.6.0/components/bt/esp_ble_mesh/api/ |
D | esp_ble_mesh_defs.h | 140 #define ESP_BLE_MESH_GET_TRANSMIT_COUNT(transmit) (((transmit) & (uint8_t)BIT_MASK(3))) argument 150 #define ESP_BLE_MESH_GET_TRANSMIT_INTERVAL(transmit) ((((transmit) >> 3) + 1) * 10) argument 173 #define ESP_BLE_MESH_GET_PUBLISH_TRANSMIT_COUNT(transmit) ESP_BLE_MESH_GET_TRANSMIT_COUNT(transmi… argument 183 #define ESP_BLE_MESH_GET_PUBLISH_TRANSMIT_INTERVAL(transmit) ((((transmit) >> 3) + 1) * 50) argument
|
/hal_espressif-3.6.0/docs/en/api-reference/peripherals/ |
D | rmt.rst | 96 …nels numbered from zero to seven. Each channel is able to independently transmit or receive data. … 100 …nels numbered from zero to three. Each channel is able to independently transmit or receive data. … 113 …ype:`rmt_config_t` structure. Some of the parameters are common to both transmit or receive mode, … 120 * The RMT **operation mode** - whether this channel is used to transmit or receive data, selected b… 121 * What is the **pin number** to transmit or receive RMT signals, selected by setting **gpio_num**. 140 When configuring channel in transmit mode, set **tx_config** and the following members of :cpp:type… 181 Before being able to transmit some RMT pulses, we need to define the pulse pattern. The minimum pat… 206 …wait_tx_done`. This function does not limit the number of data items to transmit. It is using an i… 266 …* Enable or disable loop count feature to automatically transmit items for N iterations, then trig…
|
/hal_espressif-3.6.0/components/esp_netif/loopback/ |
D | esp_netif_loopback.c | 155 if (esp_netif_driver_config->transmit) { in esp_netif_init_configuration() 156 esp_netif->driver_transmit = esp_netif_driver_config->transmit; in esp_netif_init_configuration() 242 esp_netif->driver_transmit = driver_config->transmit; in esp_netif_set_driver_config()
|
/hal_espressif-3.6.0/components/esp_netif/ |
D | README.md | 42 3) IO driver specific options (transmit, tx_free functions, IO driver handle) 52 * glue IO layer: adapt the input/output functions to use esp-netif transmit/input/free_rx
|
D | Kconfig | 29 Dummy implementation of esp-netif functionality which connects driver transmit
|
/hal_espressif-3.6.0/examples/peripherals/twai/twai_alert_and_recovery/ |
D | README.md | 87 2. Create a transmit task to handle message transmission, and a control task to handle alerts. 89 4. The transmit repeatedly transmits single shot messages (i.e., message won't be retried if an err… 90 5. When a message is being transmitted, the transmit task will purposely invert the TX pin to trigg…
|
/hal_espressif-3.6.0/examples/bluetooth/bluedroid/classic_bt/a2dp_source/ |
D | README.md | 9 …) APIs to transmit audio stream. Application can take advantage of this example to implement porta…
|
/hal_espressif-3.6.0/examples/peripherals/twai/twai_self_test/ |
D | README.md | 5 The TWAI Self Test Example demonstrates how a node can transmit TWAI messages to itself using the T… 82 3. Simultaneously transmit and receive multiple messages using the self reception request.
|
/hal_espressif-3.6.0/components/bt/esp_ble_mesh/mesh_core/ |
D | net.c | 1204 uint8_t nid = 0U, transmit = 0U; in bt_mesh_net_relay() local 1236 transmit = bt_mesh_relay_retransmit_get(); in bt_mesh_net_relay() 1238 transmit = bt_mesh_net_transmit_get(); in bt_mesh_net_relay() 1248 buf = bt_mesh_adv_create(BLE_MESH_ADV_DATA, transmit, K_NO_WAIT); in bt_mesh_net_relay() 1255 transmit = BLE_MESH_TRANSMIT(0, 20); in bt_mesh_net_relay() 1257 buf = bt_mesh_relay_adv_create(BLE_MESH_ADV_DATA, transmit, K_NO_WAIT); in bt_mesh_net_relay()
|
D | cfg_cli.c | 405 status.transmit = net_buf_simple_pull_u8(buf); in mod_pub_status() 942 net_buf_simple_add_u8(&msg, pub->transmit); in bt_mesh_cfg_mod_pub_set() 1023 net_buf_simple_add_u8(&msg, pub->transmit); in bt_mesh_cfg_mod_pub_va_set() 1241 int bt_mesh_cfg_net_transmit_set(bt_mesh_client_common_param_t *param, uint8_t transmit) in bt_mesh_cfg_net_transmit_set() argument 1243 return send_msg_with_u8(param, OP_NET_TRANSMIT_SET, transmit); in bt_mesh_cfg_net_transmit_set()
|
/hal_espressif-3.6.0/examples/network/network_tests/main/ |
D | stdinout.c | 34 .transmit = netsuite_io_transmit,
|
/hal_espressif-3.6.0/examples/openthread/ot_cli/ |
D | README.md | 166 -c <addr> : client mode, only transmit 168 -t <time> : time in seconds to transmit for (default 10 secs)
|
/hal_espressif-3.6.0/components/esp_phy/ |
D | Kconfig | 83 Set maximum transmit power for WiFi radio. Actual transmit power for high
|
/hal_espressif-3.6.0/components/esp_netif/include/ |
D | esp_netif_types.h | 198 esp_err_t (*transmit)(void *h, void *buffer, size_t len); member
|
/hal_espressif-3.6.0/components/esp_eth/ |
D | Kconfig | 100 Number of DMA transmit buffers. Each buffer's size is ETH_DMA_BUFFER_SIZE. 170 Number of DMA transmit buffers, each buffer is 1600 bytes.
|
/hal_espressif-3.6.0/tools/catch/ |
D | LICENSE.txt | 6 execute, and transmit the Software, and to prepare derivative works of the
|
/hal_espressif-3.6.0/examples/bluetooth/esp_ble_mesh/ble_mesh_console/ |
D | ble_mesh_commands_README.md | 74 * `-t`: `<transmit>:relay transmit`
|
/hal_espressif-3.6.0/examples/mesh/ip_internal_network/main/ |
D | mesh_netif.c | 203 .transmit = mesh_netif_transmit_from_root_ap, in mesh_driver_start_root_ap() 217 .transmit = mesh_netif_transmit_from_node_sta, in mesh_driver_start_node_sta()
|
/hal_espressif-3.6.0/components/esp_eth/include/ |
D | esp_eth_mac.h | 111 esp_err_t (*transmit)(esp_eth_mac_t *mac, uint8_t *buf, uint32_t length); member
|
/hal_espressif-3.6.0/components/esp_wifi/src/ |
D | wifi_netif.c | 76 .transmit = wifi_transmit, in wifi_driver_start()
|