Home
last modified time | relevance | path

Searched refs:send_count (Results 1 – 4 of 4) sorted by relevance

/hal_espressif-3.6.0/examples/mesh/internal_communication/main/
Dmesh_main.c67 int send_count = 0; in esp_mesh_p2p_tx_main() local
88 if (send_count && !(send_count % 100)) { in esp_mesh_p2p_tx_main()
90 esp_mesh_get_routing_table_size(), send_count); in esp_mesh_p2p_tx_main()
92 send_count++; in esp_mesh_p2p_tx_main()
93 tx_buf[25] = (send_count >> 24) & 0xff; in esp_mesh_p2p_tx_main()
94 tx_buf[24] = (send_count >> 16) & 0xff; in esp_mesh_p2p_tx_main()
95 tx_buf[23] = (send_count >> 8) & 0xff; in esp_mesh_p2p_tx_main()
96 tx_buf[22] = (send_count >> 0) & 0xff; in esp_mesh_p2p_tx_main()
97 if (send_count % 2) { in esp_mesh_p2p_tx_main()
108 send_count, mesh_layer, MAC2STR(mesh_parent_addr.addr), in esp_mesh_p2p_tx_main()
[all …]
/hal_espressif-3.6.0/examples/protocols/sockets/udp_multicast/main/
Dudp_multicast_example_main.c397 static int send_count; in mcast_example_task() local
401 int len = snprintf(sendbuf, sizeof(sendbuf), sendfmt, send_count++); in mcast_example_task()
404 send_count = 0; in mcast_example_task()
/hal_espressif-3.6.0/components/lwip/include/apps/
Desp_ping.h37 uint32_t send_count; member
/hal_espressif-3.6.0/components/lwip/apps/ping/
Desp_ping.c147 ping_option_info->ping_res.send_count ++; in esp_ping_result()