Page 1 of 1

How to speedup esp_wifi_start()

Posted: Tue Nov 19, 2024 8:44 pm
by weoiss
Hello,

After the power was lost, I have to restart ESP-NOW as quickly as possible. Basically, my ESP32 S3 Wroom2 needs about 46ms to call app_main. esp_wifi_init() needs about 2.5ms, while esp_wifi_start() needs 30ms.

Is it possible to speed this up? In particular esp_wifi_start()?

I have made the following settings for the basic start: https://docs.espressif.com/projects/esp ... -time.html

Re: How to speedup esp_wifi_start()

Posted: Wed Nov 20, 2024 7:21 am
by aliarifat794
You can set CONFIG_BOOTLOADER_LOG_LEVEL_NONE to minimize logging overhead.

Re: How to speedup esp_wifi_start()

Posted: Wed Nov 20, 2024 7:25 am
by weoiss
Thank you for your reply, your Suggestion is already included in the Link which I use as base