eg/perf:modify README.

This commit is contained in:
chenyudong
2017-03-23 16:36:32 +08:00
parent 8a163e3db0
commit e261e16981
7 changed files with 154 additions and 51 deletions

View File

@@ -41,10 +41,12 @@ static void udp_conn(void *pvParameters)
int socret;
#if ESP_UDP_MODE_SEVER
vTaskDelay(3000 / portTICK_RATE_MS);
ESP_LOGI(TAG, "creat_udp_sever.");
socret=creat_udp_sever();
//vTaskDelay(1000/portTICK_RATE_MS);
#else /*ESP_UDP_MODE_SEVER*/
vTaskDelay(20000 / portTICK_RATE_MS);
ESP_LOGI(TAG, "creat_udp_client.");
socret = creat_udp_client();
#endif