Search found 2 matches

by Yongxiang
Mon Sep 27, 2021 6:30 am
Forum: ESP-IDF
Topic: 【Question】How to improve wifi send data rate?
Replies: 0
Views: 768

【Question】How to improve wifi send data rate?

while(true){ if(status == WIFI_CONNECTED){ //the raw buffer len must be <= 1500 Bytes and >= 24 Bytes err = esp_wifi_80211_tx(WIFI_IF_AP, ds2ds_pdu, sizeof(ds2ds_pdu), true); ESP_LOGE(TAG, "Send wifi data. (%s)", esp_err_to_name(err)); //sys_delay_ms(1000); } else{ sys_delay_ms(5000); printf("conti...
by Yongxiang
Wed Sep 15, 2021 11:53 am
Forum: ESP-IDF
Topic: How to use esp_wifi_80211_tx to send raw 802.11 data frame?
Replies: 1
Views: 1172

How to use esp_wifi_80211_tx to send raw 802.11 data frame?

  1. I want to use esp_wifi_80211_tx to send raw 802.11 data frame, but I don't know the detailed format of the data transmitted by the function. Where can I see the function definition in details?