Search found 132 matches
- Tue Jun 11, 2019 11:15 am
- Forum: ESP-IDF
- Topic: NTP server giving time after long time
- Replies: 18
- Views: 24669
Re: NTP server giving time after long time
Hi, We have tried same way at our end and didn't face any issue till now. I just want to clarify that are you sending NTP request after getting proper IP and external connectivity into device itself? Yes, I am sending NTP request after connecting the device to Network. Then it should be worked? Wou...
- Tue Jun 11, 2019 11:01 am
- Forum: ESP-IDF
- Topic: Setting wifi configuration
- Replies: 20
- Views: 29164
Re: Setting wifi configuration
Hi, We are storing WiFi configurations into flash memory as per our requirements. So, what will be the lifetime of flash operation for single device? Because we are also in same phase like many times WiFi configurations will be changed as per our project requirements. the limit is 100000 write cycl...
- Tue Jun 11, 2019 10:59 am
- Forum: ESP-IDF
- Topic: NTP server giving time after long time
- Replies: 18
- Views: 24669
Re: NTP server giving time after long time
Please send me logs in details because we are using that way and didn't face any issue yet. There is no logs generated. it only tries to reach NTP server continuosly. Hi, We have tried same way at our end and didn't face any issue till now. I just want to clarify that are you sending NTP request af...
- Tue Jun 11, 2019 10:50 am
- Forum: ESP-IDF
- Topic: guru meditation error
- Replies: 18
- Views: 25872
Re: guru meditation error
It works,fivdiAtESP32 wrote: ↑Fri Dec 28, 2018 8:17 amDid you make the change that was suggested here to your code? I'm fairly sure that if this change is made there will be no "guru meditation errors".
thanks.
- Tue Jun 11, 2019 10:45 am
- Forum: ESP-IDF
- Topic: Setting wifi configuration
- Replies: 20
- Views: 29164
Re: Setting wifi configuration
Since by default Wi-Fi configuration is stored into flash, you may want to call esp_wifi_set_storage function with WIFI_STORAGE_RAM argument. In this case configuration will not be saved in flash, and flash lifetime will not be affected. Hi, We are storing WiFi configurations into flash memory as p...
- Tue Jun 11, 2019 10:41 am
- Forum: ESP-IDF
- Topic: Ethernet initialization error handling
- Replies: 8
- Views: 13373
Re: Ethernet initialization error handling
Ok.Oromis wrote: ↑Fri Jan 11, 2019 9:41 amTrue, you also need to go to the header file containing(emac_dev.h) and change its return type fromCode: Select all
emac_reset()
toCode: Select all
void emac_reset(void);
.Code: Select all
bool emac_reset(void);
Thanks.
- Tue Jun 11, 2019 10:38 am
- Forum: ESP-IDF
- Topic: NTP server giving time after long time
- Replies: 18
- Views: 24669
Re: NTP server giving time after long time
Hi, Please find attached code for reference purpose for SNTP Init Process. void initialize_sntp (void) { sntp_setoperatingmode(SNTP_OPMODE_POLL); sntp_setservername(0, "pool.ntp.org"); sntp_setservername(1, "europe.pool.ntp.org"); sntp_setservername(2, "uk.pool.ntp.org "); sntp_setservername(3, "us...
- Tue Jun 11, 2019 10:30 am
- Forum: ESP-IDF
- Topic: Wear Levelling library sector size
- Replies: 3
- Views: 6861
Re: Wear Levelling library sector size
Hi all, I am comfused about choosing the sector size in wear levelling example. I want to use near about 250kb of flash for file system so I have to use sector size 512kb because 4096kb sector size rquires minimum 512kb of flash for file system. but I actually very confused that what is the differe...
- Fri Jun 07, 2019 11:54 am
- Forum: ESP-IDF
- Topic: esp_http_client_perform blocks the task
- Replies: 2
- Views: 5265
- Fri Jun 07, 2019 11:32 am
- Forum: General Discussion
- Topic: How to prevent http request from blocking task for too long?
- Replies: 5
- Views: 10286
Re: How to prevent http request from blocking task for too long?
The issue was never resolved. I had to try HTTP posting to the server, and if it failed twice, then I just deemed the server dead for the remainder of the application's lifetime. Not ideal at all, but was good enough for my purpose. I hope it gets resolved! I am using watchdog. if request is blocke...