Is it possible to force everything to go down to HT20, so less 2.4GHz channels are used?
Thanks
Code: Select all
esp_wifi_set_mode(WIFI_MODE_APSTA);
esp_wifi_set_bandwidth(ESP_IF_WIFI_AP, WIFI_BW_HT20);
esp_wifi_set_mode(WIFI_MODE_STA);
esp_wifi_set_bandwidth(ESP_IF_WIFI_AP, WIFI_BW_HT20);Code: Select all
ESP_ERROR_CHECK(esp_wifi_set_mode(WIFI_MODE_APSTA));
ESP_ERROR_CHECK(esp_wifi_set_bandwidth(ESP_IF_WIFI_STA, WIFI_BW_HT20));
ESP_ERROR_CHECK(esp_wifi_set_bandwidth(ESP_IF_WIFI_AP, WIFI_BW_HT20));
Users browsing this forum: No registered users and 2 guests