Search found 3 matches

by jc9999
Wed Oct 20, 2021 11:53 am
Forum: ESP-IDF
Topic: Inconsistent esp-now packet send duration
Replies: 2
Views: 4671

Re: Inconsistent esp-now packet send duration

Hi,
I am in the process if removing the NRF24L01(pa01) from my design to switch to espnow broadcast, and I am having the same issue as you.
indeed, NRF24L01 has a really low latency.
Did you find a solution or you end up with the issue ?

Rgds,
JC
by jc9999
Wed Nov 20, 2019 7:37 pm
Forum: ESP-IDF
Topic: ESP-NOW & WIFI - Performance and Channel
Replies: 6
Views: 15830

Re: ESP-NOW & WIFI - Performance and Channel

Answering myself with what I found on google and tested.
adding this

Code: Select all

esp_wifi_set_ps(WIFI_PS_NONE);
solved my poor transfer quality in STA mode connected to my wifi.

Switching to AP_STA also works.
by jc9999
Wed Nov 20, 2019 9:18 am
Forum: ESP-IDF
Topic: ESP-NOW & WIFI - Performance and Channel
Replies: 6
Views: 15830

Re: ESP-NOW & WIFI - Performance and Channel

Hi, I have a very similar problem. Situation: - 2 x esp32 - same channel (6) - payload size: 15 bytes - broadcasting. - 1 msg every 20 millisec. - mode STA While not connected to any Wifi network ( wifi.disconnect() ) ESPNow is working very well, less than 0.1% of packet are lost. Once one of the es...