Search found 3 matches
- Mon Jun 07, 2021 7:38 am
- Forum: ESP-IDF
- Topic: esp_wifi_80211_tx to send QoS data frame
- Replies: 7
- Views: 6093
Re: esp_wifi_80211_tx to send QoS data frame
Please reply to my comments, If any solutions are available ?
- Wed May 26, 2021 2:38 pm
- Forum: ESP-IDF
- Topic: esp_wifi_80211_tx to send QoS data frame
- Replies: 7
- Views: 6093
Re: esp_wifi_80211_tx to send QoS data frame
How to send QoS Voice Packets? I have tried all options mentioned in esp documents, but the esp32 device always sends as BE. Are there any solutions? Below Options are tried: const int ip_precedence_vo =6; const int ip_precedence_offset =5; int priority = (ip_precedence_vo << ip_precedence_offset);
- Wed May 26, 2021 2:12 pm
- Forum: ESP-IDF
- Topic: 802.11 QoS Frame Ack Policy
- Replies: 2
- Views: 3600
Re: 802.11 QoS Frame Ack Policy
I am trying to send Voice Packets from ESP using modification which has mentioned in documents, but ESP32 always sends Best Effort packets, Is there any solution? modification tried: const int ip_precedence_vo =6; const int ip_precedence_offset =5; int priority = (ip_precedence_vo << ip_precedence_o...