Search found 132 matches

by burkulesomesh43
Mon Jun 03, 2019 1:10 pm
Forum: General Discussion
Topic: Esp not connecting to wifi after some days
Replies: 14
Views: 22005

Re: Esp not connecting to wifi after some days

So this wifi issue is idf related issue. I am using esp-idf v3.2. is it fixed in it?
by burkulesomesh43
Mon Jun 03, 2019 5:42 am
Forum: General Discussion
Topic: Esp not connecting to wifi after some days
Replies: 14
Views: 22005

Re: Esp not connecting to wifi after some days

Hello everyone, I am getting wifi disconnect issue from very long time. As I kept my ESP32 live for long time, it disconnects and not getting connected to the configured SSID and PASSWORD again till switch it OFF and ON again. I am using esp-idf v3.1.3. Please help me to resolve this issue. Thanks ...
by burkulesomesh43
Thu May 30, 2019 6:28 am
Forum: General Discussion
Topic: Esp not connecting to wifi after some days
Replies: 14
Views: 22005

Re: Esp not connecting to wifi after some days

I disbled this setting in menuconfig. but still getting same issue.
by burkulesomesh43
Mon May 06, 2019 11:29 am
Forum: General Discussion
Topic: Esp not connecting to wifi after some days
Replies: 14
Views: 22005

Re: Esp not connecting to wifi after some days

WiFive wrote:
Mon May 06, 2019 11:08 am
Enabled or disabled?
Sorry, It is enabled. I am going to disable it.
But really does it affect??
by burkulesomesh43
Mon May 06, 2019 10:58 am
Forum: General Discussion
Topic: Esp not connecting to wifi after some days
Replies: 14
Views: 22005

Re: Esp not connecting to wifi after some days

It is already enabled in my configuration by default.( CONFIG_LWIP_DHCP_DOES_ARP_CHECK ).
by burkulesomesh43
Mon May 06, 2019 7:35 am
Forum: General Discussion
Topic: Esp not connecting to wifi after some days
Replies: 14
Views: 22005

Re: Esp not connecting to wifi after some days

Unfortunately it is hard to diagnose issue like this, you need logs from the time of disconnect. You can try with different esp-idf versions and different APs, see how common the problem is. You may even need WiFi sniffer captures to solve it. As I saw logs w.r.t same issue, ESP32 gets connected to...
by burkulesomesh43
Sun May 05, 2019 12:27 pm
Forum: General Discussion
Topic: Esp not connecting to wifi after some days
Replies: 14
Views: 22005

Re: Esp not connecting to wifi after some days

reivax2 wrote:
Sat May 04, 2019 6:14 pm
WiFi.begin(ssid, password);
int i=0;
while (WiFi.status() != WL_CONNECTED && i++<=10)
{
delay(1000);
i=i+1;
if (i>11)
{Serial.print("I don´t connect......");
ESP.restart();
}
Sorry but I am not using arduino. and also its not the proper solution to restart esp.
by burkulesomesh43
Fri May 03, 2019 1:26 pm
Forum: General Discussion
Topic: Esp not connecting to wifi after some days
Replies: 14
Views: 22005

Esp not connecting to wifi after some days

Hello everyone, I am getting wifi disconnect issue from very long time. As I kept my ESP32 live for long time, it disconnects and not getting connected to the configured SSID and PASSWORD again till switch it OFF and ON again. I am using esp-idf v3.1.3. Please help me to resolve this issue. Thanks i...
by burkulesomesh43
Wed Mar 20, 2019 8:01 am
Forum: ESP-IDF
Topic: Uart reading issue
Replies: 8
Views: 13497

Re: Uart reading issue

Hi, A day ago there was an update in the IDF to fix this issue. I haven't got around to testing it yet. https://github.com/espressif/esp-idf/commit/f482e9e54ce83e249e46f5ee082f6ffb61431339 I am using esp idf v3.1.3 in which fixed this issue. but still getting same problem. please help me out for so...
by burkulesomesh43
Fri Feb 22, 2019 8:00 am
Forum: ESP-IDF
Topic: esp_http_client_perform blocks the task
Replies: 2
Views: 4727

esp_http_client_perform blocks the task

Hello everyone, I am using esp_http_client librairy to post data to server. please refer following link, I am using same code given in link. https://www.esp32.com/viewtopic.php?f=2&t=8102#p34049 I am stucked in this issue from very long time. not getting any solution or no response from forum for th...